:root {
    --bg: #f3f5fa;
    --card: #ffffff;
    --line: #dde5f0;
    --primary: #a22121;
    --primary-dark: #8b1717;
    --text: #202938;
    --muted: #8c97ab;
    --price: #144f57;
    --green: #2bb673;
    --green-soft: rgba(43, 182, 115, .15);
    --yellow: #f6d24a;
    --yellow-text: #2e2500;
    --shadow: 0 10px 28px rgba(15, 23, 42, .08);
    --off1: #0a6c78;
    --off2: #214950;
    --off3: #1d646e;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.countdown-container {
    position: sticky;
    top: 0;
    z-index: 9999;
        background: linear-gradient(135deg, #ce4545, #d32424);
    color: #fff;
    padding: 0px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    box-shadow: 0 10px 24px rgba(139, 23, 23, .22);
    gap: 12px;
}

.countdown-text-wrap {
    min-width: 0;
    flex: 1;
    color: #fff;
    text-align: right;
}

.countdown-title {
    margin: 0 0 4px;
    font-size: 19px;
    line-height: 1.2;
    color: #fff;
}

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

.countdown-timer {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    min-width: 130px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, .08);
}

.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #f7db63, #f1c93d);
    color: var(--yellow-text);
    min-width: 148px;
    padding: 13px 18px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(246, 210, 74, .32);
    white-space: nowrap;
    transition: .25s ease;
}

.order-btn:hover {
    color: var(--yellow-text);
    text-decoration: none;
    transform: translateY(-1px);
}

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

.main-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 18px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.group {
    margin-bottom: 16px;
}

.form-label-ui {
    display: block;
    margin-bottom: 6px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
    text-align: right;
}

input[type=text],
input[type=tel],
textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid teal;
    border-radius: 16px;
    outline: none;
    background: #f6d24a2e;
    color: #1f2937;
    transition: .2s ease;
    direction: rtl;
    text-align: right;
}

select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    font-size: 14px;
    border: 1px solid teal;
    border-radius: 16px;
    outline: none;
    background: #f9fafc;
    color: #1f2937;
    transition: .2s ease;
    direction: rtl;
    text-align: right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #7f8a9d 50%),
        linear-gradient(135deg, #7f8a9d 50%, transparent 50%);
    background-position:
        16px calc(50% - 3px),
        22px calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-left: 40px;
}

select:focus {
    border-color: #cc6f6f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(162, 33, 33, .08);
}

input::placeholder,
textarea::placeholder {
    color: #9aa4b6;
    font-size: 14px;
    text-align: right;
}

input:focus,
textarea:focus {
    border-color: #cc6f6f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(162, 33, 33, .08);
}

textarea {
    min-height: 110px;
    resize: none;
}

input[type=text]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
    border-color: #cc6f6f;
    box-shadow: 0 0 0 4px rgba(162, 33, 33, .08);
}

.btn {
    padding: 18px 22px;
    font-size: 24px;
    background: linear-gradient(135deg, #28a745, #1f8a39);
    color: #fff;
    border: 0;
    border-radius: 18px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 10px 22px rgba(31, 138, 57, .22);
}

.btn:hover {
    background: linear-gradient(135deg, #23913c, #1c7c33);
    color: #fff;
    transform: translateY(-1px);
}

.offers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.offer-card {
    position: relative;
    display: block;
    border-radius: 24px;
    cursor: pointer;
}

.offer-card input {
    display: none;
}

.offer-card .card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid #105862;
    ;
    border-radius: 20px;
    overflow: hidden;
    transition: .25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    padding: 0;
}

.offer-card.active .card,
.offer-card input:checked+.card {
    border-color: #770946;
    box-shadow: 0 0 0 4px var(--green-soft);
    background: #feca024a;
}

.offer-card .top {
    background: linear-gradient(135deg, #1a3e44, #066f7c);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

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

.badge-discount {
    background: #f0b92b;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #000000;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
}

.offer-card .body {
    padding: 12px 12px;
    display: grid;
    grid-template-columns: 80px 1fr 110px;
    align-items: center;
    gap: 10px;
}

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

.offer-card .body img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.offer-middle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.desc {
    display: inline-block;
    width: max-content;
    font-size: 11px;
    color: white;
    background-color: #ff0000;
    padding: 5px 8px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
}

.offer-text {
    font-size: 14px;
    color: #0e4046;
    line-height: 1.4;
    min-width: 0;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.old {
    font-size: 16px;
    color: #ff0000a8;
    text-decoration: line-through;
    font-weight: 500;
    text-decoration-color: darkred;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: var(--price);
    line-height: 1;

}




.selected-badge {
    display: none;
    position: absolute;
    bottom: 8px;
    background: #038e4b;
    color: #fff;
    padding: 8px 12px;
    border-radius: 300px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(43, 182, 115, .25);
    z-index: 3;
}

.badge-1st {
    position: absolute;
    bottom: 8px;
    background: #8e05794d;
    color: #043a40;
    padding: 5px 10px;
    border-radius: 200px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(43, 182, 115, .25);
    z-index: 3;
}

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

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

.muted {
    color: #6c757d;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    border: 1px dashed #d8dee9;
}

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

@media (max-width: 768px) {


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

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

    .countdown-timer {
        min-width: 92px;
        padding: 8px 10px;
        font-size: 18px;
    }

    .order-btn {
        min-width: auto;
        padding: 10px 14px;
        border-radius: 14px;
        font-size: 15px;
    }

    .main-card {
        padding: 12px;
        border-radius: 18px;
    }

    .form-label-ui {
        font-size: 15px;
    }

    input[type=text],
    input[type=tel],
    select,
    textarea {
        font-size: 15px;
        padding: 13px 12px;
        border-radius: 14px;
        background-color: #f6d24a2e;
        border-color: teal;
    }

    textarea {
        min-height: 100px;
        padding: 22px 18px;
    }

    .btn {
        font-size: 20px;
        padding: 16px;
        border-radius: 16px;
    }

    .offer-card .card {
        border-radius: 20px;
    }

    .offer-card .top {
        padding: 10px 12px;
        font-size: 15px;
    }

    .offer-title {
        font-size: 17px;
        margin-right: 10px;
    }

    .badge-discount {
        font-size: 11px;
        padding: 5px 9px;
    }

    .offer-card .body {
        grid-template-columns: 90px 1fr 100px;
        padding: 10px;
    }

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

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

    .price {
        font-size: 22px;
    }

    .old {
        font-size: 12px;
    }


    .desc {
        font-size: 11px;
        padding: 6px 9px;
    }

    .price-container {
        min-width: 80px;
        margin-bottom: auto;
    }


    .selected-badge {
        bottom: 8px;
        font-size: 12px;
        font-weight: 700;
        padding: 6px 9px;
    }

    .muted {
        font-size: 15px;
    }
}



.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: #1e7e34;
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.order-number {
    background: #f1f8f4;
    border: 2px dashed #28a745;
    padding: 18px;
    border-radius: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #155724;
    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;
}

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

@media(max-width:480px) {
    .thanks-title {
        font-size: 32px;
    }

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

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

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


.offer-banner-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
    direction: rtl;
}

.offer-banner {
    position: relative;
    width: min(100%, 760px);
    color: #fff;
    text-align: center;
    padding: 26px 95px 34px;
    background: linear-gradient(to bottom, var(--off1) 0%, var(--off2) 45%, var(--off3) 100%);
    border-radius: 0 0 14px 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 var(--off1);
    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;
    justify-content: center;
    align-items: center;
}

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

.offer-banner .title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 6px;
}

.offer-banner .subtitle {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.45;
}

/* الأسهم */
.arrow-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    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);
    }
}

@media (max-width: 768px) {
    .offer-banner {
        padding: 22px 20px 30px;
    }

    .offer-banner::after {
        border-left: 110px solid transparent;
        border-right: 110px solid transparent;
        border-top: 22px solid var(--off1);
        ;
        bottom: -22px;
    }

    .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: 5px solid #fff;
        border-bottom: 5px solid #fff;
    }
}


.custom-carousel {
    margin: 20px 0;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.custom-carousel .carousel-inner {
    border-radius: 22px;
}

.custom-carousel .carousel-item img {
    width: 100%;
    display: block;
    height: auto;
}

.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
    width: 60px;
    opacity: 1;
}

.custom-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(70, 70, 70, 0.88);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.custom-carousel .carousel-control-prev {
    left: 8px;
}

.custom-carousel .carousel-control-next {
    right: 8px;
}

@media (max-width: 768px) {
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .custom-carousel .carousel-control-prev,
    .custom-carousel .carousel-control-next {
        width: 50px;
    }
}

.review-slider {
    position: relative;
    width: 100%;
    margin: 20px 0;
}

.review-slider-window {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.review-slider-track {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.review-slide {
    display: none;
    width: 100%;
}

.review-slide.active {
    display: block;
}

.review-slide img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 20px;
}

.review-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(70, 70, 70, 0.85);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-slider-btn-prev {
    left: 10px;
}

.review-slider-btn-next {
    right: 10px;
}

@media (max-width: 768px) {
    .review-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .review-slider-btn-prev {
        left: 8px;
    }

    .review-slider-btn-next {
        right: 8px;
    }
}


:root {
    --bg: #f6f7fb;
    --card: #ffffff;
    --text: #172033;
    --muted: #667085;
    --line: #e5e7eb;

    --orange: #ff7a1a;
    --orange-dark: #e85f00;
    --orange-soft: #fff3e8;

    --green: #12a150;
    --green-dark: #087a39;
    --green-soft: #e9f9f0;

    --dark: #111827;
    --dark-soft: #f1f5f9;

    --shadow: 0 18px 45px rgba(15, 23, 42, .09);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, .06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 26, .12), transparent 32%),
        linear-gradient(180deg, #fff 0%, var(--bg) 45%, #fff 100%);
    color: var(--text);
}

.lp-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 14px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #fff7ef 100%);
    border: 1px solid #ffe1c8;
    border-radius: 30px;
    padding: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-pill {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -.5px;
    color: var(--dark);
}

.hero p {
    margin: 12px 0 16px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-points span {
    background: #fff;
    border: 1px solid var(--line);
    color: #344054;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(255, 122, 26, .28);
}

.hero-image {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0dd, #ffe1c3);
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: min(88%, 320px);
    max-height: 310px;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(15, 23, 42, .18));
}

.hero-save {
    position: absolute;
    left: 10px;
    bottom: 22px;
    z-index: 3;
    background: var(--dark);
    color: #fff;
    border-radius: 18px;
    padding: 12px 16px;
    font-size: 18px;
    font-weight: 900;
    transform: rotate(-4deg);
}

.order-shell {
    margin-top: 18px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.section-head {
    text-align: center;
    padding: 8px 8px 18px;
}

.section-head span {
    color: var(--orange-dark);
    font-weight: 900;
    font-size: 14px;
}

.section-head h2 {
    margin: 6px 0;
    color: var(--dark);
    font-size: 28px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #263247;
    font-size: 15px;
    font-weight: 900;
}

select,
input,
textarea {
    width: 100%;
    border: 1px solid teal;
    background: #f6d24a2e;
    color: var(--text);
    border-radius: 18px;
    padding: 15px 16px;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    transition: .2s ease;
    box-shadow: 0 7px 18px rgba(15, 23, 42, .035);
}

select {
    height: 56px;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #667085 50%),
        linear-gradient(135deg, #667085 50%, transparent 50%);
    background-position:
        18px calc(50% - 3px),
        24px calc(50% - 3px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-left: 44px;
}

textarea {
    min-height: 104px;
    resize: vertical;
    line-height: 1.7;
    border-color: teal;
}

input::placeholder,
textarea::placeholder {
    color: #98a2b3;
    font-weight: 600;
}

select:focus,
input:focus,
textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 122, 26, .13);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 14px 0 16px;
}

.offer-card {
    cursor: pointer;
    min-width: 0;
}

.offer-card input {
    display: none;
}

.offer-inner {
    height: 100%;
    min-height: 355px;
    position: relative;
    background: #e1f6ffa3;
    border: 2px solid #d8dee9;
    border-radius: 26px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    transition: .22s ease;
    box-shadow:
        0 16px 34px rgba(15, 23, 42, .10),
        inset 0 0 0 1px rgba(255, 255, 255, .8);
    overflow: hidden;
}

.offer-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    pointer-events: none;
    
}

.offer-card:hover .offer-inner {
    transform: translateY(-4px);
    border-color: #ffb36f;
    box-shadow:
        0 22px 44px rgba(15, 23, 42, .14),
        0 0 0 4px rgba(255, 122, 26, .08);
}

.offer-card.active .offer-inner {
    border-color: var(--orange);
    background: linear-gradient(180deg, #ffdebd 0%, #ffd9be 75%);
    box-shadow:
        0 0 0 4px rgba(255, 122, 26, .18),
        0 22px 48px rgba(255, 122, 26, .18);
}

.offer-card.recommended .offer-inner {
    border-color: var(--green);
}

.offer-card.recommended.active .offer-inner {
    box-shadow:
        0 0 0 4px rgba(18, 161, 80, .13),
        0 18px 38px rgba(18, 161, 80, .14);
}

.recommend-strip {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.recommended .offer-inner {
    padding-top: 46px;
}

.offer-badge {
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.offer-badge.soft {
    background: var(--dark-soft);
    color: var(--dark);
}

.offer-badge.orange {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.offer-badge.green {
    background: var(--green-soft);
    color: var(--green-dark);
}

.offer-badge.dark {
    background: var(--dark);
    color: #fff;
}

.offer-check {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eef2f7;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: .2s ease;
}

.recommended .offer-check {
    top: 48px;
}

.offer-card.active .offer-check {
    background: var(--green);
    color: #ffffff;
}

.offer-img {
    height: 115px;
    border-radius: 20px;
    /* background: linear-gradient(135deg, #f8fafc, #fff3e8); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-img img {
    max-width: 100%;
    max-height: 105px;
    object-fit: contain;
    filter: drop-shadow(0 12px 14px rgba(15, 23, 42, .13));
}

.offer-info h3 {
    margin: 0;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.offer-info p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.offer-price {
    margin-top: auto;
    border-top: 1px dashed #e4e7ec;
}

.offer-price .old {
    display: block;
    color: #ff0000;
    font-size: 15px;
    font-weight: 800;
    text-decoration: line-through;
    margin-bottom: 3px;
}

.offer-price .price {
    display: block;
    color: var(--orange-dark);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.5px;
}

.offer-price small {
    display: block;
    margin-top: 8px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
}

.trust-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px 0;
}

.trust-box div {
    background: #f8fafc;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    padding: 13px;
}

.trust-box strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 3px;
}

.trust-box span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.buyer-form {
    background: #fbfcfe;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    padding: 16px;
}

.phone-field {
    direction: ltr;
    display: flex;
    align-items: center;
    border: 1px solid teal;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 7px 18px rgba(15, 23, 42, .035);
    transition: .2s ease;
}

.phone-field:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 122, 26, .13);
}

.phone-prefix {
    min-width: 105px;
    height: 56px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #f3f6fa;
    border-right: 1px solid #e4e7ec;
    color: var(--dark);
    font-weight: 900;
    user-select: none;
    flex-shrink: 0;
}

#customer_phone {
    direction: ltr;
    text-align: left;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    height: 56px;
    padding: 0 15px;
}

#customer_phone:focus {
    box-shadow: none;
}

.submit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    border-radius: 20px;
    padding: 17px 18px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 16px 30px rgba(18, 161, 80, .24);
    transition: .2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn span {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.submit-btn small {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    opacity: .9;
    font-weight: 700;
}

.form-note {
    margin: 12px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 210px;
    }
}

@media (max-width: 560px) {
    .lp-page {
        padding: 10px;
    }

    .hero {
        border-radius: 24px;
        padding: 18px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-cta {
        width: 100%;
        height: 54px;
    }

    .hero-image {
        min-height: 185px;
    }

    .hero-image::before {
        width: 210px;
        height: 210px;
    }

    .hero-image img {
        max-height: 220px;
    }

    .hero-save {
        font-size: 14px;
        padding: 9px 12px;
    }

    .order-shell {
        padding: 12px;
        border-radius: 24px;
    }

    .section-head h2 {
        font-size: 23px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .offer-inner {
        min-height: auto;
        display: grid;
        grid-template-columns: 92px 1fr;
        grid-template-areas:
            "img badge"
            "img info"
            "price price";
        gap: 10px;
        padding: 12px;
        border-radius: 21px;
    }

    .recommended .offer-inner {
        padding-top: 44px;
    }

    .recommend-strip {
        height: 32px;
    }

    .offer-badge {
        grid-area: badge;
    }

    .offer-img {
        grid-area: img;
        height: 85px;
        border-radius: 18px;
    }

    .offer-img img {
        max-height: 100px;
    }

    .offer-info {
        grid-area: info;
    }

    .offer-info h3 {
        font-size: 17px;
    }

    .offer-info p {
        font-size: 13px;
        line-height: 1.45;
    }

    .offer-price {
        grid-area: price;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        /* gap: 8px; */
        margin-top: 0;
    }

    .offer-price .old {
        grid-column: 2;
        text-align: left;
        font-size: 14px;
    }

    .offer-price .price {
        grid-column: 2;
        font-size: 28px;
        text-align: left;
    }

    .offer-price small {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
        margin-top: 0;
    }

    .offer-check {
        top: 12px;
        left: 12px;
    }

    .recommended .offer-check {
        top: 44px;
    }

    .trust-box {
        grid-template-columns: 1fr;
    }

    .buyer-form {
        padding: 12px;
    }

    select,
    input,
    textarea {
        font-size: 15px;
        border-radius: 16px;
    }

    .phone-prefix {
        min-width: 94px;
    }

    .submit-btn span {
        font-size: 20px;
    }
}

.deal-timer {
    position: sticky;
    top: 10px;
    z-index: 50;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #111827, #263247);
    color: #fff;
    border-radius: 22px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 16px 34px rgba(17, 24, 39, .18);
}

.deal-timer strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
}

.deal-timer span {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
}

.timer-box {
    direction: ltr;
    min-width: 108px;
    height: 50px;
    border-radius: 16px;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 28px;
    font-weight: 900;
}

.timer-box span {
    color: #111827;
    font-size: 28px;
}

.timer-box small {
    color: var(--orange);
    font-size: 24px;
    font-weight: 900;
}

@media (max-width: 560px) {
    .deal-timer {
        top: 8px;
        border-radius: 18px;
        padding: 11px 12px;
    }

    .deal-timer strong {
        font-size: 15px;
    }

    .deal-timer span {
        font-size: 12px;
    }

    .timer-box {
        min-width: 94px;
        height: 44px;
        font-size: 24px;
    }

    .timer-box span {
        font-size: 24px;
    }
}
.order-summary {
    margin: 12px 0 18px;
    padding: 14px;
    background: #fff7e6;
    border: 1px dashed #f59e0b;
    border-radius: 14px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #92400e;
}

#orderTotal {
    color: #b91c1c;
    font-size: 18px;
}

.offer-card .offer-inner {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    transition: .25s ease;
    border-color: teal;
}

.offer-card.active .offer-inner,
.offer-card input:checked + .offer-inner {
    background: linear-gradient(135deg, #ffc27838, #ffe478b0);
    border-color: #ff7a1a;
    box-shadow: 0 0 0 4px rgba(255, 122, 26, .18),
                0 14px 30px rgba(255, 122, 26, .18);
}

.offer-card.active .offer-check,
.offer-card input:checked + .offer-inner .offer-check {
    background: #ff7a1a;
    color: #fff;
    opacity: 1;
}

.offer-card.active h3,
.offer-card.active .price {
    color: #111827;
}


.countdown-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    padding: 8px 10px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.count-unit {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 2px 5px rgba(255,255,255,.7),
        0 8px 18px rgba(0,0,0,.18);
}

.count-unit span {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    color: #111827;
}

.count-unit small {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 800;
    color: #6b7280;
}

.count-separator {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-top: -10px;
}

@media (max-width:768px) {
    .count-unit {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .count-unit span {
        font-size: 24px;
    }

    .count-separator {
        font-size: 26px;
    }
}

.thanks-page {
    min-height: 100vh;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(18, 161, 80, .18), transparent 35%),
        linear-gradient(180deg, #f8fafc 0%, #eef7f1 100%);
}

.thanks-card {
    width: 100%;
    max-width: 540px;
    background: #fff;
    border-radius: 32px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
    border: 1px solid #e5e7eb;
}

.success-icon,
.error-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 46px;
    font-weight: 900;
}

.success-icon {
    background: linear-gradient(135deg, #22c55e, #15803d);
    box-shadow: 0 16px 35px rgba(34, 197, 94, .32);
}

.error-icon {
    background: linear-gradient(135deg, #ef4444, #991b1b);
    box-shadow: 0 16px 35px rgba(239, 68, 68, .26);
}

.thanks-card h1 {
    margin: 0;
    color: #111827;
    font-size: 30px;
    font-weight: 900;
}

.thanks-sub {
    margin: 12px 0 20px;
    color: #667085;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
}

.order-info {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.order-info div {
    background: #f8fafc;
    border: 1px dashed #22c55e;
    border-radius: 18px;
    padding: 14px;
}

.order-info span {
    display: block;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
}

.order-info strong {
    display: block;
    color: #15803d;
    font-size: 26px;
    font-weight: 900;
}

.steps-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 18px 0 20px;
}

.steps-box div {
    background: #ecfdf3;
    border-radius: 16px;
    padding: 12px 8px;
}

.steps-box b {
    width: 28px;
    height: 28px;
    margin: 0 auto 7px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-box span {
    color: #14532d;
    font-size: 13px;
    font-weight: 800;
}

.whatsapp-confirm {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c4a);
    color: #fff;
    text-decoration: none;
    font-size: 21px;
    font-weight: 900;
    padding: 17px;
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(37, 211, 102, .26);
}

.phone-note {
    margin-top: 14px;
    color: #475467;
    font-size: 15px;
    font-weight: 800;
}

@media(max-width: 480px) {
    .thanks-card {
        padding: 24px 16px;
        border-radius: 26px;
    }

    .thanks-card h1 {
        font-size: 25px;
    }

    .thanks-sub {
        font-size: 16px;
    }

    .steps-box span {
        font-size: 12px;
    }
}
.thanks-image {
    margin-bottom: 18px;
}

.thanks-image img {
    width: 100%;
    max-width: 260px;
    border-radius: 24px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .16);
}

.thanks-image img {
    animation: floatImage 3s ease-in-out infinite;
}

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

    50% {
        transform: translateY(-8px);
    }
}