:root {
    --bg: #f3f5fa;
    --card: #ffffff;
    --line: #dde5f0;

    --primary: #6c2088;
    --primary-dark: #4d1264;

    --text: #202938;
    --muted: #8c97ab;

    --price: #6c2088;

    --green: #2bb673;
    --green-dark: #168334;
    --green-soft: rgba(43, 182, 115, .15);

    --yellow: #f6d24a;
    --yellow-text: #2e2500;

    --shadow: 0 10px 28px rgba(15, 23, 42, .08);
}


/* =========================================
   GLOBAL
========================================= */

* {
    font-family: 'Tajawal', Arial, sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    background: var(--bg);
    margin: 0;
    padding: 0 0 92px;
    color: var(--text);
}

.page-wrap {
    max-width: 860px;
    margin: 0 auto;
}


/* =========================================
   PREMIUM STICKY COUNTDOWN
========================================= */

.countdown-container {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;
    min-height: 84px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;

    padding: 10px 14px;

    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .10), transparent 35%),
        linear-gradient(
            135deg,
            #3d0758 0%,
            #6c2088 48%,
            #9b3ec1 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 8px 25px rgba(82, 20, 110, .28),
        inset 0 -1px 0 rgba(255, 255, 255, .08);

    color: #fff;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.countdown-text-wrap {
    width: 100%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding-right: 6px;

    text-align: right;
}

.countdown-title {
    margin: 0;

    color: #fff;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.countdown-sub {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.88);
}


/* =========================================
   DIGITAL TIMER
========================================= */

.countdown-timer {
    direction: ltr;

    justify-self: center;

    min-width: 160px;

    padding: 8px 16px 5px;

    background:
        linear-gradient(
            180deg,
            #17121b 0%,
            #08060a 100%
        );

    border: 2px solid #4d3b55;
    border-radius: 10px;

    color: #e45cff;

    font-family: 'DS-Digital', monospace !important;

    font-size: 48px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 2px;

    text-align: center;

    text-shadow:
        0 0 5px rgba(228, 92, 255, .9),
        0 0 12px rgba(228, 92, 255, .55);

    box-shadow:
        inset 0 0 12px rgba(0,0,0,.9),
        0 4px 12px rgba(0,0,0,.20);
}


/* =========================================
   TOP ORDER BUTTON
========================================= */

.order-btn {
    justify-self: end;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    min-height: 50px;

    padding: 10px 20px;

    border: 1px solid rgba(255,255,255,.30);
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #ffe678 0%,
            #ffc83d 55%,
            #f3a81d 100%
        );

    color: #422500;

    text-decoration: none;

    font-size: 18px;
    font-weight: 900;

    white-space: nowrap;

    box-shadow:
        0 7px 18px rgba(255,193,38,.30),
        inset 0 1px 0 rgba(255,255,255,.60);

    transition: .2s ease;
}

.order-btn:hover {
    color: #422500;
    text-decoration: none;

    transform: translateY(-1px);
}

.order-btn:active {
    transform: scale(.98);
}


/* =========================================
   HERO
========================================= */

.hero-banner {
    width: 100%;
    display: block;
}


/* =========================================
   MAIN FORM CARD
========================================= */

.main-card {
    background: #fff;

    border: 0;
    border-radius: 26px;

    box-shadow: 0 12px 35px rgba(15, 23, 42, .10);

    padding: 24px;

    margin: 22px 12px 28px;
}

.group {
    margin-bottom: 20px;
}

.form-label-ui {
    display: block;

    margin: 0 6px 8px 0;

    font-size: 15px;
    font-weight: 800;

    color: #202938;

    text-align: right;
}


/* =========================================
   INPUTS
========================================= */

input[type=text],
input[type=tel],
textarea,
select {
    width: 100%;

    border: 1.5px solid #dde3ec;
    border-radius: 16px;

    background: #f8fafc;
    color: #1f2937;

    font-size: 16px;
    font-weight: 500;

    outline: none;

    direction: rtl;
    text-align: right;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

input[type=text],
input[type=tel] {
    height: 58px;
    padding: 0 18px;
}

textarea {
    min-height: 115px;

    padding: 16px 18px;

    resize: none;

    line-height: 1.6;
}

select {
    height: 58px;

    padding: 0 18px;
    padding-left: 44px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #8a94a6 50%),
        linear-gradient(135deg, #8a94a6 50%, transparent 50%);

    background-position:
        18px calc(50% - 3px),
        24px calc(50% - 3px);

    background-size: 6px 6px, 6px 6px;

    background-repeat: no-repeat;
}

input::placeholder,
textarea::placeholder {
    color: #a0a9b8;

    font-size: 15px;

    text-align: right;
}

input[type=text]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
    background-color: #fff;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(108, 32, 136, .10);
}


/* =========================================
   PHONE FIELD
========================================= */

.phone-field {
    display: flex;
    align-items: center;

    direction: ltr;

    width: 100%;
    height: 58px;

    border: 1.5px solid #dde3ec;
    border-radius: 16px;

    overflow: hidden;

    background: #f8fafc;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.phone-field:focus-within {
    background: #fff;

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(108, 32, 136, .10);
}

.country-code-box {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    height: 100%;
    min-width: 112px;

    padding: 0 13px;

    background: #f1f4f8;

    border-right: 1px solid #dde3ec;
}

.country-code-box img {
    width: 26px;
    height: 19px;

    object-fit: cover;

    border-radius: 4px;
}

.country-code-box span {
    font-size: 15px;
    font-weight: 800;

    color: #252d3a;

    direction: ltr;
}

.phone-field input {
    flex: 1;

    min-width: 0;
    height: 100%;

    padding: 0 16px;

    border: 0 !important;
    border-radius: 0 !important;

    outline: 0 !important;

    background: transparent !important;

    box-shadow: none !important;

    font-size: 16px;

    direction: rtl;
    text-align: right;
}


/* =========================================
   OFFERS
========================================= */

.offers {
    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-top: 10px;
}

.offer-card {
    position: relative;

    display: block;

    cursor: pointer;

    border-radius: 20px;
}

.offer-card input {
    display: none;
}

.offer-card .card {
    position: relative;

    overflow: hidden;

    padding: 0;

    background: #fff;

    border: 2px solid #e1e6ed;
    border-radius: 20px;

    box-shadow: 0 5px 16px rgba(15, 23, 42, .05);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease,
        background .2s ease;
}

.offer-card:hover .card {
    transform: translateY(-1px);
}

.offer-card.active .card,
.offer-card input:checked + .card {
    border-color: #8b35aa;

    background: #fff4d0;

    box-shadow:
        0 0 0 3px rgba(139, 53, 170, .12),
        0 8px 20px rgba(87, 26, 110, .10);
}


/* =========================================
   OFFER HEADER
========================================= */

.offer-card .top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    min-height: 48px;

    padding: 9px 16px;

    background:
        linear-gradient(
            135deg,
            #4b0864 0%,
            #742495 55%,
            #a13fc2 100%
        );

    color: #fff;
}

.offer-title {
    font-size: 18px;
    font-weight: 800;

    color: #fff;
}

.badge-discount {
    padding: 6px 11px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;

    background: rgba(255,255,255,.16);

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;
}


/* =========================================
   OFFER BODY
========================================= */

.offer-card .body {
    position: relative;

    display: grid;

    grid-template-columns: 105px 1fr 145px;

    align-items: center;

    gap: 14px;

    padding: 16px 16px 42px;
}

.offer-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-card .body img {
    width: 95px;
    height: 95px;

    object-fit: contain;
}


/* =========================================
   OFFER TEXT
========================================= */

.offer-middle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 8px;

    min-width: 0;
}

.offer-text {
    font-size: 16px;
    font-weight: 800;

    color: #3b4452;

    line-height: 1.5;
}

.desc {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding: 5px 10px;

    border: 1px solid rgba(108, 32, 136, .30);
    border-radius: 8px;

    background: rgba(108, 32, 136, .05);

    color: #742495;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================
   PRICE
========================================= */

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 115px;
}

.old {
    font-size: 15px;
    font-weight: 700;

    color: #9aa3b2;

    text-decoration: line-through;
    text-decoration-color: #8b35aa;
    text-decoration-thickness: 2px;
}

.price {
    margin-top: 3px;

    font-size: 28px;
    font-weight: 900;

    color: var(--price);

    line-height: 1.1;

    white-space: nowrap;
}


/* =========================================
   OFFER BADGES
========================================= */

.badge-1st,
.selected-badge {
    position: absolute;

    bottom: 8px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 100px;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    z-index: 3;
}

.badge-1st {
    padding: 6px 24px;

    background:
        linear-gradient(
            135deg,
            #ffe26b,
            #f5bf2f
        );

    color: #4b2c00;

    box-shadow: 0 5px 12px rgba(245, 191, 47, .25);
}

.selected-badge {
    display: none;

    padding: 7px 20px;

    background:
        linear-gradient(
            135deg,
            #8b35aa,
            #642180
        );

    color: #fff;

    box-shadow: 0 6px 14px rgba(108, 32, 136, .25);
}

.offer-card.active .badge-1st {
    display: none;
}

.offer-card.active .selected-badge {
    display: block;
}


/* =========================================
   OFFER BANNER
========================================= */

.offer-banner-wrap {
    width: 100%;

    display: flex;
    justify-content: center;

    margin: 20px 0 35px;

    direction: rtl;
}

.offer-banner {
    --mag1: #a13fc2;
    --mag2: #7e299c;
    --mag3: #4d1264;

    position: relative;

    width: min(100%, 760px);

    padding: 26px 95px 34px;

    background:
        linear-gradient(
            to bottom,
            var(--mag1) 0%,
            var(--mag2) 45%,
            var(--mag3) 100%
        );

    color: #fff;

    text-align: center;

    border-radius: 14px;

    box-shadow:
        inset 0 8px 18px rgba(255,255,255,.28),
        inset 0 -8px 14px rgba(0,0,0,.14),
        0 8px 20px rgba(0,0,0,.12);

    overflow: visible;
}

.offer-banner::before {
    content: "";

    position: absolute;

    top: 2px;
    left: 22px;
    right: 22px;

    height: 26px;

    border-radius: 50px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.55),
            rgba(255,255,255,0)
        );

    pointer-events: none;
}

.offer-banner::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -28px;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-top: 28px solid #65207f;

    filter: drop-shadow(0 6px 6px rgba(0,0,0,.08));
}

.offer-banner .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.offer-banner .side-arrows {
    width: 90px;
    min-width: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-banner .content {
    flex: 1;
}

.offer-banner .title {
    margin-bottom: 6px;

    font-size: 28px;
    font-weight: 800;

    line-height: 1.25;
}

.offer-banner .subtitle {
    font-size: 19px;
    font-weight: 700;

    line-height: 1.45;
}


/* =========================================
   BANNER ARROWS
========================================= */

.arrow-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 2px;

    animation: bounceArrows 1.3s infinite ease-in-out;
}

.arrow-stack span {
    display: block;

    width: 24px;
    height: 24px;

    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff;

    transform: rotate(45deg);

    opacity: .95;

    filter: drop-shadow(0 2px 2px rgba(0,0,0,.15));
}

@keyframes bounceArrows {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.offer-banner.pulse {
    animation: bannerPulse .7s ease;
}

@keyframes bannerPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.015);
    }

    100% {
        transform: scale(1);
    }
}


/* =========================================
   ORDER TOTAL
========================================= */

.order-total-box {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 8px 0 14px;

    padding: 16px 20px;

    background:
        linear-gradient(
            135deg,
            #fbf4ff,
            #f5e9fb
        );

    border: 2px solid #c68bdd;
    border-radius: 16px;
}

.order-total-label {
    font-size: 19px;
    font-weight: 800;

    color: #333;
}

.order-total-price {
    display: flex;
    align-items: baseline;

    gap: 6px;

    color: #6c2088;

    direction: rtl;
}

#final_total {
    font-size: 30px;
    font-weight: 900;

    line-height: 1;
}

#final_currency {
    font-size: 17px;
    font-weight: 800;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.btn {
    width: 100%;

    margin-top: 5px;

    padding: 17px 20px;

    border: 0;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #8d31ad,
            #5c1578
        );

    color: #fff;

    font-size: 23px;
    font-weight: 800;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(108,32,136,.28);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.btn:hover {
    background:
        linear-gradient(
            135deg,
            #9e39bf,
            #681b84
        );

    color: #fff;

    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    cursor: not-allowed;
}


/* =========================================
   MUTED
========================================= */

.muted {
    margin-top: 10px;

    padding: 14px;

    border: 1px dashed #d8dee9;
    border-radius: 16px;

    background: #fff;

    color: #6c757d;

    font-size: 18px;

    text-align: center;
}


/* =========================================
   BOTTOM STICKY CTA
========================================= */

.bottom-sticky-order {
    position: fixed;

    left: 50%;
    bottom: 10px;

    transform: translateX(-50%);

    z-index: 9998;

    width: calc(100% - 24px);
    max-width: 820px;

    min-height: 66px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 2px;

    padding: 10px 20px;

    overflow: hidden;

    border: 2px solid rgba(255,255,255,.40);
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #ff9f1c 0%,
            #ff6a1a 48%,
            #ff3d6e 100%
        );

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(255, 96, 36, .36),
        0 0 0 3px rgba(255, 177, 40, .10),
        inset 0 1px 0 rgba(255,255,255,.25);

    animation: slimStickyPulse 1.8s ease-in-out infinite;
}

.bottom-sticky-main {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 23px;
    font-weight: 900;

    line-height: 1.05;

    text-shadow: 0 2px 3px rgba(0,0,0,.18);
}

.bottom-sticky-sub {
    position: relative;
    z-index: 2;

    color: #fff8d4;

    font-size: 13px;
    font-weight: 800;
}

.bottom-sticky-order::before {
    content: "";

    position: absolute;

    top: -40%;
    left: -35%;

    width: 22%;
    height: 180%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.50),
            transparent
        );

    transform: rotate(18deg);

    animation: slimStickyShine 2.7s infinite;
}

.bottom-sticky-order::after {
    content: "";

    position: absolute;

    left: 15%;
    right: 15%;
    bottom: -18px;

    height: 28px;

    background: rgba(255, 213, 72, .30);

    filter: blur(16px);

    pointer-events: none;
}

@keyframes slimStickyPulse {

    0%,
    100% {
        transform:
            translateX(-50%)
            scale(1);
    }

    45% {
        transform:
            translateX(-50%)
            scale(1);
    }

    55% {
        transform:
            translateX(-50%)
            scale(1.025);
    }

    65% {
        transform:
            translateX(-50%)
            scale(1);
    }

    75% {
        transform:
            translateX(-50%)
            scale(1.015);
    }

    85% {
        transform:
            translateX(-50%)
            scale(1);
    }
}

@keyframes slimStickyShine {

    0% {
        left: -35%;
    }

    55% {
        left: -35%;
    }

    100% {
        left: 125%;
    }
}

.bottom-sticky-order:hover {
    color: #fff;
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            #ffad26 0%,
            #ff761e 48%,
            #ff4b79 100%
        );

    box-shadow:
        0 12px 32px rgba(255, 96, 36, .44),
        0 0 0 4px rgba(255, 177, 40, .12);
}

.bottom-sticky-order:active {
    animation: none;

    transform:
        translateX(-50%)
        scale(.97);
}


/* =========================================
   FOOTER
========================================= */

.footer-image {
    width: 100%;
    display: block;
}


/* =========================================
   THANK YOU
========================================= */

.thanks-box {
    background: #fff;

    width: 100%;
    max-width: 600px;

    padding: 40px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.thanks-box img {
    width: 100%;
}

.thanks-title {
    font-size: 38px;
    font-weight: 800;

    color: #6c2088;

    margin-bottom: 20px;
}

.thanks-text {
    font-size: 24px;
    line-height: 1.7;

    margin-bottom: 25px;

    color: #333;
}

.order-number {
    background: #faf3ff;

    border: 2px dashed #8b35aa;

    padding: 18px;

    border-radius: 15px;

    font-size: 28px;
    font-weight: 700;

    color: #5c1578;

    margin-bottom: 30px;
}

.whatsapp-btn {
    display: block;

    width: 100%;

    background: #25d366;

    color: #fff;

    text-decoration: none;

    font-size: 26px;
    font-weight: 700;

    padding: 18px;

    border-radius: 16px;

    margin-bottom: 25px;

    transition: .2s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;

    color: #fff;
}

.note {
    font-size: 20px;
    color: #666;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    body {
        padding-bottom: 80px;
    }

    .page-wrap {
        width: 100%;
    }


    /* COUNTDOWN */

    .countdown-container {
        min-height: 70px;

        grid-template-columns: 1fr 1fr 1fr;

        padding: 8px 7px;
    }

    .countdown-title {
        font-size: 12px;
        line-height: 1.25;
    }

    .countdown-timer {
        min-width: 108px;

        padding: 7px 7px 4px;

        font-size: 35px;

        letter-spacing: 1px;

        border-radius: 9px;
    }

    .order-btn {
        min-width: 92px;
        min-height: 42px;

        padding: 8px 10px;

        border-radius: 11px;

        font-size: 14px;
    }


    /* FORM */

    .main-card {
        margin: 14px 8px 22px;

        padding: 14px;

        border-radius: 20px;
    }

    .group {
        margin-bottom: 17px;
    }

    .form-label-ui {
        margin-right: 4px;
        margin-bottom: 7px;

        font-size: 15px;
    }


    /* INPUT */

    input[type=text],
    input[type=tel],
    select {
        height: 56px;

        font-size: 16px;

        border-radius: 14px;
    }

    input[type=text] {
        padding: 0 14px;
    }

    textarea {
        min-height: 105px;

        padding: 15px 14px;

        border-radius: 14px;

        font-size: 16px;
    }

    select {
        padding-right: 14px;
        padding-left: 40px;
    }


    /* PHONE */

    .phone-field {
        height: 56px;

        border-radius: 14px;
    }

    .country-code-box {
        min-width: 104px;

        padding: 0 10px;
    }

    .country-code-box img {
        width: 24px;
        height: 18px;
    }

    .country-code-box span {
        font-size: 14px;
    }

    .phone-field input {
        padding: 0 12px;

        font-size: 16px;
    }


    /* OFFERS */

    .offers {
        gap: 12px;
    }

    .offer-card,
    .offer-card .card {
        border-radius: 17px;
    }

    .offer-card .top {
        min-height: 43px;

        padding: 7px 12px;
    }

    .offer-title {
        margin: 0;

        font-size: 17px;
    }

    .badge-discount {
        padding: 4px 8px;

        font-size: 11px;
    }

    .offer-card .body {
        grid-template-columns: 82px minmax(0, 1fr) 115px;

        gap: 8px;

        padding: 13px 10px 40px;
    }

    .offer-card .body img {
        width: 72px;
        height: 72px;
    }

    .offer-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .desc {
        padding: 4px 7px;

        font-size: 12px;
    }

    .price-container {
        min-width: 95px;
    }

    .old {
        font-size: 13px;
    }

    .price {
        font-size: 23px;
    }

    .badge-1st,
    .selected-badge {
        bottom: 7px;

        font-size: 11px;
    }

    .badge-1st {
        padding: 5px 20px;
    }

    .selected-badge {
        padding: 6px 15px;
    }


    /* OFFER BANNER */

    .offer-banner-wrap {
        margin: 18px 0 32px;
    }

    .offer-banner {
        padding: 22px 20px 30px;

        border-radius: 12px;
    }

    .offer-banner::after {
        bottom: -22px;

        border-left: 110px solid transparent;
        border-right: 110px solid transparent;
        border-top: 22px solid #65207f;
    }

    .offer-banner .inner {
        gap: 10px;
    }

    .offer-banner .side-arrows {
        width: 55px;
        min-width: 55px;
    }

    .offer-banner .title {
        font-size: 21px;
    }

    .offer-banner .subtitle {
        font-size: 15px;
    }

    .arrow-stack span {
        width: 18px;
        height: 18px;

        border-right-width: 5px;
        border-bottom-width: 5px;
    }


    /* TOTAL */

    .order-total-box {
        padding: 14px 16px;

        margin-bottom: 12px;

        border-radius: 14px;
    }

    .order-total-label {
        font-size: 17px;
    }

    #final_total {
        font-size: 27px;
    }

    #final_currency {
        font-size: 15px;
    }


    /* BUTTON */

    .btn {
        padding: 16px;

        border-radius: 15px;

        font-size: 20px;
    }


    /* BOTTOM CTA */

    .bottom-sticky-order {
        bottom: 8px;

        width: calc(100% - 16px);

        min-height: 60px;

        padding: 8px 14px;

        border-radius: 15px;
    }

    .bottom-sticky-main {
        font-size: 21px;
    }

    .bottom-sticky-sub {
        font-size: 12px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .countdown-container {
        min-height: 66px;

        padding: 6px 5px;
    }

    .countdown-title {
        font-size: 11px;
    }

    .countdown-timer {
        min-width: 96px;

        padding: 6px 5px 3px;

        font-size: 31px;
    }

    .order-btn {
        min-width: 78px;
        min-height: 38px;

        padding: 7px;

        font-size: 12px;
    }


    /* FORM */

    .main-card {
        margin-left: 6px;
        margin-right: 6px;

        padding: 12px;
    }


    /* OFFERS */

    .offer-card .body {
        grid-template-columns: 70px minmax(0, 1fr) 103px;

        gap: 6px;

        padding-left: 7px;
        padding-right: 7px;
    }

    .offer-card .body img {
        width: 64px;
        height: 64px;
    }

    .offer-title {
        font-size: 16px;
    }

    .offer-text {
        font-size: 12px;
    }

    .desc {
        font-size: 11px;

        padding: 4px 6px;
    }

    .price {
        font-size: 21px;
    }

    .old {
        font-size: 12px;
    }


    /* OFFER BANNER */

    .offer-banner {
        padding-left: 8px;
        padding-right: 8px;
    }

    .offer-banner .side-arrows {
        width: 40px;
        min-width: 40px;
    }

    .offer-banner .title {
        font-size: 19px;
    }

    .offer-banner .subtitle {
        font-size: 13px;
    }

    .arrow-stack span {
        width: 15px;
        height: 15px;
    }


    /* THANKS */

    .thanks-title {
        font-size: 32px;
    }

    .thanks-text {
        font-size: 22px;
    }

    .order-number {
        font-size: 24px;
    }

    .whatsapp-btn {
        font-size: 22px;
    }
}