html,
body {
    height: 100%;
}

/* Keep outline buttons readable on white/light backgrounds site-wide. */
.btn.btn-outline-dark,
.btn.btn-sm.btn-outline-dark {
    color: #1f2430;
    border-color: #1f2430;
    background-color: transparent;
}

.btn.btn-outline-dark:hover,
.btn.btn-outline-dark:focus,
.btn.btn-sm.btn-outline-dark:hover,
.btn.btn-sm.btn-outline-dark:focus {
    color: #ffffff;
    background-color: #1f2430;
    border-color: #1f2430;
}

/* Keep navbar transparent action buttons readable on home and light sections. */
header nav.navbar .btn.btn-transparent-white-light {
    color: #1f2430;
    border-color: rgba(31, 36, 48, 0.68);
    background-color: rgba(255, 255, 255, 0.7);
}

header nav.navbar .btn.btn-transparent-white-light:hover,
header nav.navbar .btn.btn-transparent-white-light:focus {
    color: #1f2430;
    border-color: #1f2430;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(10, 18, 36, 0.15);
    transform: translateY(-1px);
}

/* ── Event Detail Page ───────────────────────────────────────── */
.event-detail-hero {
    margin-bottom: 2rem;
}

.event-detail-titlerow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    transition: color .15s;
}
.event-detail-back:hover { color: #0F172A; }

.event-detail-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 12px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(15,23,42,.06);
    border: 1px solid #f0ece8;
}

/* Primary CTA — brand gradient */
.ed-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(50deg, #B67C6A 0%, #D4A574 100%);
    color: #fff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13.5px;
    text-decoration: none;
    transition: opacity .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 3px 12px rgba(182,124,106,.30);
    white-space: nowrap;
}
.ed-btn-primary:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(182,124,106,.38);
    color: #fff !important;
}

/* Vertical divider */
.ed-actions-divider {
    width: 1px;
    height: 26px;
    background: #e8e2dc;
    border-radius: 1px;
    flex-shrink: 0;
}

/* Secondary action buttons */
.ed-btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f7f4f1;
    color: #374151 !important;
    border: 1.5px solid #e6dfd8;
    padding: 8px 15px;
    border-radius: 9px;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: background .15s, border-color .15s, transform .15s;
    white-space: nowrap;
}
.ed-btn-sec:hover {
    background: #ede5df;
    border-color: #c9a898;
    color: #0F172A !important;
    transform: translateY(-1px);
}

/* Addon buttons — warm gold */
.ed-btn-addon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(50deg, #c89a5a 0%, #D4A574 100%);
    color: #fff !important;
    border: none;
    padding: 8px 15px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(212,165,116,.28);
}
.ed-btn-addon:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: #fff !important;
}

@media (max-width: 767px) {
    .event-detail-actions { gap: 7px; padding: 10px 12px; }
    .ed-actions-divider { display: none; }
}

.event-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.event-stat-card {
    border: 1px solid #e6e8ee;
    border-radius: 0.8rem;
    padding: 0.7rem 0.75rem;
    background: #ffffff;
}

.event-stat-label {
    color: #6f7785;
    font-size: 0.76rem;
    margin-bottom: 0.2rem;
}

.event-stat-value {
    color: #1f2430;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.event-preview-frame {
    width: 100%;
    min-height: 580px;
    border: 1px solid #dfe3eb;
    border-radius: 0.8rem;
    background: #ffffff;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 92% 10%, #f0ddd8 0%, transparent 30%),
        radial-gradient(circle at 12% 16%, #f5ede9 0%, transparent 24%),
        linear-gradient(180deg, #faf8f6 0%, #ffffff 380px);
}

main {
    flex: 1 0 auto;
}

.navbar-brand {
    letter-spacing: 0.2px;
}

/* Give the navbar itself more vertical presence on sticky inner pages. */
header nav.navbar.sticky-header:not(.ap-hero-nav) {
    min-height: 88px;
}

header.sticky nav.navbar.sticky-header:not(.ap-hero-nav) {
    min-height: 82px;
}

/* Global mobile navbar normalization across all pages. */
@media (max-width: 991.98px) {
    header nav.navbar .navbar-brand img:not(.mobile-logo) {
        display: none !important;
    }

    header nav.navbar .navbar-brand .mobile-logo {
        display: block !important;
        height: 42px !important;
        width: auto;
    }

    header nav.navbar .navbar-brand {
        display: inline-flex;
        align-items: center;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    header nav.navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header nav.navbar .col-auto.col-lg-2 {
        flex: 1 1 auto;
        min-width: 0;
    }

    header nav.navbar .col-auto.text-end .d-flex {
        align-items: center;
        gap: 0.45rem !important;
    }

    header nav.navbar .col-auto.text-end form {
        margin: 0;
    }

    header nav.navbar .col-auto.text-end .btn.btn-small {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.86rem;
        line-height: 1.2;
        padding: 0.5rem 0.8rem;
        min-height: 40px;
    }
}

.ap-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid #d8deea;
    border-radius: 1.5rem;
    padding: 2rem;
    /* Set --ap-hero-image on .ap-hero if you want to inject a real background photo. */
    --ap-hero-image: linear-gradient(140deg, #ffffff 0%, #fdf9f7 65%, #faf5f3 100%);
    background-image:
        linear-gradient(115deg, rgba(8, 20, 36, 0.78) 0%, rgba(19, 49, 86, 0.62) 55%, rgba(26, 59, 98, 0.42) 100%),
        var(--ap-hero-image);
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 45px rgba(18, 41, 76, 0.1);
}

.ap-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 18%, rgba(182, 124, 106, 0.18) 0%, transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

.ap-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.ap-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(242, 247, 255, 0.9);
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.ap-title {
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    line-height: 0.98;
    margin-bottom: 0.95rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ap-subtitle {
    font-size: 1.08rem;
    color: rgba(241, 246, 255, 0.92);
    max-width: 50ch;
}

.ap-hero .btn-dark {
    background: #ffffff;
    color: #112845;
    border-color: #ffffff;
}

.ap-hero .btn-dark:hover {
    background: #eef4ff;
    border-color: #eef4ff;
    color: #112845;
}

.ap-hero .btn-outline-dark {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.85);
}

.ap-hero .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border-color: #ffffff;
}

.ap-copy .btn-lg {
    border-radius: 999px;
    padding-inline: 1.1rem;
}

.ap-metrics {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ap-metrics div {
    min-width: 120px;
    border: 1px solid rgba(221, 232, 248, 0.38);
    border-radius: 0.85rem;
    padding: 0.7rem 0.75rem;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(3px);
}

.ap-metrics strong {
    display: block;
    font-size: 1.05rem;
    color: #ffffff;
}

.ap-metrics span {
    font-size: 0.82rem;
    color: rgba(236, 243, 255, 0.88);
}

.ap-mockup {
    position: relative;
}

.ap-mockup-main {
    border: 1px solid #d9e0ee;
    border-radius: 1.1rem;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(26, 42, 74, 0.12);
}

.ap-phone-mockup {
    position: relative;
    overflow: hidden;
}

.ap-phone-screen {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.8rem;
    border: 1px solid #d8e0ef;
}

.ap-upload-fields {
    display: grid;
    gap: 0.4rem;
}

.ap-field-line {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e7edf8 0%, #f3f6fc 100%);
}

.ap-field-line.short {
    width: 65%;
}

.ap-upload-dropzone {
    border: 1px dashed #b3c2dc;
    border-radius: 0.7rem;
    padding: 0.75rem;
    text-align: center;
    color: #5a6b87;
    font-size: 0.82rem;
    background: #f7faff;
}

.ap-shot {
    border-radius: 0.75rem;
    height: 78px;
}

.ap-shot-a {
    background: linear-gradient(145deg, #D4A574, #B67C6A);
}

.ap-shot-b {
    background: linear-gradient(145deg, #c9a99d, #b08070);
}

.ap-shot-c {
    background: linear-gradient(145deg, #e8d5cf, #d4b5ac);
}

.ap-shot-d {
    background: linear-gradient(145deg, #f0e6e2, #ddc8c2);
}

.ap-meta-line {
    color: #51627d;
    font-size: 0.84rem;
}

.ap-floating-card {
    position: absolute;
    bottom: -22px;
    right: 14px;
    width: 220px;
    border: 1px solid #d5def0;
    border-radius: 0.8rem;
    padding: 0.7rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(10, 25, 45, 0.12);
}

.ap-gallery-card {
    bottom: -34px;
    width: 248px;
}

.ap-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.ap-photo-thumb {
    width: 100%;
    height: 56px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #d8e0ef;
}

.ap-qr-card {
    position: absolute;
    top: -20px;
    right: -8px;
    width: 170px;
    border: 2px solid #d4bea2;
    border-radius: 0.8rem;
    padding: 0.65rem;
    background: linear-gradient(180deg, #fff8ef 0%, #fff2e2 100%);
    box-shadow: 0 12px 24px rgba(10, 25, 45, 0.2);
    transform: rotate(-2deg);
}

.ap-qr-card::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #c85252;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.ap-qr-image {
    width: 84px;
    height: 84px;
    margin: 0 auto 0.45rem;
    display: block;
    border-radius: 0.45rem;
    border: 1px solid #cfd9ec;
    background: #ffffff;
    object-fit: cover;
}

.ap-qr-image.small {
    width: 58px;
    height: 58px;
    margin: 0;
}

.ap-use-case-card {
    border: 1px solid #d9e0ed;
    border-radius: 1rem;
    padding: 0.95rem;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 56, 110, 0.08);
}

.ap-use-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    margin-bottom: 0.7rem;
}

.ap-use-gallery .ap-photo-thumb {
    height: 62px;
}

.ap-use-qr {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.6rem;
    border: 1px solid #e0e6f3;
    border-radius: 0.7rem;
    background: #f7faff;
    color: #43546f;
    font-size: 0.84rem;
}

.ap-trust {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr;
}

.ap-trust span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #bbcced;
    border-radius: 0.75rem;
    padding: 0.62rem 0.82rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: #1a3358;
    background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
    box-shadow: 0 8px 20px rgba(29, 67, 120, 0.1);
}

.ap-trust span::before {
    content: "\2713";
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: #215ea7;
    color: #ffffff;
    font-size: 0.66rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.55rem;
    flex: 0 0 auto;
}

.section-title {
    font-size: 1.65rem;
    color: #162842;
}

.step-card,
.pricing-card,
.problem-card,
.solution-card {
    border: 1px solid #d9e0ed;
    border-radius: 1rem;
    padding: 1.05rem;
    background: #ffffff;
}

.step-index {
    margin: 0 0 0.4rem;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #596a85;
    font-weight: 700;
}

.pricing-name {
    margin: 0;
    color: #354762;
}

.pricing-note {
    margin: 0 0 0.55rem;
    font-size: 0.84rem;
    color: #5e6f89;
    font-weight: 600;
}

.pricing-price {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #101f36;
}

.pricing-tag {
    margin: 0 0 0.25rem;
    color: #1967d2;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-featured {
    border-color: #1f4f93;
    box-shadow: 0 14px 36px rgba(17, 56, 110, 0.13);
}

.pricing-card .btn {
    border-radius: 999px;
}

.problem-card {
    background: linear-gradient(180deg, #fff1e6 0%, #ffffff 100%);
}

.solution-card {
    background: linear-gradient(180deg, #eaf4ff 0%, #ffffff 100%);
}

.cta-band {
    border: 1px solid #163863;
    border-radius: 1rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #0f2a48 0%, #18497f 100%);
    color: #ffffff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    border-top: 1px solid #d8deea;
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    padding: 2rem 0 1rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.site-footer-brand {
    font-size: 1.3rem;
    color: #122039;
}

.site-footer-copy {
    max-width: 44ch;
    color: #4d5f7b;
    font-size: 0.95rem;
}

.site-footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #324867;
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.site-footer-links a {
    color: #465978;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #1d4e89;
    text-decoration: underline;
}

.site-footer-bottom {
    margin-top: 1.4rem;
    padding-top: 0.85rem;
    border-top: 1px solid #dbe3f2;
    color: #5f718d;
}

/* Auth/Register page polish */
.ap-auth-shell {
    position: relative;
}

.ap-auth-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 46px rgba(17, 34, 68, 0.12);
    background: #ffffff;
}

.ap-auth-visual {
    padding: 2.6rem;
    background:
        linear-gradient(140deg, rgba(11, 30, 59, 0.86) 0%, rgba(17, 61, 115, 0.74) 60%, rgba(27, 106, 131, 0.68) 100%),
        url('https://images.pexels.com/photos/1024993/pexels-photo-1024993.jpeg?auto=compress&cs=tinysrgb&w=1280') center/cover no-repeat;
    min-height: 100%;
}

.ap-auth-kicker {
    display: inline-block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.9rem;
}

.ap-auth-card-wrap {
    padding: 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ap-auth-card {
    box-shadow: 0 10px 28px rgba(23, 43, 77, 0.08);
    border: 1px solid #e7edf7 !important;
}

.ap-auth-label {
    font-weight: 600;
    color: #29374f;
}

.ap-auth-help,
.ap-auth-help ul {
    color: #61708a;
    font-size: 0.82rem;
    margin-bottom: 0;
    padding-left: 1rem;
}

.ap-auth-input.form-control {
    border: 1px solid #cfd8e6;
    border-radius: 0.72rem;
    background: #ffffff;
    color: #18263d;
    min-height: 46px;
}

.ap-auth-input.form-control:focus {
    border-color: #80adc5;
    box-shadow: 0 0 0 0.2rem rgba(29, 78, 137, 0.12);
}

/* Event customize page polish */
.ap-customize-shell {
    position: relative;
}

.ap-customize-kicker {
    display: inline-block;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: #eaf2ff;
    color: #24466f;
    font-size: 0.73rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.ap-customize-card,
.ap-customize-preview-card {
    border: 1px solid #e3e9f4 !important;
    border-radius: 1rem;
    box-shadow: 0 12px 28px rgba(16, 42, 77, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.ap-customize-label {
    font-weight: 600;
    color: #2d3f5b;
}

.ap-customize-form .form-control {
    border-radius: 0.72rem;
    border: 1px solid #cfdae9;
    min-height: 46px;
    background-color: #ffffff;
}

.ap-customize-form textarea.form-control {
    min-height: 118px;
}

.ap-customize-form .form-control:focus {
    border-color: #7aa5c4;
    box-shadow: 0 0 0 0.2rem rgba(21, 74, 129, 0.12);
}

/* Save customization button fix: keep text visible on hover */
.ap-btn-ink {
    color: #ffffff;
    background: linear-gradient(135deg, #1f3d66 0%, #1f5a86 100%);
    border: 1px solid #1f4f79;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.56rem 1.15rem;
}

.ap-btn-ink:hover,
.ap-btn-ink:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #173252 0%, #1c4e73 100%);
    border-color: #173252;
}

.ap-btn-ink:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 50, 82, 0.2);
}

@media (max-width: 991.98px) {
    .ap-auth-layout {
        grid-template-columns: 1fr;
    }

    .ap-auth-visual {
        padding: 1.75rem;
    }

    .ap-auth-card-wrap {
        padding: 0.9rem;
    }
}

    /* ---- Homepage hero: transparent navbar at top → white sticky on scroll ---- */

    /* Smooth background/shadow transition */
    header nav.navbar.ap-hero-nav {
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* At page top (before Crafto adds .sticky to <header>): keep nav fully transparent */
    header:not(.sticky) nav.navbar.ap-hero-nav {
        top: 16px;
        left: 18px;
        right: 18px;
        width: auto;
        border-radius: 16px;
        background: transparent !important;
        box-shadow: none !important;
        border-color: transparent !important;
    }

    header:not(.sticky) nav.navbar.ap-hero-nav .container-fluid {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    /* Once sticky kicks in, return navbar to full-width header position. */
    header.sticky nav.navbar.ap-hero-nav {
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        border-radius: 0;
    }

    header.sticky nav.navbar.ap-hero-nav .container-fluid {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    /* Show light (white) logo at top */
    header:not(.sticky) nav.navbar.ap-hero-nav .navbar-brand .default-logo {
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
    }
    header:not(.sticky) nav.navbar.ap-hero-nav .navbar-brand .alt-logo {
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
    }

    /* Switch to dark logo as soon as header.sticky fires (white bg coming in) */
    header.sticky nav.navbar.ap-hero-nav .navbar-brand .alt-logo {
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
    }
    header.sticky nav.navbar.ap-hero-nav .navbar-brand .default-logo {
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
    }

    /* Nav links: white at top */
    header:not(.sticky) nav.navbar.ap-hero-nav .navbar-nav .nav-link {
        color: rgba(255, 255, 255, 0.88) !important;
    }
    header:not(.sticky) nav.navbar.ap-hero-nav .navbar-nav .nav-item:hover .nav-link {
        color: #ffffff !important;
    }

    /* Buttons: white outline style at top (override the site-wide dark-button rule) */
    header:not(.sticky) nav.navbar.ap-hero-nav .btn.btn-transparent-white-light {
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.55) !important;
        background-color: transparent !important;
    }
    header:not(.sticky) nav.navbar.ap-hero-nav .btn.btn-transparent-white-light:hover,
    header:not(.sticky) nav.navbar.ap-hero-nav .btn.btn-transparent-white-light:focus {
        color: #1f2430 !important;
        border-color: #ffffff !important;
        background-color: #ffffff !important;
    }

.info-hero {
    border: 1px solid #d8deea;
    border-radius: 1.2rem;
    padding: 1.4rem;
    background: linear-gradient(140deg, #ffffff 0%, #f7fbff 60%, #f1f7ff 100%);
    box-shadow: 0 10px 28px rgba(17, 56, 110, 0.08);
}

.info-cover {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #d9e1ef;
}

.info-card {
    border: 1px solid #d9e0ed;
    border-radius: 1rem;
    padding: 1.05rem;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 56, 110, 0.06);
}

.info-list p {
    margin-bottom: 0.55rem;
    color: #445872;
}

@media (min-width: 992px) {
    .ap-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }

    .ap-hero {
        padding: 2.3rem;
    }

    .ap-trust {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767.98px) {
    .ap-hero {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .ap-title {
        font-size: 2rem;
        line-height: 1.02;
    }

    .ap-subtitle {
        font-size: 0.99rem;
    }

    .ap-floating-card {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
    }

    .ap-qr-card {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
        transform: none;
    }

    .ap-use-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .ap-use-gallery .ap-shot {
        height: 74px;
    }

    .ap-use-gallery .ap-photo-thumb {
        height: 74px;
    }

    .ap-metrics div {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .site-footer {
        padding: 1.4rem 0 0.9rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-footer-copy {
        max-width: none;
    }

    .info-cover {
        height: 230px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Payments list page
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.payments-page {
    padding: 2.2rem 0 4.2rem;
}

.payments-card {
    border: 1px solid #ece3dd;
    border-radius: 22px;
    box-shadow: 0 14px 44px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.payments-table-wrap {
    overflow-x: auto;
}

.payments-table {
    margin: 0;
    min-width: 760px;
}

.payments-table th,
.payments-table td {
    word-break: normal;
    overflow-wrap: normal;
    vertical-align: middle;
}

.payments-table thead th {
    font-size: .77rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7b7f86;
    border-bottom-width: 1px;
    border-color: #eceff3;
    padding: .95rem .85rem;
}

.payments-table tbody td {
    padding: 1rem .85rem;
    border-color: #eef1f4;
    color: #222b38;
}

.pay-event {
    font-weight: 700;
    color: #0f172a;
}

.pay-amount {
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

.pay-ref {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .78rem;
    color: #5f6875;
    max-width: 320px;
    white-space: normal;
    overflow-wrap: anywhere;
}

.pay-booking-ref {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: .84rem;
    font-weight: 700;
    color: #B67C6A;
    letter-spacing: .03em;
}

.pay-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pay-status.pending {
    background: #fff3e7;
    color: #9a5f2f;
}

.pay-status.paid,
.pay-status.active,
.pay-status.succeeded {
    background: #eaf7ef;
    color: #2f7a4a;
}

.pay-status.failed,
.pay-status.canceled,
.pay-status.cancelled {
    background: #fdecec;
    color: #a03b3b;
}

.pay-created {
    white-space: nowrap;
    color: #5f6875;
}

.pay-empty {
    padding: 2.4rem 1.1rem;
    text-align: center;
    color: #7b7f86;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Upsell / Addon-select page
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.upsell-page {
    background: #f9f7f4;
    min-height: 100vh;
    padding: 0 0 5rem;
}

.upsell-page > .container {
    padding-top: 120px;
}

/* Step progress */
.upsell-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.upsell-step {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #aaa;
    letter-spacing: .02em;
}

.upsell-step span {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e2ddd7;
    color: #888;
    transition: background .3s, color .3s;
}

.upsell-step.done span { background: #f4ddd6; color: #B67C6A; }
.upsell-step.done { color: #B67C6A; }
.upsell-step.active span { background: #232323; color: #fff; }
.upsell-step.active { color: #232323; }

.upsell-step-line {
    flex: 1; max-width: 40px;
    height: 1px;
    background: #d8d3cc;
}

/* Hero heading */
.upsell-heading {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: .5rem;
}

.upsell-sub {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Add-on cards */
.addon-card-wrap {
    position: relative;
    height: 100%;
    display: flex;
}

.addon-card {
    background: #fff;
    border: 2px solid #e8e3dc;
    border-radius: 20px;
    padding: 1.75rem;
    cursor: pointer;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    user-select: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.addon-card:hover {
    border-color: #c9a08e;
    box-shadow: 0 16px 48px rgba(0,0,0,.09);
    transform: translateY(-3px);
}

.addon-card.selected {
    border-color: #B67C6A;
    box-shadow: 0 0 0 4px rgba(182,124,106,.16), 0 20px 48px rgba(0,0,0,.1);
    background: #fdf8f6;
    transform: translateY(-3px);
}

.addon-check-badge {
    position: absolute;
    top: 18px; right: 18px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B67C6A 0%, #D4A574 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .2s, transform .25s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}

.addon-card.selected ~ .addon-check-badge,
.addon-card-wrap.selected .addon-check-badge {
    opacity: 1;
    transform: scale(1);
}

.addon-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: background .2s;
}

.addon-icon-wrap.slideshow {
    background: #f9ede9;
    color: #B67C6A;
}

.addon-icon-wrap.guestbook_pdf {
    background: #fdf3e3;
    color: #C48A40;
}

.addon-card.selected .addon-icon-wrap.slideshow  { background: #f4ddd6; }
.addon-card.selected .addon-icon-wrap.guestbook_pdf { background: #fae9cc; }

.addon-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: .2rem;
}

.addon-tagline {
    font-size: .85rem;
    color: #888;
    margin-bottom: .9rem;
}

.addon-desc {
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.addon-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.addon-grid > [class*="col-"] {
    display: flex;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.addon-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 100px;
    border: 2px solid #d0ccc6;
    color: #444;
    background: transparent;
    transition: border-color .2s, background .2s, color .2s;
    white-space: nowrap;
}

.addon-card.selected .addon-btn {
    border-color: #B67C6A;
    background: linear-gradient(135deg, #B67C6A 0%, #D4A574 100%);
    color: #fff;
}

/* Addon purchase page — active / owned state */
.addon-card-active {
    border-color: #B67C6A;
    background: #fdf8f6;
    box-shadow: 0 0 0 3px rgba(182,124,106,.14), 0 12px 40px rgba(0,0,0,.07);
}

.addon-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5ee;
    color: #2a6e47;
    font-size: .78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: .01em;
}

.addon-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(50deg, #B67C6A 0%, #D4A574 100%);
    color: #fff !important;
    font-size: .82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
    box-shadow: 0 3px 12px rgba(182,124,106,.28);
    white-space: nowrap;
}
.addon-action-btn:hover {
    opacity: .88;
    transform: translateY(-1px);
    color: #fff !important;
}

.addon-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(50deg, #B67C6A 0%, #D4A574 100%);
    color: #fff;
    font-size: .84rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: opacity .15s, transform .15s;
    box-shadow: 0 3px 12px rgba(182,124,106,.28);
    white-space: nowrap;
}
.addon-buy-btn:hover {
    opacity: .88;
    transform: translateY(-1px);
}

/* Order summary card */
.summary-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eadfd8;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    padding: 2rem;
    position: sticky;
    top: calc(var(--ap-nav-height, 82px) + 16px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.summary-card-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #aaa;
    margin-bottom: 1.1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    padding: 6px 0;
}

.summary-row .label { font-size: .9rem; color: #555; }
.summary-row .val   { font-size: .9rem; font-weight: 600; color: #1a1a1a; }
.summary-row.addon-line .label { color: #B67C6A; }
.summary-divider { border-color: #eee; margin: .9rem 0; }
.summary-total-label { font-size: 1rem; font-weight: 800; color: #1a1a1a; }
.summary-total-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: all .25s;
}
.summary-note { font-size: .78rem; color: #aaa; margin-top: .6rem; }

.summary-meta {
    margin-top: 1rem;
    padding: .9rem 1rem;
    border: 1px solid #eee4de;
    border-radius: 14px;
    background: #fdfaf8;
}

.summary-meta-title {
    font-size: .72rem;
    font-weight: 800;
    color: #8f8076;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .45rem;
}

.summary-meta ul {
    margin: 0;
    padding-left: 1rem;
}

.summary-meta li {
    font-size: .84rem;
    color: #5a514c;
    margin: .18rem 0;
}

/* Trust badges */
.upsell-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.2rem;
}

.upsell-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: #666;
    background: #f4f1ec;
    border-radius: 100px;
    padding: 5px 11px;
    font-weight: 600;
}

/* Actions */
.upsell-actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1.25rem;
}

.btn-upsell-continue {
    background: linear-gradient(50deg, #B67C6A 0%, #D4A574 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 8px 24px rgba(182,124,106,.35);
    width: 100%;
}

.btn-upsell-continue:hover { opacity: .92; transform: translateY(-1px); }

.btn-upsell-skip {
    font-size: .82rem;
    color: #aaa;
    text-align: center;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    padding: 4px 0;
}

.btn-upsell-skip:hover { color: #666; }

@media (min-width: 992px) {
    .summary-col {
        display: flex;
        padding-left: .45rem;
        position: relative;
    }

    .summary-col .summary-card {
        width: 100%;
    }
}

/* ── Live Slideshow (fullscreen carousel) ────────────────────── */
body.slideshow-fullscreen-page { overflow: hidden; }
body.slideshow-fullscreen-page nav,
body.slideshow-fullscreen-page footer { display: none !important; }

.ssw-root {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10;
    overflow: hidden;
}

/* Stage */
.ssw-stage {
    position: absolute;
    inset: 0;
}

.ssw-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssw-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

.ssw-fade-in {
    animation: ssw-crossfade .65s ease both;
}

@keyframes ssw-crossfade {
    from { opacity: 0; transform: scale(1.03); }
    to   { opacity: 1; transform: scale(1); }
}

/* Caption */
.ssw-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.ssw-caption-name {
    color: rgba(255,255,255,.9);
    font-size: .88rem;
    font-weight: 600;
}

.ssw-caption-time {
    color: rgba(255,255,255,.5);
    font-size: .78rem;
}

/* Progress bar */
.ssw-progress-wrap {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(255,255,255,.12);
    z-index: 20;
}

.ssw-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #B67C6A, #D4A574);
}

/* Top overlay */
.ssw-overlay-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(rgba(0,0,0,.55), transparent);
    gap: 12px;
}

.ssw-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(182,124,106,.2);
    border: 1px solid rgba(212,165,116,.5);
    color: #D4A574;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: .06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ssw-live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #D4A574;
    animation: ssw-pulse 1.6s ease-in-out infinite;
}

@keyframes ssw-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .35; transform: scale(.7); }
}

.ssw-event-title-wrap {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.ssw-event-title {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ssw-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ssw-counter {
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    font-variant-numeric: tabular-nums;
}

.ssw-icon-btn {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    border-radius: 8px;
    padding: 7px 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background .15s;
    line-height: 1;
}
.ssw-icon-btn:hover { background: rgba(255,255,255,.22); }

/* Dots */
.ssw-dots-wrap {
    position: absolute;
    bottom: 14px; left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 20;
}

.ssw-dot-ind {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.ssw-dot-ind.active {
    background: #D4A574;
    transform: scale(1.3);
}

/* Waiting state */
.ssw-waiting {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ssw-waiting-inner {
    text-align: center;
    color: rgba(255,255,255,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ssw-waiting-inner p {
    margin: 0;
    font-size: .9rem;
}

/* =========================================================
   POLICY PAGES  (terms / privacy / cookies)
   ========================================================= */

/* hero */
.ap-policy-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    padding: 90px 0 60px;
    text-align: center;
}

.ap-policy-tag {
    display: inline-block;
    background: rgba(212, 165, 116, .15);
    color: #D4A574;
    border: 1px solid rgba(212, 165, 116, .35);
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    margin-bottom: 18px;
}

.ap-policy-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}

.ap-policy-subtitle {
    color: rgba(255,255,255,.55);
    font-size: .95rem;
    margin: 0;
}

/* body */
.ap-policy-body {
    background: #FAF8F6;
    padding: 70px 0 90px;
}

/* highlight box */
.ap-policy-highlight {
    background: rgba(182, 124, 106, .1);
    border-left: 4px solid #B67C6A;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 40px;
    font-size: .95rem;
    color: #3d2c26;
    line-height: 1.6;
}

/* table of contents */
.ap-policy-toc {
    background: #fff;
    border: 1px solid #e8e0d9;
    border-radius: 10px;
    padding: 22px 26px;
    margin-bottom: 48px;
}

.ap-policy-toc-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #B67C6A;
    margin-bottom: 10px;
}

.ap-policy-toc ol {
    margin: 0;
    padding-left: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}

@media (max-width: 575.98px) {
    .ap-policy-toc ol { grid-template-columns: 1fr; }
}

.ap-policy-toc li {
    font-size: .88rem;
    line-height: 1.7;
}

.ap-policy-toc a {
    color: #0F172A;
    text-decoration: none;
    transition: color .2s;
}

.ap-policy-toc a:hover {
    color: #B67C6A;
}

/* sections */
.ap-policy-section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.ap-policy-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8e0d9;
}

.ap-policy-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #3d2c26;
    margin: 18px 0 8px;
}

.ap-policy-section p,
.ap-policy-section li {
    color: #444;
    font-size: .95rem;
    line-height: 1.75;
}

.ap-policy-section ul,
.ap-policy-section ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.ap-policy-section li {
    margin-bottom: 6px;
}

.ap-policy-section a {
    color: #B67C6A;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.ap-policy-section a:hover {
    color: #8f5a4a;
}

/* table */
.ap-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: .88rem;
}

.ap-policy-table th {
    background: #0F172A;
    color: #D4A574;
    font-weight: 600;
    text-align: left;
    padding: 10px 14px;
}

.ap-policy-table td {
    padding: 10px 14px;
    color: #444;
    border-bottom: 1px solid #e8e0d9;
}

.ap-policy-table tbody tr:nth-child(even) td {
    background: #fff;
}

.ap-policy-table code {
    background: #f1ece8;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: .82rem;
    color: #7a3e2e;
}

/* bottom cross-links */
.ap-policy-footer-links {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e8e0d9;
    font-size: .88rem;
    color: #888;
    text-align: center;
}

.ap-policy-footer-links a {
    color: #B67C6A;
    text-decoration: none;
}

.ap-policy-footer-links a:hover {
    text-decoration: underline;
}

.ap-policy-sep {
    margin: 0 8px;
    color: #ccc;
}

/* =========================================================
   PLAN SELECT PAGE  +  BUNDLE PURCHASE PAGE
   ========================================================= */

/* Plan cards */
.ap-plan-card {
    box-shadow: 0 4px 24px rgba(15,23,42,.08);
    transition: box-shadow .2s, transform .2s;
}

.ap-plan-card:hover {
    box-shadow: 0 8px 40px rgba(15,23,42,.14);
    transform: translateY(-3px);
}

.ap-plan-card-featured {
    background: linear-gradient(135deg, #B67C6A 0%, #D4A574 100%);
    color: #fff;
    box-shadow: 0 8px 40px rgba(182,124,106,.35);
    transform: translateY(-4px);
}

.ap-plan-card-featured:hover {
    box-shadow: 0 12px 50px rgba(182,124,106,.45);
    transform: translateY(-7px);
}

.ap-plan-badge-featured {
    display: inline-block;
    background: rgba(255,255,255,.25);
    color: #fff;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 12px;
    margin-bottom: 12px;
}

.ap-plan-card-bundle {
    border: 2px solid #D4A574 !important;
}

.ap-plan-badge-bundle {
    display: inline-block;
    background: rgba(212,165,116,.15);
    color: #B67C6A;
    border: 1px solid rgba(212,165,116,.4);
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 12px;
    margin-bottom: 12px;
}

/* Bundle credits notice banner */
.ap-bundle-credits-notice {
    background: rgba(212,165,116,.12);
    border: 1px solid rgba(212,165,116,.4);
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 24px;
    font-size: .92rem;
    color: #6b4226;
}

/* Bundle purchase page */
.ap-bundle-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    padding: 90px 0 60px;
    text-align: center;
}

.ap-bundle-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.ap-bundle-subtitle {
    color: rgba(255,255,255,.55);
    font-size: 1rem;
    margin: 0;
}

.ap-bundle-body {
    background: #FAF8F6;
    padding: 60px 0 90px;
}

.ap-bundle-card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid #D4A574;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(182,124,106,.15);
}

.ap-bundle-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.ap-bundle-price {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
}

.ap-bundle-price-note {
    font-size: .88rem;
    color: #888;
}

.ap-bundle-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.ap-bundle-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f1ece8;
    font-size: .95rem;
    color: #444;
}

.ap-bundle-features li:last-child {
    border-bottom: none;
}

.ap-bundle-features i {
    color: #B67C6A;
    flex-shrink: 0;
    margin-top: 2px;
}

.ap-bundle-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #B67C6A 0%, #D4A574 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    margin-bottom: 16px;
}

.ap-bundle-cta:hover {
    opacity: .9;
    transform: translateY(-2px);
}

.ap-bundle-guarantee {
    text-align: center;
    font-size: .82rem;
    color: #999;
    margin: 0;
}

.ap-bundle-existing {
    background: #fff;
    border: 1px solid #e8e0d9;
    border-radius: 10px;
    padding: 20px 24px;
}

.ap-bundle-existing-row {
    font-size: .9rem;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px solid #f1ece8;
}

.ap-bundle-existing-row:last-child {
    border-bottom: none;
}
