/* =====================================================
   ROOT / COLOR PALETTE
===================================================== */

:root {

    --primary: #08246d;
    --primary-dark: #03164b;
    --primary-light: #123b9c;

    --promo-yellow: #ffc400;
    --promo-gold: #f5a400;
    --promo-light: #ffe47a;

    --promo-red: #d81712;
    --promo-red-dark: #a90908;

    --white: #ffffff;
    --soft-white: #f7f9ff;

    --text-dark: #10245c;
    --text-light: #66749c;

    --border: rgba(13, 46, 120, 0.10);

    --shadow:
        0 20px 60px rgba(0,0,0,.14);

}



/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(
            circle at top,
            #174db7 0%,
            #08246d 38%,
            #031640 100%
        );

    color: var(--text-dark);

    min-height: 100vh;

    overflow-x: hidden;

}


.promo-title {
    text-align: center;
}

.promo-title span {
    display: inline-block;
}



/* =====================================================
   PAGE BACKGROUND
===================================================== */

.page-wrapper {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    background-color: #062b91;

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .page-wrapper {
        background-position: center top;

        /* Extend background down to roughly middle */
        background-size: auto 55vh;

        background-repeat: no-repeat;
    }

}

/* =====================================================
   REMOVE DECORATIVE RAYS
===================================================== */

.page-wrapper::before {
    display: none;
}


/* =====================================================
   TOP-CENTER CONFETTI
===================================================== */

.confetti {
    position: absolute;

    width: 8px;
    height: 8px;

    opacity: .85;

    border-radius: 2px;

    z-index: 2;

    animation: floatConfetti 7s infinite ease-in-out;
}

.c2,
.c7,
.c13,
.c19 {
    width: 11px;
    height: 6px;
}

.c4,
.c10,
.c16,
.c22 {
    width: 6px;
    height: 11px;
}

.c5,
.c11,
.c17,
.c23 {
    width: 7px;
    height: 7px;
}


/* COLORS */

.confetti.yellow {
    background: var(--promo-yellow);
}

.confetti.gold {
    background: #ffd21f;
}

.confetti.red {
    background: var(--promo-red);
}

.confetti.white {
    background: #fff;
}




/* =====================================================
   FULL-WIDTH TOP CONFETTI
===================================================== */

.c1  { top: 4%;  left: 2%; }
.c2  { top: 12%; left: 6%;  animation-delay: .7s; }

.c3  { top: 7%;  left: 11%; animation-delay: 1.4s; }
.c4  { top: 18%; left: 15%; animation-delay: 2.1s; }

.c5  { top: 3%;  left: 20%; animation-delay: .9s; }
.c6  { top: 14%; left: 24%; animation-delay: 2.8s; }

.c7  { top: 8%;  left: 29%; animation-delay: 1.8s; }
.c8  { top: 21%; left: 33%; animation-delay: 3.2s; }

.c9  { top: 5%;  left: 38%; animation-delay: .4s; }
.c10 { top: 16%; left: 42%; animation-delay: 2.5s; }

.c11 { top: 3%;  left: 47%; animation-delay: 1.2s; }
.c12 { top: 19%; left: 51%; animation-delay: 3.8s; }

.c13 { top: 7%;  left: 56%; animation-delay: 2.2s; }
.c14 { top: 15%; left: 60%; animation-delay: 4.2s; }

.c15 { top: 4%;  left: 65%; animation-delay: 2.7s; }
.c16 { top: 22%; left: 69%; animation-delay: 1.1s; }

.c17 { top: 9%;  left: 74%; animation-delay: 3.5s; }
.c18 { top: 17%; left: 78%; animation-delay: .8s; }

.c19 { top: 5%;  left: 83%; animation-delay: 2.9s; }
.c20 { top: 20%; left: 87%; animation-delay: 1.7s; }

.c21 { top: 8%;  left: 92%; animation-delay: 3.7s; }
.c22 { top: 15%; left: 96%; animation-delay: 1.6s; }

.c23 { top: 25%; left: 8%;  animation-delay: 2.4s; }
.c24 { top: 24%; left: 90%; animation-delay: 4s; }

/* =====================================================
   FLOATING CONFETTI
===================================================== */

@keyframes floatConfetti {

    0%, 100% {
        transform:
            translateY(0)
            rotate(30deg);
    }

    50% {
        transform:
            translateY(-22px)
            rotate(120deg);
    }

}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.container {

    width: 100%;

    max-width: 1150px;

    margin: auto;

    padding: 25px 20px 60px;

    position: relative;

    z-index: 2;

}


/* =====================================================
   HEADER
===================================================== */

.topbar {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;

}


.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

}


.brand-logo {
    width: 55px;
    height: 55px;
    background-color: white;
    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("../images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}


.brand-text strong {

    display: block;

    font-family: Montserrat, sans-serif;

    font-size: 17px;

}

.brand-text span {

    font-size: 11px;

    opacity: .75;

}


.location-badge {

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(10px);

    color: white;

    padding: 11px 16px;

    border-radius: 50px;

    font-size: 13px;

}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 20px 10px 45px;
}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.2);

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 20px;

    backdrop-filter: blur(10px);

}


.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 8vw, 82px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;

    text-shadow:
        0 -2px 0 #001f5b,
        0 1px 0 rgba(255,255,255,.45),
        0 3px 0 #000,
        0 5px 0 #000,
        0 7px 0 #000,
        0 9px 0 #111,
        0 12px 12px rgba(0,0,0,.65),
        0 18px 25px rgba(0,0,0,.4);
}
 
 
 

.hero h1 span {
    display: inline-block !important;

    color: #FFD700 !important;
    

    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #FFD700 !important;

    text-shadow:
        0 -2px 0 #8a5a00,
        0 1px 0 #fff0a0,
        0 3px 0 #000,
        0 5px 0 #000,
        0 7px 0 #000,
        0 10px 12px rgba(0,0,0,.65);
}


.hero-description {

    max-width: 620px;

    margin: auto;

    font-size: 16px;

    opacity: .9;

}


/* =====================================================
   PROMO RIBBON
===================================================== */

.promo-ribbon {
    position: relative;
    cursor: pointer !important;

    width: min(500px, calc(100vw - 40px));
    max-width: 700px;

    margin: 18px auto 0;

    padding: 12px 30px;

    box-sizing: border-box;

    display: block;

    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-size: clamp(16px, 4vw, 24px);
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;

    color: #fff;
    
    text-shadow:
        2px 2px 0 #000,
        2px 2px 2px #000,
        4px 4px 6px rgba(0,0,0,.65);

    background: linear-gradient(
        180deg,
        #ed241d,
        #b90d0b
    );

    border-top: 2px solid #d4a017;
    border-bottom: 2px solid #d4a017;

    border-radius: 2px;

    box-shadow:
        0 0 12px rgba(255,215,0,.35) inset,
        0 6px 0 #8a0000,
        0 10px 18px rgba(0,0,0,.35);
}


/* =========================
   RIBBON ENDS
========================= */

.promo-ribbon::before,
.promo-ribbon::after {
    content: "";

    position: absolute;
    z-index: -1;
    top: 80%;

    width: 40px;
    height: 0;

    border: 30px solid #e51b18;
    border-right: 20px solid #a50000;
    border-bottom-color: #d41414;
    border-left-color: transparent;

    transform: translateY(-50%) rotate(-5deg);
}


/* LEFT */
.promo-ribbon::before {
    left: -58px;
}


/* RIGHT */
.promo-ribbon::after {
    left: auto;
    right: -58px;

    border-left: 20px solid #a50000;
    border-right: 30px solid transparent;

    transform: translateY(-50%) rotate(5deg);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .promo-ribbon {
        width: calc(100vw - 70px);
        max-width: none;

        margin: 15px auto 0;

        padding: 10px 18px;

        font-size: clamp(14px, 4.5vw, 20px);
        line-height: 1.2;

        border-top-width: 4px;
        border-bottom-width: 4px;
    }


    .promo-ribbon::before,
    .promo-ribbon::after {
        width: 24px;

        border-width: 20px;
        border-right-width: 14px;

        border-bottom-color: #d41414;
    }


    .promo-ribbon::before {
        left: -40px;
    }


    .promo-ribbon::after {
        right: -40px;

        border-left-width: 14px;
        border-right-width: 20px;
    }
}


/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 380px) {

    .promo-ribbon {
        width: calc(100vw - 55px);
        padding: 9px 12px;

        font-size: 14px;
    }

    .promo-ribbon::before {
        left: -32px;
    }

    .promo-ribbon::after {
        right: -32px;
    }

    .promo-ribbon::before,
    .promo-ribbon::after {
        border-width: 16px;
        border-right-width: 11px;
    }
}

/*
.promo-ribbon {

    position: relative;
    cursor: pointer !important;
    max-width: 700px;

    margin: 28px auto 0;

    background:

        linear-gradient(
            180deg,
            #ed241d,
            #b90d0b
        );

    color: white;

    padding: 15px 30px;

    font-family: Montserrat, sans-serif;

    font-weight: 800;

    font-size: 18px;

    text-transform: uppercase;

    letter-spacing: .5px;

    border-radius: 8px;

    box-shadow:

        0 10px 0 #7d0706,
        0 20px 30px rgba(0,0,0,.2);

}


.promo-ribbon::before,
.promo-ribbon::after {

    content: "";

    position: absolute;

    top: 8px;

    width: 30px;
    height: 30px;

    background: #9e0806;

    z-index: -1;

}

.promo-ribbon::before {

    left: -15px;

    transform: skewY(30deg);

}

.promo-ribbon::after {

    right: -15px;

    transform: skewY(-30deg);

}
*/






/* =====================================================
   MAIN CARD
===================================================== */

.main-card {

    background: var(--soft-white);

    border-radius: 30px;

    overflow: hidden;

    box-shadow: var(--shadow);

    border: 1px solid rgba(255,255,255,.5);

}


/* =====================================================
   STORE INFO
===================================================== */

.store-info {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;

    background: white;

    border-bottom:
        1px solid var(--border);

}


.info-item {

    padding: 25px;

    text-align: center;

    border-right:
        1px solid var(--border);

}

.info-item:last-child {

    border-right: none;

}


.info-icon {

    width: 46px;
    height: 46px;

    margin: 0 auto 12px;

    border-radius: 14px;

    background:

        linear-gradient(
            135deg,
            var(--promo-yellow),
            var(--promo-gold)
        );

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;

}


.info-label {

    display: block;

    color: var(--text-light);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;

    margin-bottom: 4px;

}


.info-value {

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

}


/* =====================================================
   SECTION
===================================================== */

.content-section {

    padding: 45px 40px;

}


.section-heading {

    text-align: center;

    margin-bottom: 35px;

}


.section-heading span {

    display: inline-block;

    color: var(--promo-red);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 8px;

}


.section-heading h2 {

    font-family: Montserrat, sans-serif;

    font-size: 28px;

    color: var(--primary);

    font-weight: 900;

}


/* =====================================================
   TWO LEVEL CUSTOMER LAYER
===================================================== */

.customer-levels {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


.level-card {

    position: relative;

    background: white;

    border-radius: 22px;

    padding: 30px;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: .3s ease;

}


.level-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(8,36,109,.12);

}


.level-number {

    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 65px;

    font-family: Montserrat;

    font-weight: 900;

    color: rgba(8,36,109,.05);

}


.level-icon {

    width: 60px;
    height: 60px;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    margin-bottom: 18px;

}


.level-one .level-icon {

    background: rgba(255,196,0,.15);

    color: #e49b00;

}


.level-two .level-icon {

    background: rgba(216,23,18,.10);

    color: var(--promo-red);

}


.level-card h3 {

    color: var(--primary);

    font-family: Montserrat;

    font-size: 19px;

    margin-bottom: 8px;

}


.level-card p {

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.7;

}


/* =====================================================
   REWARD SLABS
===================================================== */

.slabs {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.slab {

    position: relative;

    border-radius: 24px;

    padding: 30px 20px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    transition: .3s;

}


.slab:hover {

    transform: translateY(-8px);

}


.slab.featured {

    background:

        linear-gradient(
            145deg,
            #123b9c,
            #061d60
        );

    color: white;

    transform: scale(1.04);

    border: 3px solid var(--promo-yellow);

    box-shadow:
        0 20px 45px rgba(8,36,109,.3);

}


.slab.featured:hover {

    transform:
        scale(1.04)
        translateY(-8px);

}


.slab-rank {

    position: absolute;

    top: 15px;
    right: 18px;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--promo-yellow);

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

}


.slab-icon {

    font-size: 34px;

    color: var(--promo-gold);

    margin-bottom: 12px;

}


.slab h3 {

    font-family: Montserrat;

    font-size: 28px;

    margin-bottom: 7px;

    color: var(--primary);

}


.featured h3 {

    color: var(--promo-yellow);

}


.slab p {

    font-size: 12px;

    color: var(--text-light);

}

.featured p {

    color: rgba(255,255,255,.7);

}


.reward-label {

    display: inline-block;

    margin-top: 14px;

    padding: 7px 13px;

    border-radius: 50px;

    background: rgba(255,196,0,.15);

    color: #c78500;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

}

.featured .reward-label {

    background: rgba(255,255,255,.12);

    color: white;

}


/* =====================================================
   TERMS
===================================================== */

.terms-box {

    margin-top: 45px;

    background: white;

    border-radius: 22px;

    border: 1px solid var(--border);

    overflow: hidden;

}


.terms-header {

    padding: 18px 25px;

    background:

        linear-gradient(
            135deg,
            var(--primary),
            #123b9c
        );

    color: white;

    display: flex;

    align-items: center;

    gap: 10px;

}


.terms-header h3 {

    font-size: 15px;

    font-family: Montserrat;

}


.terms-content {

    padding: 25px;

}


.terms-content ul {

    list-style: none;

}


.terms-content li {

    position: relative;

    padding-left: 27px;

    margin-bottom: 13px;

    font-size: 13px;

    color: var(--text-light);

    line-height: 1.6;

}


.terms-content li::before {

    content: "\F633";

    font-family: "bootstrap-icons";

    position: absolute;

    left: 0;

    color: var(--promo-red);

    font-size: 16px;

}


.stock-notice {

    margin-top: 18px;

    padding: 13px 17px;

    background: #fff8dc;

    border-left: 4px solid var(--promo-yellow);

    color: #8a6200;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

}


/* =====================================================
   ACCEPT TERMS
===================================================== */

.accept-terms {

    margin-top: 20px;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    background: #f3f6ff;

    padding: 17px;

    border-radius: 14px;

}


.accept-terms input {

    width: 18px;
    height: 18px;

    margin-top: 2px;

    accent-color: var(--primary);

}


.accept-terms label {

    font-size: 12px;

    color: var(--text-dark);

    line-height: 1.6;

    cursor: pointer;

}


/* =====================================================
   UPLOAD AREA
===================================================== */

.upload-section {

    margin-top: 25px;

    display: none;

}


.upload-section.active {

    display: block;

    animation: reveal .4s ease;

}


@keyframes reveal {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.upload-box {

    border: 2px dashed #9aa8d2;

    border-radius: 20px;

    padding: 35px 20px;

    text-align: center;

    background: white;

    cursor: pointer;

    transition: .3s;

}


.upload-box:hover {

    border-color: var(--primary);

    background: #f6f8ff;

}


.upload-icon {

    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    border-radius: 20px;

    background: rgba(255,196,0,.18);

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

}


.upload-box h3 {

    color: var(--primary);

    font-size: 17px;

    margin-bottom: 7px;

}


.upload-box p {

    color: var(--text-light);

    font-size: 12px;

}


#invoiceInput {

    display: none;

}


.file-name {

    margin-top: 12px;

    font-size: 12px;

    font-weight: 600;

    color: var(--primary);

}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.submit-btn {

    width: 100%;

    margin-top: 20px;

    border: none;

    border-radius: 15px;

    padding: 17px 20px;

    background:

        linear-gradient(
            135deg,
            var(--promo-red),
            #a80b09
        );

    color: white;

    font-family: Montserrat;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;

    box-shadow:
        0 10px 25px rgba(216,23,18,.25);

}


.submit-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(216,23,18,.35);

}


.submit-btn:disabled {

    opacity: .5;

    cursor: not-allowed;

}


/* =====================================================
   PROMOTER SECTION
===================================================== */

.team-section {

    margin-top: 40px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.team-card {

    background: white;

    border-radius: 18px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    border: 1px solid var(--border);

}


.team-avatar {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:

        linear-gradient(
            135deg,
            var(--promo-yellow),
            var(--promo-gold)
        );

    color: var(--primary);

    font-size: 20px;

}


.team-info small {

    display: block;

    font-size: 10px;

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 1px;

}


.team-info strong {

    color: var(--primary);

    font-size: 14px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    text-align: center;

    color: rgba(255,255,255,.6);

    padding-top: 30px;

    font-size: 11px;

}


.footer strong {

    color: var(--promo-yellow);

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width: 850px) {

    .store-info {

        grid-template-columns:
            1fr 1fr;

    }

    .info-item {

        border-bottom:
            1px solid var(--border);

    }

    .customer-levels,
    .team-section {

        grid-template-columns: 1fr;

    }

}


@media(max-width: 650px) {

    .container {

        padding:
            15px 12px 40px;

    }

    .topbar {

        flex-direction: column;

        align-items: flex-start;

    }

    .hero {

        padding-bottom: 30px;

    }

    .hero h1 {

        letter-spacing: -2px;

    }

    .promo-ribbon {

        font-size: 13px;

        padding: 13px 15px;

    }

    .content-section {

        padding: 30px 18px;

    }

    .slabs {

        grid-template-columns: 1fr;

    }

    .slab.featured {

        transform: none;

    }

    .slab.featured:hover {

        transform: translateY(-6px);

    }

    .store-info {

        grid-template-columns: 1fr 1fr;

    }

    .info-item {

        padding: 18px 10px;

    }

    .info-value {

        font-size: 12px;

    }

}


/* =============================================
   CUSTOMER FORM
============================================= */

.customer-form-section {
    margin-top: 0px;
    padding: 45px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}


/* FORM GRID */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 35px;
}


/* FORM GROUP */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}


/* LABEL */

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #202020;
}

.form-group label span {
    font-weight: 500;
    color: #999;
    font-size: 12px;
}


/* INPUT WRAPPER */

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary);
    pointer-events: none;
}


/* INPUTS */

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    height: 56px;
    padding: 0 18px 0 50px;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    background: #f9fafb;

    color: #222;
    font-size: 14px;

    outline: none;

    transition: all .25s ease;
}


/* SELECT */

.input-wrapper select {
    appearance: none;
    cursor: pointer;
}


/* FOCUS */

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--primary);
    background: #fff;

    box-shadow:
        0 0 0 4px rgba(0, 0, 0, .04);
}


/* TERMS */

.form-terms {
    margin-top: 5px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    font-size: 13px;
    line-height: 1.6;

    color: #666;

    cursor: pointer;
}

.checkbox-wrapper input {
    width: 18px;
    height: 18px;
    margin-top: 2px;

    accent-color: var(--primary);
}


/* SUBMIT */

.form-submit {
    margin-top: 5px;
}


/* BUTTON */

.submit-btn {
    width: 100%;
    min-height: 58px;

    border: none;
    border-radius: 15px;

    background: var(--primary);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}


.submit-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, .15);
}


.submit-btn i {
    font-size: 19px;
}


/* MOBILE */

@media (max-width: 768px) {

    .customer-form-section {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

}


/* =============================================
   PREMIUM RECEIPT UPLOAD
============================================= */

.premium-upload {
    position: relative;
    width: 100%;
}


/* Hide native file input */

.premium-upload input[type="file"] {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* Upload box */

.upload-box {
    position: relative;

    width: 100%;
    min-height: 125px;

    padding: 25px 28px;

    display: flex;
    align-items: center;
    gap: 18px;

    border: 1.5px dashed #d8dce3;
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fafc 100%
        );

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


/* Hover */

.upload-box:hover {
    border-color: var(--primary);

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f7ff 100%
        );

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .07);
}


/* Upload icon */

.upload-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: rgba(0, 0, 0, .04);

    color: var(--primary);

    font-size: 25px;

    transition: all .25s ease;
}


.upload-box:hover .upload-icon {
    transform: translateY(-3px) scale(1.04);
}


/* Content */

.upload-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 4px;
}


.upload-content strong {
    font-size: 15px;
    font-weight: 800;

    color: #202124;
}


.upload-content span {
    font-size: 13px;

    color: #777;
}


.upload-content span b {
    color: var(--primary);
    font-weight: 700;
}


.upload-content small {
    margin-top: 3px;

    font-size: 11px;

    color: #a0a4aa;
}


/* Arrow */

.upload-arrow {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: var(--primary);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .08);

    transition: transform .25s ease;
}


.upload-box:hover .upload-arrow {
    transform: translate(3px, -3px);
}


/* =============================================
   SELECTED FILE STATE
============================================= */

.premium-upload.has-file .upload-box {
    border-style: solid;

    border-color: var(--primary);

    background: #f8fbff;
}


.premium-upload.has-file .upload-icon {
    background: var(--primary);
    color: #fff;
}


/* =============================================
   PREVIEW
============================================= */

.receipt-preview {
    display: none;

    margin-top: 15px;

    padding: 12px;

    border-radius: 16px;

    background: #f8fafc;

    border: 1px solid #e9edf2;
}


.receipt-preview.show {
    display: block;
}


.receipt-preview img {
    display: block;

    width: 100%;
    max-height: 260px;

    object-fit: contain;

    border-radius: 10px;
}


.pdf-preview {
    display: none;

    min-height: 100px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 8px;

    color: #777;
}


.pdf-preview i {
    font-size: 42px;
    color: #dc3545;
}


.pdf-preview span {
    font-size: 13px;
    font-weight: 700;
}


/* =============================================
   MOBILE
============================================= */

@media (max-width: 600px) {

    .upload-box {
        padding: 20px;

        min-height: 110px;

        gap: 13px;
    }

    .upload-icon {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }

    .upload-content strong {
        font-size: 14px;
    }

    .upload-content span {
        font-size: 12px;
    }

    .upload-content small {
        font-size: 10px;
    }

    .upload-arrow {
        display: none;
    }

}

.input-wrapper select:disabled {
    background: #f1f3f5;
    color: #a0a4aa;
    cursor: not-allowed;
    opacity: .8;
}

.input-wrapper select {
    cursor: pointer;
}

/* =====================================================
   MOBILE HEADER — FINAL OVERRIDE
===================================================== */

@media screen and (max-width: 650px) {

    .topbar {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        margin: 0 auto 30px !important;
        padding: 0 !important;

        text-align: center !important;
    }


    /* BRAND CONTAINER */

    .topbar .brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;

        text-align: center !important;
    }


    /* LOGO */

    .topbar .brand .brand-logo {
        display: flex !important;

        width: 70px !important;
        height: 70px !important;

        margin: 0 auto !important;

        align-items: center !important;
        justify-content: center !important;
    }


    /* BRAND TEXT */

    .topbar .brand .brand-text {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        text-align: center !important;
    }


    .topbar .brand .brand-text strong {
        display: block !important;
        text-align: center !important;
    }


    .topbar .brand .brand-text span {
        display: block !important;
        text-align: center !important;
    }


    /* HIDE LOCATION */

    .topbar .location-badge {
        display: none !important;
    }

}


/* =========================================================
   PREMIUM TERMS LINK
========================================================= */

.terms-trigger {
    width: 100%;
    margin: 18px 0;
}

.terms-link {
    width: 100%;
    min-height: 52px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 16px;

    border: 1px solid rgba(15, 35, 70, 0.12);
    border-radius: 14px;

    background: #fff;

    color: #102a56;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.terms-link:hover {
    transform: translateY(-1px);

    border-color: rgba(15, 35, 70, 0.25);

    box-shadow:
        0 8px 25px rgba(15, 35, 70, 0.09);
}

.terms-link > i:first-child {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #102a56,
        #1d4f91
    );

    color: #fff;

    font-size: 14px;
}

.terms-link span {
    flex: 1;
    text-align: left;
}

.terms-arrow {
    font-size: 11px;
    opacity: .55;

    transition: transform .2s ease;
}

.terms-link:hover .terms-arrow {
    transform: translateX(3px);
}


/* =========================================================
   MODAL
========================================================= */

.terms-modal {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.terms-modal.active {
    visibility: visible;
    opacity: 1;
}


/* BACKDROP */

.terms-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(5, 15, 32, .68);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* DIALOG */

.terms-dialog {
    position: relative;

    width: min(600px, 100%);

    max-height: min(760px, 92vh);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .28),
        0 10px 30px rgba(0, 0, 0, .12);

    transform: translateY(25px) scale(.97);

    transition:
        transform .3s cubic-bezier(.2,.8,.2,1);
}

.terms-modal.active .terms-dialog {
    transform: translateY(0) scale(1);
}


/* =========================================================
   HEADER
========================================================= */

.terms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 22px 18px;

    border-bottom: 1px solid #edf0f5;

    background:
        linear-gradient(
            135deg,
            #f9fbff,
            #ffffff
        );
}

.terms-title-wrap {
    display: flex;
    align-items: center;
    gap: 13px;
}

.terms-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #102a56,
            #2466b3
        );

    color: #fff;

    box-shadow:
        0 8px 20px rgba(16, 42, 86, .2);
}

.terms-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: #7b8799;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.3px;
}

.terms-header h2 {
    margin: 0;

    color: #102a56;

    font-size: 21px;
    font-weight: 800;
}

.terms-close {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #f1f4f8;

    color: #526071;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.terms-close:hover {
    background: #e7ebf1;
    transform: rotate(90deg);
}


/* =========================================================
   CONTENT
========================================================= */

.terms-content {
    overflow-y: auto;

    padding: 20px 22px 10px;

    scrollbar-width: thin;
}

.terms-intro {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 13px 15px;

    margin-bottom: 17px;

    border-radius: 12px;

    background: #f5f8fc;

    color: #566477;

    font-size: 12px;
    line-height: 1.55;
}

.terms-intro i {
    margin-top: 2px;

    color: #1d5fa8;
}

.terms-intro p {
    margin: 0;
}


/* =========================================================
   TERMS LIST
========================================================= */

.terms-list {
    list-style: none;

    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 13px 5px;

    border-bottom: 1px solid #edf0f4;
}

.terms-list li:last-child {
    border-bottom: 0;
}

.term-number {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #f1f5fa;

    color: #1d4f8c;

    font-size: 10px;
    font-weight: 800;
}

.terms-list strong {
    display: block;

    margin-bottom: 4px;

    color: #172b4d;

    font-size: 13px;
}

.terms-list p {
    margin: 0;

    color: #697689;

    font-size: 12px;
    line-height: 1.55;
}


/* =========================================================
   FOOTER
========================================================= */

.terms-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 15px 22px;

    border-top: 1px solid #edf0f5;

    background: #fff;
}

.terms-note {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #7b8796;

    font-size: 10px;
}

.terms-note i {
    color: #2d6a3f;
}

.terms-done {
    min-height: 42px;

    padding: 0 19px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 0;
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #102a56,
            #1f5eaa
        );

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(16, 42, 86, .18);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.terms-done:hover {
    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(16, 42, 86, .25);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .terms-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .terms-dialog {
        width: 100%;
        max-height: 88vh;

        border-radius: 22px 22px 16px 16px;

        transform: translateY(40px);
    }

    .terms-modal.active .terms-dialog {
        transform: translateY(0);
    }

    .terms-header {
        padding: 18px 17px 15px;
    }

    .terms-icon {
        width: 42px;
        height: 42px;
    }

    .terms-header h2 {
        font-size: 18px;
    }

    .terms-content {
        padding: 16px 17px 8px;
    }

    .terms-footer {
        padding: 12px 17px;

        flex-direction: column;
        align-items: stretch;
    }

    .terms-note {
        justify-content: center;
    }

    .terms-done {
        width: 100%;
    }

}



/* =========================================================
   GIFT SELECTION MODAL
========================================================= */

.gift-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.gift-modal.active {
    opacity: 1;
    visibility: visible;
}


.gift-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(5, 18, 40, .78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.gift-dialog {
    position: relative;
    z-index: 2;

    width: min(760px, 100%);
    max-height: 92vh;

    overflow: hidden;

    background: #fff;

    border-radius: 28px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .35);

    transform: translateY(30px) scale(.96);

    transition:
        transform .35s cubic-bezier(.2,.8,.2,1);
}

.gift-modal.active .gift-dialog {
    transform: translateY(0) scale(1);
}


/* HEADER */

.gift-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 26px 28px 20px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #ffffff
        );

    border-bottom: 1px solid #edf1f6;
}

.gift-eyebrow {
    display: block;

    margin-bottom: 5px;

    color: #c4942f;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.gift-header h2 {
    margin: 0 0 5px;

    color: #102a56;

    font-size: 27px;
    font-weight: 900;
}

.gift-header p {
    margin: 0;

    color: #718096;

    font-size: 13px;
}


.gift-success-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #d8aa43,
            #f3d47d
        );

    color: #fff;

    font-size: 25px;

    box-shadow:
        0 10px 25px rgba(196, 148, 47, .25);
}


/* =========================================================
   GIFT SLIDER - PREMIUM HORIZONTAL LAYOUT
========================================================= */

.gift-slider-wrap {
    position: relative;
    width: 100%;
    padding: 12px 42px 8px;
    box-sizing: border-box;
    overflow: hidden;
}

.gift-slider {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

/* =========================================================
   INDIVIDUAL GIFT ITEM
========================================================= */

.gift-item {
    position: relative;

    flex: 0 0 145px;
    width: 145px;
    min-width: 145px;

    height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    padding: 42px 8px 12px;

    box-sizing: border-box;

    background: linear-gradient(
        180deg,
        #fffdf5 0%,
        #fff8dc 100%
    );

    border: 2px solid #f6b800;
    border-radius: 16px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.12);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.gift-item:hover {
    transform: translateY(-4px);

    border-color: #ff8c00;

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   GIFT IMAGE
========================================================= */

.gift-item img {
    width: 105px;
    height: 105px;

    object-fit: contain;

    display: block;

    margin: auto 0 8px;

    filter:
        drop-shadow(0 5px 5px rgba(0,0,0,.15));
}


/* =========================================================
   GIFT NAME
========================================================= */

.gift-item-name {
    width: 100%;

    margin-top: 3px;

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;

    text-align: center;

    color: #333;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.gift-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
    padding: 5px 8px 10px;
}

.gift-items > * {
    flex: 0 0 calc((100% - 30px) / 3);
    max-width: calc((100% - 30px) / 3);
    box-sizing: border-box;
}

/* =========================================================
   SELECT BUTTON - ON TOP OF EACH ITEM
========================================================= */

.gift-select-btn {
    position: absolute;

    top: 9px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    min-width: 88px;

    padding: 7px 15px;

    border: 0;
    border-radius: 30px;

    background: linear-gradient(
        180deg,
        #ffcc00 0%,
        #ff8c00 100%
    );

    color: #fff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .5px;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 4px 8px rgba(0,0,0,.2);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.gift-select-btn:hover {
    transform: translateX(-50%) scale(1.05);

    box-shadow:
        0 6px 12px rgba(0,0,0,.25);
}

.gift-select-btn:active {
    transform: translateX(-50%) scale(.96);
}


/* =========================================================
   SELECTED GIFT
========================================================= */

.gift-item.selected {
    border-color: #ff7800;

    background:
        linear-gradient(
            180deg,
            #fff7c7 0%,
            #fff0a6 100%
        );

    box-shadow:
        0 0 0 3px rgba(255, 174, 0, .2),
        0 10px 25px rgba(255, 140, 0, .25);
}

.gift-item.selected .gift-select-btn {
    background: linear-gradient(
        180deg,
        #28a745 0%,
        #168c35 100%
    );
}


/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.gift-nav {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #fff;

    color: #f28c00;

    font-size: 20px;

    cursor: pointer;

    z-index: 10;

    box-shadow:
        0 3px 10px rgba(0,0,0,.18);
}

.gift-nav:hover {
    background: #fff4c7;
}

.gift-prev {
    left: 4px;
}

.gift-next {
    right: 4px;
}


/* =========================================================
   DOTS
========================================================= */

.gift-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 6px;

    margin: 5px 0 10px;
}

.gift-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d6d6d6;

    cursor: pointer;

    transition: all .2s ease;
}

.gift-dot.active {
    width: 20px;

    border-radius: 10px;

    background: #ff9d00;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .gift-slider-wrap {
        padding: 10px 35px 5px;
    }

    .gift-slider {
        gap: 8px;
        justify-content: flex-start;
    }

    .gift-item {
        flex: 0 0 125px;
        width: 125px;
        min-width: 125px;

        height: 170px;

        padding: 40px 6px 10px;

        border-radius: 14px;
    }

    .gift-item img {
        width: 88px;
        height: 88px;
    }

    .gift-select-btn {
        min-width: 78px;

        padding: 6px 11px;

        font-size: 10px;
    }

    .gift-item-name {
        font-size: 11px;
    }

    .gift-nav {
        width: 30px;
        height: 30px;

        font-size: 17px;
    }

    .gift-prev {
        left: 2px;
    }

    .gift-next {
        right: 2px;
    }
}





/**Smaller slab THank you modal/
/* =========================================================
   PREMIUM THANK YOU MODAL
========================================================= */

.premium-thank-modal {

    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;

}


.premium-thank-modal.show {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* =========================================================
   BACKDROP
========================================================= */

.premium-thank-backdrop {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(28,72,170,.35),
            transparent 45%
        ),
        rgba(1,8,35,.88);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   DIALOG
========================================================= */

.premium-thank-dialog {

    position: relative;

    width: min(100%, 430px);

    padding:
        42px
        28px
        24px;

    text-align: center;

    border-radius: 28px;

    border: 1px solid
        rgba(247,189,36,.45);

    background:
        linear-gradient(
            155deg,
            #123b9c 0%,
            #071f68 48%,
            #03134d 100%
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 0 60px rgba(247,189,36,.10);

    overflow: hidden;

    transform:
        translateY(25px)
        scale(.94);

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1);

}


.premium-thank-modal.show
.premium-thank-dialog {

    transform:
        translateY(0)
        scale(1);

}


/* =========================================================
   TOP GLOW
========================================================= */

.premium-thank-glow {

    position: absolute;

    width: 240px;
    height: 240px;

    top: -150px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(247,189,36,.22);

    filter: blur(30px);

    pointer-events: none;
}


/* =========================================================
   CHECK ICON
========================================================= */

.premium-thank-icon {

    position: relative;

    z-index: 2;

    width: 82px;
    height: 82px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe48a,
            #f7bd24 55%,
            #b87800
        );

    color: #071f68;

    font-size: 38px;

    box-shadow:
        0 10px 35px rgba(247,189,36,.35),
        0 0 0 7px rgba(247,189,36,.08);

    animation:
        premiumCheckPop .65s
        cubic-bezier(.2,.8,.2,1);

}


@keyframes premiumCheckPop {

    0% {
        opacity: 0;
        transform: scale(.4) rotate(-15deg);
    }

    65% {
        transform: scale(1.12) rotate(4deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }

}


/* =========================================================
   CONTENT
========================================================= */

.premium-thank-content {

    position: relative;

    z-index: 2;
}


.premium-thank-eyebrow {

    margin-bottom: 8px;

    color: #ffe48a;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.premium-thank-content h2 {

    margin: 0;

    color: #fff;

    font-size: clamp(34px, 8vw, 48px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -1.5px;

    text-shadow:
        0 4px 0 #03134d,
        0 8px 20px rgba(0,0,0,.25);
}


.premium-thank-line {

    width: 70px;

    height: 4px;

    margin: 18px auto;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #f7bd24,
            transparent
        );
}


.premium-thank-message {

    margin: 0 auto;

    max-width: 330px;

    color: rgba(255,255,255,.92);

    font-size: 15px;

    line-height: 1.65;

    font-weight: 500;
}


/* =========================================================
   APPRECIATION BADGE
========================================================= */

.premium-thank-badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 20px;

    padding: 9px 15px;

    border-radius: 50px;

    color: #071f68;

    background:
        linear-gradient(
            135deg,
            #ffe48a,
            #f7bd24
        );

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 8px 22px rgba(0,0,0,.18);
}


.premium-thank-badge i {

    font-size: 11px;
}


.premium-thank-small {

    margin: 18px 0 0;

    color: rgba(255,255,255,.65);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .3px;
}


/* =========================================================
   CTA
========================================================= */

.premium-thank-button {

    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 54px;

    margin-top: 25px;

    padding: 14px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffe48a 0%,
            #f7bd24 55%,
            #e7a900 100%
        );

    color: #071f68;

    font-family: inherit;

    font-size: 14px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(0,0,0,.25);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.premium-thank-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(0,0,0,.3);
}


.premium-thank-button:active {

    transform: translateY(0);

}


/* =========================================================
   DECORATIVE STARS
========================================================= */

.premium-thank-star {

    position: absolute;

    color: #f7bd24;

    opacity: .75;

    pointer-events: none;

    animation:
        premiumStarFloat 3s ease-in-out infinite;
}


.star-1 {

    top: 25px;
    left: 24px;

    font-size: 20px;
}


.star-2 {

    top: 90px;
    right: 24px;

    font-size: 14px;

    animation-delay: .8s;
}


.star-3 {

    bottom: 100px;
    left: 20px;

    font-size: 13px;

    animation-delay: 1.4s;
}


@keyframes premiumStarFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(15deg);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .premium-thank-modal {

        padding: 15px;

    }


    .premium-thank-dialog {

        padding:
            36px
            21px
            20px;

        border-radius: 24px;

    }


    .premium-thank-icon {

        width: 72px;
        height: 72px;

        font-size: 32px;

        margin-bottom: 19px;

    }


    .premium-thank-content h2 {

        font-size: 36px;

    }


    .premium-thank-message {

        font-size: 14px;

    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .premium-thank-dialog,
    .premium-thank-modal,
    .premium-thank-icon,
    .premium-thank-star {

        animation: none !important;

        transition: none !important;

    }

}