:root {
    --bg: #0F2A22;
    --bg-alt: #14352b;
    --cream: #FDF0D4;
    --gold: #CBA35C;
    --orange: #f16334;
    --text: #ffffff;
    --muted: #d7e4dc;
    --dark-text: #0F2A22;
    --line: rgba(253, 240, 212, 0.18);
    --radius: 14px;
    --font: "Hind Siliguri", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
    margin-top: 0;
    line-height: 1.35;
    font-weight: 700;
    word-wrap: break-word;
}
p { margin-top: 0; word-wrap: break-word; }

.container {
    width: min(1100px, calc(100% - 1.5rem));
    margin: 0 auto;
}
.narrow {
    width: min(720px, calc(100% - 1.5rem));
    margin-inline: auto;
}

.top-banner {
    background: linear-gradient(90deg, #FDF0D4, #f7e4b5 50%, #FDF0D4);
    color: var(--dark-text);
    text-align: center;
    padding: 0.7rem 0.85rem;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(241, 99, 52, 0.25);
    animation: pulse-dot 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.85); opacity: 0.7; }
}

/* Hero */
.hero {
    padding: 2.5rem 0 2rem;
    background:
        radial-gradient(ellipse 60% 50% at 85% 30%, rgba(203, 163, 92, 0.14), transparent 55%),
        linear-gradient(180deg, #0F2A22 0%, #12352b 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}
.hero-logo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 0 0 3px rgba(203, 163, 92, 0.35);
}
.hero h1 {
    font-size: clamp(1.35rem, 4vw, 2.35rem);
    margin-bottom: 0.5rem;
}
.hero-sub {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.lead {
    color: var(--muted);
    margin-bottom: 1.1rem;
    font-size: 0.98rem;
}
.lead strong { color: #fff; }

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
}
.hero-points li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.mini-note {
    margin: 0.85rem 0 0;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.92rem;
}

.hero-video-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(253, 240, 212, 0.15);
    background: #000;
}
.hero-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    box-shadow: inset 0 0 40px rgba(15, 42, 34, 0.25);
}
.hero-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #0a1a14;
    pointer-events: none;
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}
.hero-main-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.55rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    min-height: 48px;
    text-align: center;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(241, 99, 52, 0.35);
}
.btn-primary {
    background: linear-gradient(135deg, #ff7a45, var(--orange) 55%, #d94e1f);
    color: #fff;
}
.btn-block { width: 100%; border-radius: 12px; }

.section { padding: 3.25rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 {
    text-align: center;
    font-size: clamp(1.25rem, 3.2vw, 2rem);
    margin-bottom: 1.1rem;
    padding: 0 0.25rem;
}
.section-lead {
    text-align: center;
    color: var(--muted);
    max-width: 780px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    padding: 0 0.25rem;
}
.center { text-align: center; margin-top: 1.5rem; }

.img-row {
    display: grid;
    gap: 0.95rem;
}
.img-row.three { grid-template-columns: repeat(3, 1fr); }
.img-row.four { grid-template-columns: repeat(4, 1fr); }
.img-row.two { grid-template-columns: repeat(2, 1fr); }
.img-row img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.img-row img:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.note-box {
    margin: 1.35rem auto 0;
    max-width: 860px;
    background: rgba(253, 240, 212, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
    padding: 0.9rem 1rem;
    color: var(--muted);
    font-size: 0.94rem;
    text-align: left;
}
.note-box strong { color: var(--cream); }

.trust-row,
.delivery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.trust-row article,
.delivery-row article {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem 0.9rem;
}
.trust-row img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    margin: 0 auto 0.75rem;
    background: #fff;
    border-radius: 50%;
    padding: 0.3rem;
}
.trust-row h3,
.delivery-row h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.trust-row p,
.delivery-row p {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Order */
.order-section {
    background: linear-gradient(180deg, #14352b, #0F2A22);
}
.order-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.25rem;
    align-items: start;
}
.order-intro h2 { text-align: left; }
.order-intro p { color: var(--muted); font-size: 0.95rem; }
.product-card {
    margin-top: 1.1rem;
    background: linear-gradient(160deg, rgba(253, 240, 212, 0.1), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem;
    text-align: center;
}
.product-card img {
    width: 170px;
    margin: 0.7rem auto;
    border-radius: 10px;
}
.product-card-note {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}
.discount-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--dark-text);
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
}
.price {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: baseline;
    margin: 0.4rem 0 0;
}
.price .old,
.price-pair .old,
.sum-old,
.buy-list .old,
.new-inline { }
.price .old,
.price-pair .old,
.sum-old,
.buy-list .old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
}
.price .new,
.price-pair .new,
.new-inline {
    font-size: 1.55rem;
    color: var(--gold);
    font-weight: 800;
}
.new-inline { font-size: 1.05em; }
.price-pair {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.price-pair.on-btn .old,
.btn .sum-old,
.btn .old {
    text-decoration: line-through;
    opacity: 0.75;
    font-weight: 500;
    font-size: 0.9em;
    margin-right: 0.2rem;
}
.price-pair.on-btn .new {
    font-size: 1em;
    color: inherit;
}
.sum-line strong {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.order-form-wrap {
    background: #fff;
    color: var(--dark-text);
    border-radius: 18px;
    padding: 1.35rem;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
}
.order-form-wrap h3 { margin-bottom: 0.9rem; font-size: 1.15rem; }
.order-form { display: grid; gap: 0.85rem; }
.order-form label {
    display: grid;
    gap: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
}
.order-form input,
.order-form textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
    padding: 0.8rem 0.85rem;
    font: inherit;
    font-size: 16px; /* prevents iOS zoom */
    background: #fff;
    color: #111;
}
.order-form input:focus,
.order-form textarea:focus {
    outline: 2px solid rgba(241, 99, 52, 0.35);
    border-color: var(--orange);
}
.qty-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 8px;
    background: var(--bg);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    flex-shrink: 0;
}
#quantity {
    width: 4.2rem;
    text-align: center;
}
.order-summary {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 0.9rem;
}
.order-summary h4 {
    margin-bottom: 0.55rem;
    font-size: 1rem;
}
.sum-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.92rem;
    text-align: left;
}
.sum-line span:first-child {
    flex: 1;
    min-width: 0;
}
.sum-line strong {
    flex-shrink: 0;
    text-align: right;
}
.sum-line.total {
    border-bottom: 0;
    padding-top: 0.65rem;
    font-size: 1rem;
}
.sum-line .free { color: #1a7a45; }
.cod-note {
    margin: 0.65rem 0 0;
    color: #555;
    font-size: 0.85rem;
    text-align: left;
}

.alert {
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.7rem;
}
.alert-error {
    background: #ffe8e8;
    color: #8a1f1f;
    font-size: 0.9rem;
}
.alert ul { margin: 0; padding-left: 1.1rem; }

/* FAQ — same container width as order section */
.faq h2 {
    margin-bottom: 1.15rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    align-items: start;
}
.faq details {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.faq details[open] {
    border-color: rgba(203, 163, 92, 0.45);
    background: rgba(253, 240, 212, 0.06);
}
.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.45;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: left;
    color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
    color: var(--muted);
    margin: 0.55rem 0 0.15rem;
    font-size: 0.82rem;
    line-height: 1.55;
    text-align: left;
    padding-right: 1.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}
.content-grid article {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 0.95rem;
    text-align: left;
}
.content-grid h3 {
    color: var(--gold);
    font-size: 0.98rem;
    margin-bottom: 0.4rem;
}
.content-grid p {
    color: var(--muted);
    margin: 0;
    font-size: 0.88rem;
}

.dual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.dual-content h2 {
    text-align: left;
    margin-bottom: 0.9rem;
}
.steps-list,
.check-list {
    color: var(--muted);
    padding-left: 1.15rem;
    margin: 0 0 0.9rem;
    text-align: left;
    font-size: 0.92rem;
}
.steps-list li,
.check-list li { margin-bottom: 0.6rem; }
.steps-list strong,
.check-list strong { color: #fff; }
.sub-head {
    margin: 1.1rem 0 0.65rem;
    color: var(--gold);
    font-size: 1rem;
    text-align: left;
}

/* Customer Satisfaction */
.satisfaction {
    position: relative;
    overflow: hidden;
}
.sat-eyebrow {
    text-align: center;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin: 0 0 0.55rem;
}
.sat-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin: 0 0 1.5rem;
}
.sat-stat {
    text-align: center;
    background: linear-gradient(160deg, rgba(253, 240, 212, 0.14), rgba(255,255,255,0.04));
    border: 1px solid rgba(203, 163, 92, 0.35);
    border-radius: 16px;
    padding: 1.15rem 0.7rem;
}
.sat-stat strong {
    display: block;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.sat-stat span {
    color: var(--muted);
    font-size: 0.84rem;
}
.sat-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}
.sat-reasons article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 0.95rem;
    text-align: left;
}
.sat-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(203, 163, 92, 0.2);
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
}
.sat-reasons h3 {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
}
.sat-reasons p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}
.sat-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(110deg, rgba(241, 99, 52, 0.18), rgba(203, 163, 92, 0.16));
    border: 1px solid rgba(241, 99, 52, 0.35);
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
}
.sat-cta-box h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}
.sat-cta-box p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.sat-cta-box strong { color: var(--cream); }
.order-badge {
    display: inline-block;
    background: rgba(241, 99, 52, 0.18);
    color: #ffb08a;
    border: 1px solid rgba(241, 99, 52, 0.35);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}
.order-trust-list {
    list-style: none;
    padding: 0;
    margin: 0.85rem 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.75rem;
}
.order-trust-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.88rem;
}
.order-trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.form-safe-note {
    margin: 0.75rem 0 0;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Floating Messenger / WhatsApp */
.contact-float {
    position: fixed;
    right: 14px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.28);
    text-decoration: none !important;
    transition: transform .15s ease, filter .15s ease;
}
.contact-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.contact-ico {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
}
.contact-messenger { background: linear-gradient(135deg, #0084ff, #0066d6); }
.contact-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }
@media (max-width: 640px) {
    .contact-float { right: 10px; bottom: 14px; }
    .contact-label { display: none; }
    .contact-btn {
        width: 48px;
        height: 48px;
        min-height: 48px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Hero actions & chips */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}
.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(253, 240, 212, 0.35);
    border-radius: 999px;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: #fff;
    box-shadow: none;
}
.btn-sm {
    min-height: 40px;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
}
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
}
.hero-chips span {
    background: rgba(253, 240, 212, 0.1);
    border: 1px solid rgba(203, 163, 92, 0.3);
    color: var(--cream);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Urgency bar — becomes fixed on scroll */
.urgency-bar {
    background: linear-gradient(90deg, #c2410c, #f16334 45%, #c2410c);
    padding: 0.55rem 0;
    width: 100%;
}
.urgency-bar.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
.urgency-spacer {
    height: 0;
    width: 100%;
}
.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.urgency-inner p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
}
.urgency-text-short { display: none; }
.urgency-inner em {
    font-style: normal;
    font-weight: 800;
    color: #fff4d6;
}
.urgency-bar .btn-primary {
    background: #fff;
    color: #c2410c;
    flex-shrink: 0;
}
.urgency-bar .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Product gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}
.gallery-main {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}
.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.gallery-side img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.product-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}
.product-highlights div {
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.95rem 0.6rem;
}
.product-highlights strong {
    display: block;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.product-highlights span {
    color: var(--muted);
    font-size: 0.82rem;
}

/* Buy now conversion block */
.buy-now-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: center;
}
.buy-now-media {
    position: relative;
}
.buy-now-media > img:first-child {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.buy-now-float {
    position: absolute;
    right: -4%;
    bottom: -8%;
    width: 42%;
    border-radius: 14px;
    border: 3px solid rgba(15, 42, 34, 0.85);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.buy-now-copy h2 {
    text-align: left;
    margin-bottom: 0.7rem;
}
.buy-lead {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.buy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
}
.buy-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.35rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}
.buy-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 800;
}
.buy-list strong { color: #fff; }
.buy-price-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    background: rgba(253, 240, 212, 0.1);
    border: 1px solid rgba(203, 163, 92, 0.35);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    margin-bottom: 0.7rem;
}
.buy-price-box .old {
    text-decoration: line-through;
    color: var(--muted);
    margin-right: 0.55rem;
}
.buy-price-box .new {
    color: var(--gold);
    font-size: 1.55rem;
    font-weight: 800;
}
.buy-note {
    margin: 0;
    color: #ffb08a;
    font-size: 0.85rem;
    font-weight: 600;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.75rem 1rem;
    text-align: center;
    color: var(--muted);
}
.footer-inner {
    display: grid;
    justify-items: center;
    gap: 0.5rem;
}
.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
.footer-inner p {
    margin: 0;
    font-size: 0.9rem;
}
.footer-address {
    max-width: 28rem;
    line-height: 1.5;
}
.footer-links {
    margin-top: 0.35rem;
}
.footer-links a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-links a:hover {
    color: var(--text, #0f2a22);
}

.legal-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
}
.legal-page h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    line-height: 1.25;
}
.legal-page h2 {
    margin: 1.75rem 0 0.65rem;
    font-size: 1.15rem;
}
.legal-page p,
.legal-page li {
    color: var(--muted);
    line-height: 1.7;
}
.legal-page ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.25rem;
}
.legal-page .lead {
    margin-top: 1rem;
    color: var(--text, #0f2a22);
}
.legal-updated {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.legal-back {
    margin: 0 0 1rem;
    font-size: 0.9rem;
}
.legal-back a {
    color: var(--muted);
}
.footer-links {
    margin-top: 0.35rem;
}
.footer-links a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-links a:hover {
    color: var(--text, #0f2a22);
}

.legal-page {
    padding-top: 2rem;
    padding-bottom: 3rem;
}
.legal-page h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    line-height: 1.25;
}
.legal-page h2 {
    margin: 1.75rem 0 0.65rem;
    font-size: 1.15rem;
}
.legal-page p,
.legal-page li {
    color: var(--muted);
    line-height: 1.7;
}
.legal-page ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.25rem;
}
.legal-page .lead {
    margin-top: 1rem;
    color: var(--text, #0f2a22);
}
.legal-updated {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.legal-back {
    margin: 0 0 1rem;
    font-size: 0.9rem;
}
.legal-back a {
    color: var(--muted);
}

.thanks {
    min-height: 70vh;
    display: grid;
    align-items: center;
    padding: 2.5rem 0;
}
.thanks-box {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.6rem 1.2rem;
}
.thanks-details {
    text-align: left;
    margin: 1.25rem 0 1.4rem;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
}
.thanks-details p { margin-bottom: 0.45rem; word-break: break-word; }

/* Tablet */
@media (max-width: 992px) {
    .hero-grid,
    .order-layout,
    .dual-content,
    .gallery-grid,
    .buy-now-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .img-row.four { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: repeat(2, 1fr); }
    .sat-stats { grid-template-columns: repeat(2, 1fr); }
    .product-highlights { grid-template-columns: repeat(2, 1fr); }
    .gallery-main img { min-height: 260px; }
    .buy-now-float {
        right: 4%;
        bottom: -6%;
        width: 36%;
    }
    .buy-now-copy h2 { text-align: center; }
    .buy-price-box { justify-content: center; text-align: center; }
    .buy-price-box .btn { width: 100%; }
    /* Compact sticky urgency strip on mobile */
    .urgency-bar {
        padding: 0.28rem 0;
    }
    .urgency-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        text-align: left;
    }
    .urgency-text-full { display: none; }
    .urgency-text-short {
        display: block;
        font-size: 0.72rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        flex: 1;
    }
    .urgency-bar .btn-sm {
        width: auto;
        padding: 0.28rem 0.55rem;
        font-size: 0.7rem;
        line-height: 1.2;
        border-radius: 999px;
        white-space: nowrap;
    }
    .hero-actions { justify-content: center; }
    .hero-chips { justify-content: center; }
    .sat-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .sat-cta-box .btn { width: 100%; }
    .order-intro h2,
    .dual-content h2 {
        text-align: center;
    }
    .order-intro p { text-align: center; }
    .order-trust-list { justify-items: start; max-width: 420px; margin-inline: auto; }
    .hero-copy { text-align: center; }
    .hero-logo { margin-inline: auto; }
    .hero-points {
        display: inline-block;
        text-align: left;
    }
    .hero-points li { text-align: left; }
}

/* Mobile */
@media (max-width: 640px) {
    body { font-size: 15px; }

    .container,
    .narrow {
        width: calc(100% - 1.1rem);
    }

    .top-banner {
        font-size: 0.8rem;
        padding: 0.55rem 0.65rem;
    }

    .hero { padding: 1.35rem 0 1.1rem; }
    .hero-logo {
        width: 68px;
        height: 68px;
    }
    .hero h1 { font-size: 1.28rem; }
    .hero-sub { font-size: 0.98rem; }
    .hero-main-img {
        border-radius: 12px;
        aspect-ratio: 16 / 11;
    }
    .hero-video-wrap { border-radius: 14px; }
    .hero-video {
        aspect-ratio: 16 / 10;
        border-radius: 14px;
    }
    .btn {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .section { padding: 2rem 0; }
    .section h2 {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }
    .section-lead {
        font-size: 0.88rem;
        margin-bottom: 1.1rem;
    }

    .img-row.three,
    .img-row.four,
    .img-row.two,
    .trust-row,
    .delivery-row,
    .content-grid,
    .sat-reasons,
    .order-trust-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .sat-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
    .product-highlights {
        grid-template-columns: 1fr 1fr;
    }
    .buy-now-float { display: none; }
    .gallery-side { grid-template-columns: 1fr 1fr; }
    .hero-actions .btn { width: 100%; }

    /* keep review images 1-col for readability on small phones */
    .img-row.two { grid-template-columns: 1fr; }

    .note-box {
        font-size: 0.86rem;
        padding: 0.8rem 0.85rem;
        margin-top: 1rem;
    }

    .trust-row article,
    .delivery-row article,
    .content-grid article {
        padding: 1rem 0.85rem;
    }

    .order-form-wrap {
        padding: 1rem 0.85rem;
        border-radius: 12px;
    }
    .product-card img { width: 120px; }
    .price .new { font-size: 1.35rem; }
    .sum-line {
        flex-direction: column;
        gap: 0.2rem;
    }
    .sum-line strong { text-align: left; }

    .faq details {
        padding: 0.65rem 0.7rem;
        margin-bottom: 0.45rem;
    }
    .faq summary {
        font-size: 0.8rem;
        gap: 0.55rem;
    }
    .faq p {
        font-size: 0.75rem;
        padding-right: 0.25rem;
        margin-top: 0.45rem;
    }

    .steps-list,
    .check-list {
        font-size: 0.86rem;
        padding-left: 1.05rem;
    }

    .thanks-box { padding: 1.25rem 0.9rem; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.15rem; }
    .faq summary { font-size: 0.76rem; }
    .faq p { font-size: 0.72rem; }
    .discount-tag { font-size: 0.78rem; }
}
