
/* ─── TOKENS ─────────────────────────────────────── */
:root {
    --green-deep:  #002b15;
    --green-mid:   #003f1a;
    --green-light: #005c26;
    --gold:        #c8972a;
    --gold-light:  #e8b84b;
    --cream:       #faf7f2;
    --white:       #ffffff;
    --text-dark:   #0d1a0f;
    --text-muted:  #6b7a6e;
    --radius-xl:   20px;
    --radius-pill: 100px;
    --transition:  0.45s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET / BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none !important; }

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left  { opacity:0; transform:translateX(-56px); transition: opacity .7s var(--transition), transform .7s var(--transition); }
.reveal-right { opacity:0; transform:translateX( 56px); transition: opacity .7s var(--transition), transform .7s var(--transition); }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }
.delay-1 { transition-delay: .15s !important; }
.delay-2 { transition-delay: .3s  !important; }
.delay-3 { transition-delay: .45s !important; }
.delay-4 { transition-delay: .6s  !important; }

/* ─── NAV ────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;                  /* above everything */
    height: 72px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background .4s, box-shadow .4s;
}
.site-nav.scrolled {
    background: rgba(0,20,10,.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 32px rgba(0,0,0,.35);
}
/* inner Bootstrap container keeps content aligned */
.site-nav .nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}
.nav-logo img { height: 40px; flex-shrink: 0; }

/* ── Desktop links ── */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0 0 0 auto;
    padding: 0;
    flex-wrap: nowrap;
}
.nav-links a {
    color: rgba(255,255,255,.85);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    transition: color .2s, background .2s;
    white-space: nowrap;
    display: block;
    text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.13); }

/* ── Desktop cart CTA pill ── */
.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--gold) !important;
    color: var(--green-deep) !important;
    font-weight: 700 !important;
    padding: 9px 18px !important;
    border-radius: var(--radius-pill) !important;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--green-deep) !important; }
.nav-badge {
    background: #e63946;
    color: #fff;
    font-size: 10px; font-weight: 800;
    min-width: 17px; height: 17px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    line-height: 1; padding: 0 2px;
}

/* ── Mobile right cluster ── */
.nav-right-mobile {
    display: none;        /* hidden on desktop */
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── Mobile cart FAB ── */
.mob-cart-btn {
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(200,151,42,.5);
    transition: background .2s;
    flex-shrink: 0;
}
.mob-cart-btn:hover { background: var(--gold-light); }
.mob-cart-btn i { font-size: 16px; color: var(--green-deep); }
.mob-badge {
    position: absolute; top: -4px; right: -4px;
    background: #e63946; color: #fff;
    font-size: 9px; font-weight: 800;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    border: 1.5px solid rgba(0,20,10,.95);
}

/* ── Hamburger ── */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform .3s, opacity .3s;
    pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile dropdown menu ──
   Key fix: it sits BELOW the nav bar using top:72px, and uses
   z-index LOWER than the nav so it never overlaps the logo row.
   We clip with overflow:hidden on a wrapper instead of animating
   the panel itself upward, which caused the bleed-through.        */
.nav-mobile-drawer {
    position: fixed;
    top: 72px; left: 0; right: 0;
    z-index: 1040;              /* below nav bar (1050) */
    background: rgba(0,15,7,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.nav-mobile-drawer.open {
    max-height: 480px;          /* tall enough for all items */
}
.nav-mobile-drawer ul {
    list-style: none;
    margin: 0; padding: 12px 0 20px;
}
.nav-mobile-drawer ul li a {
    display: block;
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s, background .2s;
}
.nav-mobile-drawer ul li:last-child a { border-bottom: none; }
.nav-mobile-drawer ul li a:hover,
.nav-mobile-drawer ul li a.active {
    color: var(--gold-light);
    background: rgba(255,255,255,.05);
}

/* ── Responsive show/hide ── */
@media(max-width:991px){
    .site-nav .nav-inner { padding: 0 20px; }
    .nav-links           { display: none !important; }   /* hide desktop links */
    .nav-right-mobile    { display: flex; }              /* show mobile cluster */
}
@media(min-width:992px){
    .nav-mobile-drawer   { display: none !important; }  /* never show drawer on desktop */
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video-wrap video {
    width:100%; height:100%; object-fit:cover;
}
.hero-video-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,20,8,.88) 0%,
        rgba(0,43,21,.70) 60%,
        rgba(0,0,0,.45) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 60px 80px;
    max-width: 820px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,151,42,.18);
    border: 1px solid rgba(200,151,42,.4);
    color: var(--gold-light);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    animation: fadeSlideUp .8s .2s both;
}
.hero-eyebrow::before {
    content:'';
    width:6px; height:6px;
    border-radius:50%;
    background:var(--gold);
    flex-shrink:0;
}
.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeSlideUp .8s .4s both;
}
.hero-headline .typewriter-wrap {
    display: block;
    color: var(--gold-light);
    min-height: 1.1em;
}
.cursor {
    display: inline-block;
    width: 3px;
    background: var(--gold-light);
    animation: blink 1s step-end infinite;
    margin-left: 3px;
    vertical-align: baseline;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    animation: fadeSlideUp .8s .6s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp .8s .8s both;
}
.btn-primary-sol {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .95rem;
    padding: 16px 34px;
    border-radius: var(--radius-pill);
    transition: background .25s, transform .25s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,151,42,.35);
    text-decoration: none !important;
}
.btn-primary-sol:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.5);
    color: var(--green-deep);
}
.btn-ghost-sol {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-weight: 500;
    font-size: .95rem;
    padding: 16px 30px;
    border-radius: var(--radius-pill);
    transition: background .25s, border-color .25s;
    backdrop-filter: blur(6px);
    text-decoration: none !important;
}
.btn-ghost-sol:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px; left: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    animation: fadeSlideUp .8s 1.2s both;
}
.scroll-line {
    width: 40px; height: 1px;
    background: rgba(255,255,255,.3);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content:'';
    position:absolute;
    top:0; left:-100%; width:100%; height:100%;
    background: var(--gold);
    animation: scrollPulse 2s 1.5s infinite;
}
@keyframes scrollPulse { 0%{left:-100%} 100%{left:100%} }

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    background: rgba(0,20,8,.7);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: center;
    gap: 0;
    animation: fadeSlideUp .8s 1s both;
}
.hero-stat {
    flex: 1;
    max-width: 220px;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right:none; }
.hero-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}
.hero-stat-label {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 4px;
}

@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0); }
}

@media(max-width:767px){
    .hero-content { padding:120px 24px 160px; }
    .hero-scroll, .hero-stats { display:none; }
}

/* ─── SECTION SHARED ─────────────────────────────── */
section { padding: 100px 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-label::before {
    content:'';
    width:24px; height:2px;
    background:var(--gold);
    border-radius:2px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    color: var(--green-deep);
}
.section-title.light { color: #fff; }

/* ─── PILLARS / WHY SOLDUA ───────────────────────── */
.pillars { background: var(--cream); }
.pillar-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: default;
    height: 100%;
}
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
    opacity: 0;
    transition: opacity .3s;
}
.pillar-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(0,0,0,.1); }
.pillar-card:hover::before { opacity:1; }
.pillar-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.pillar-num {
    position: absolute;
    top: 24px; right: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0,63,26,.06);
    line-height: 1;
}
.pillar-card h3 {
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}
.pillar-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── STORY SECTION ──────────────────────────────── */
.story { background: var(--green-deep); overflow: hidden; }
.story-img-wrap { position: relative; }
.story-img-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
}
.story-badge {
    position: absolute;
    bottom: -20px; right: -16px;
    background: var(--gold);
    color: var(--green-deep);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 20px 24px;
    border-radius: 18px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 12px 40px rgba(200,151,42,.4);
}
.story-badge span { display:block; font-size:.68rem; font-weight:600; opacity:.7; text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }
.story-content { color: rgba(255,255,255,.85); }
.story-content .section-title { color: #fff; margin-bottom: 24px; }
.story-content p { line-height: 1.8; margin-bottom: 18px; font-size: .95rem; }

@media(max-width:767px){
    .story-badge { bottom:-12px; right:0; font-size:.9rem; padding:16px 20px; }
    .story-img-wrap { margin-bottom: 40px; }
}

/* ─── DELIVERY SECTION ───────────────────────────── */
.delivery { background: var(--cream); }
.delivery-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.06);
}
.delivery-card-header {
    background: var(--green-mid);
    padding: 24px 28px;
    color: #fff;
}
.delivery-card-header h3 { font-size:1rem; margin-bottom:3px; }
.delivery-card-header p { font-size:.8rem; opacity:.7; margin:0; }
.delivery-zone {
    padding: 20px 28px 6px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.delivery-zone:last-child { border-bottom:none; padding-bottom:20px; }
.delivery-zone h4 {
    font-family: 'Sora', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.delivery-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,.07);
    font-size: .86rem;
    color: var(--text-dark);
    gap: 16px;
}
.delivery-row:last-child { border-bottom:none; }
.delivery-badge {
    flex-shrink: 0;
    font-size:.76rem; font-weight:700;
    padding:4px 12px; border-radius:var(--radius-pill);
}
.badge-free { background:#d4edda; color:#1a7336; }
.badge-paid { background:#ffe8cc; color:#8a4a00; }
.delivery-visual img {
    width:100%; border-radius:var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.delivery-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    background: rgba(0,63,26,.08);
    border-left: 3px solid var(--green-mid);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .82rem;
    color: var(--green-mid);
    font-weight: 500;
}
.delivery-note i { margin-top: 2px; flex-shrink: 0; }

@media(max-width:767px){
    .delivery-visual { margin-top: 32px; }
}

/* ─── TESTIMONIALS CAROUSEL ──────────────────────── */
.testimonials { background: var(--green-deep); padding:100px 0; overflow:hidden; }
.testimonials .section-label { color:var(--gold-light); }
.testimonials .section-label::before { background:var(--gold-light); }

.testi-carousel-wrap {
    position: relative;
    margin-top: 56px;
    overflow: hidden;
}
.testi-track {
    display: flex;
    gap: 24px;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.testi-slide {
    min-width: calc(33.333% - 16px);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    transition: transform .3s, box-shadow .3s, background .3s;
    flex-shrink: 0;
}
.testi-slide:hover {
    background: rgba(255,255,255,.1);
    box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.testi-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: contain;
}
.testi-caption { margin-top: 14px; }
.testi-caption .stars {
    color: var(--gold-light);
    font-size:.82rem; letter-spacing:2px; margin-bottom:6px;
}
.testi-caption p {
    font-size:.82rem; color:rgba(255,255,255,.6); line-height:1.6; margin:0;
}
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
}
.testi-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .25s, border-color .25s, transform .2s;
    font-size: 1rem;
}
.testi-btn:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--green-deep); transform: scale(1.08);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: background .25s, transform .25s;
    border: none;
}
.testi-dot.active { background: var(--gold-light); transform: scale(1.3); }
@media(max-width:991px){ .testi-slide { min-width: calc(50% - 12px); } }
@media(max-width:600px){ .testi-slide { min-width: 88%; } }

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
    background: var(--green-deep);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 72px 0 40px;
    color: rgba(255,255,255,.7);
}
.footer-divider {
    border-color: rgba(255,255,255,.08);
    margin: 0 0 32px;
}
.footer-logo img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size:.88rem; line-height:1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width:38px; height:38px; border-radius:50%;
    border:1px solid rgba(255,255,255,.2);
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,.7); font-size:.95rem;
    transition:background .25s, border-color .25s, color .25s;
}
.footer-social a:hover { background:var(--gold); border-color:var(--gold); color:var(--green-deep); }
.footer-col h4 {
    font-family:'Sora',sans-serif; font-size:.75rem; font-weight:700;
    letter-spacing:.1em; text-transform:uppercase; color:#fff; margin-bottom:18px;
}
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:9px; }
.footer-links a { color:rgba(255,255,255,.6); font-size:.86rem; transition:color .2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-contact-item {
    display:flex; align-items:flex-start; gap:10px;
    margin-bottom:10px; font-size:.86rem;
}
.footer-contact-item i { margin-top:3px; color:var(--gold); flex-shrink:0; }
.footer-bottom {
    display:flex; align-items:center; justify-content:space-between;
    padding-top:28px; font-size:.78rem; flex-wrap:wrap; gap:8px;
}
.footer-bottom p { margin:0; }
@media(max-width:767px){
    .footer-bottom { justify-content:center; text-align:center; }
}

/* ── Utility overrides ── */
.container-sol { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media(max-width:767px){ .container-sol { padding: 0 20px; } }
/* mt helpers for Bootstrap spacing */
.mt-section { margin-top: 56px; }


/* ── Page hero banner ── */
.page-hero {
    background: var(--green-deep);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("{{ asset('assets/images/hero-bg.webp') }}") center/cover no-repeat;
    opacity: .12;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.55);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--gold-light); transition: color .2s; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span { color: rgba(255,255,255,.3); }
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.page-hero p {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

/* ── About body sections ── */
.about-body { background: var(--cream); }

/* Section divider label */
.about-section { padding: 90px 0; }
.about-section:nth-child(even) { background: #fff; }

/* Floating image card */
.about-img-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.about-img-card img {
    width: 100%;
    display: block;
    transition: transform .5s var(--transition);
}
.about-img-card:hover img { transform: scale(1.04); }

/* Gold accent badge on image */
.about-img-badge {
    position: absolute;
    bottom: 24px; right: 24px;
    background: var(--gold);
    color: var(--green-deep);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: .95rem;
    padding: 16px 22px;
    border-radius: 16px;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}
.about-img-badge small {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: .65rem;
    font-weight: 600;
    opacity: .7;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Text block */
.about-text p {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}
.about-text p:last-of-type { margin-bottom: 0; }
.about-text strong { color: var(--text-dark); }

/* Mission highlight card */
.mission-card {
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    color: rgba(255,255,255,.85);
    position: relative;
    overflow: hidden;
}
.mission-card::after {
    content: '#NotPoundo';
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,.04);
    white-space: nowrap;
    pointer-events: none;
}
.mission-card .section-label { color: var(--gold-light); }
.mission-card .section-label::before { background: var(--gold-light); }
.mission-card h2 { color: #fff; margin-bottom: 16px; }
.mission-card p { font-size: .97rem; line-height: 1.8; margin-bottom: 12px; }
.mission-card p:last-of-type { margin-bottom: 0; }
.mission-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .82rem;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    margin-top: 20px;
    letter-spacing: .04em;
}

/* Why choose checklist */
.why-list {
    list-style: none;
    padding: 0; margin: 0;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: .95rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.why-list li:last-child { border-bottom: none; }
.why-list .check-icon {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-list .check-icon i { color: #fff; font-size: .75rem; }

/* Gift / send section */
.gift-section { background: var(--green-deep); padding: 90px 0; }
.gift-section .section-title { color: #fff; }
.gift-section .section-label { color: var(--gold-light); }
.gift-section .section-label::before { background: var(--gold-light); }
.gift-text { color: rgba(255,255,255,.8); }
.gift-text p { font-size: .97rem; line-height: 1.8; margin-bottom: 16px; }
.gift-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.gift-img img { width: 100%; display: block; }

/* Testimonials section on about page */
.about-testi { background: var(--cream); padding: 90px 0; }
.about-testi .section-title { color: var(--green-deep); }
.about-testi .section-label { color: var(--gold); }
.about-testi .section-label::before { background: var(--gold); }
.testi-grid-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    transition: transform .3s var(--transition), box-shadow .3s;
}
.testi-grid-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.testi-grid-img img { width: 100%; display: block; height: auto; }

@media(max-width:767px){
    .page-hero { padding: 130px 0 60px; }
    .about-section { padding: 64px 0; }
    .mission-card { padding: 36px 28px; }
    .gift-section { padding: 64px 0; }
    .about-testi { padding: 64px 0; }
}


/* ── Contact body ── */
.contact-body { background: var(--cream); padding: 90px 0; }

/* Info card */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    box-shadow: 0 8px 48px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    height: 100%;
}

/* Individual contact rows */
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: .95rem;
    margin-top: 2px;
}
.contact-row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-row-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-row-value {
    font-size: .97rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}
.contact-row-value a {
    color: var(--text-dark);
    transition: color .2s;
}
.contact-row-value a:hover { color: var(--green-mid); }

/* WhatsApp CTA */
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    margin-top: 28px;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.whatsapp-cta:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,.45);
}
.whatsapp-cta i { font-size: 1.1rem; }

/* Opening hours card */
.hours-card {
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    color: rgba(255,255,255,.85);
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}
.hours-card::after {
    content: '🕒';
    position: absolute;
    bottom: -10px; right: 20px;
    font-size: 5rem;
    opacity: .08;
    pointer-events: none;
}
.hours-card .section-label { color: var(--gold-light); margin-bottom: 20px; }
.hours-card .section-label::before { background: var(--gold-light); }
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .92rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: #fff; }
.hours-time { color: rgba(255,255,255,.65); }
.hours-badge-open {
    font-size: .7rem; font-weight: 700;
    background: rgba(37,211,102,.2);
    color: #25d366;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: .05em;
}
.hours-badge-closed {
    font-size: .7rem; font-weight: 700;
    background: rgba(220,53,69,.15);
    color: #dc3545;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: .05em;
}

/* Image card */
.contact-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    height: 100%;
    min-height: 360px;
}
.contact-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--transition);
}
.contact-img-card:hover img { transform: scale(1.04); }

@media(max-width:767px){
    .page-hero { padding: 130px 0 60px; }
    .contact-body { padding: 64px 0; }
    .contact-info-card { padding: 32px 28px; }
    .hours-card { padding: 28px 24px; }
    .contact-img-card { min-height: 260px; }
}

/* ── Cart body ── */
.cart-body { background: var(--cream); padding: 60px 0 90px; }

/* Flash messages */
.cart-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 20px;
}

/* ── Empty state ── */
.cart-empty {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.05);
}
.cart-empty-icon {
    width: 80px; height: 80px;
    background: rgba(0,63,26,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}
.cart-empty h2 {
    font-size: 1.8rem;
    color: var(--green-deep);
    margin-bottom: 12px;
}
.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: .97rem;
}

/* ── Cart items table ── */
.cart-table-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.05);
    margin-bottom: 32px;
}
.cart-table { margin: 0; }
.cart-table thead {
    background: var(--green-mid);
    color: rgba(255,255,255,.85);
}
.cart-table thead th {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 20px;
    border: none;
}
.cart-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .2s;
}
.cart-table tbody tr:last-child { border-bottom: none; }
.cart-table tbody tr:hover { background: rgba(0,63,26,.025); }
.cart-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border: none;
    font-size: .92rem;
    color: var(--text-dark);
}
.cart-product-img {
    width: 64px; height: 64px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
.cart-product-name { font-weight: 600; color: var(--green-deep); }
.cart-price { font-weight: 600; color: var(--text-dark); }
.cart-subtotal { font-weight: 700; color: var(--green-mid); }

/* Qty controls */
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.qty-btn {
    width: 32px; height: 32px;
    border-radius: 8px;
    border: 1.5px solid;
    background: transparent;
    font-size: 1rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
    padding: 0;
}
.qty-btn-minus { border-color: #dc3545; color: #dc3545; }
.qty-btn-minus:hover:not(:disabled) { background: #dc3545; color: #fff; }
.qty-btn-plus  { border-color: #198754; color: #198754; }
.qty-btn-plus:hover:not(:disabled)  { background: #198754; color: #fff; }
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-display {
    width: 44px;
    text-align: center;
    font-weight: 700;
    font-size: .95rem;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 8px;
    padding: 4px 0;
    background: var(--cream);
    color: var(--text-dark);
}
.btn-remove {
    width: 34px; height: 34px;
    border-radius: 10px;
    border: none;
    background: rgba(220,53,69,.1);
    color: #dc3545;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .15s;
    font-size: .85rem;
}
.btn-remove:hover { background: #dc3545; color: #fff; transform: scale(1.08); }

/* ── Delivery mode toggle ── */
.delivery-mode-wrap { margin-bottom: 28px; }
.delivery-mode-toggle {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.delivery-mode-btn {
    flex: 1;
    min-width: 200px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 2px solid rgba(0,0,0,.1);
    background: #fff;
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s, background .25s;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.delivery-mode-btn.active {
    border-color: var(--green-mid);
    background: rgba(0,63,26,.04);
    box-shadow: 0 0 0 1px var(--green-mid);
}
.delivery-mode-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), var(--gold));
    opacity: 0;
    transition: opacity .25s;
}
.delivery-mode-btn.active::before { opacity: 1; }
.delivery-mode-btn .mode-title {
    font-weight: 700;
    font-size: .9rem;
    color: var(--green-deep);
    display: block;
    margin-bottom: 3px;
}
.delivery-mode-btn .mode-sub {
    font-size: .78rem;
    color: var(--text-muted);
    display: block;
}
.mode-check {
    position: absolute;
    top: 14px; right: 16px;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,.15);
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, border-color .25s;
}
.delivery-mode-btn.active .mode-check {
    background: var(--green-mid);
    border-color: var(--green-mid);
}
.mode-check i { color: #fff; font-size: .6rem; opacity: 0; transition: opacity .2s; }
.delivery-mode-btn.active .mode-check i { opacity: 1; }

/* ── Checkout form ── */
.checkout-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.05);
}
.form-section-title {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.gift-section-title {
    font-family: 'Sora', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 24px 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gift-section-title::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Form controls override */
.form-control {
    height: 50px;
    border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,.1);
    font-size: .92rem;
    transition: border-color .2s, box-shadow .2s;
    background: var(--cream);
}
.form-control:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(0,63,26,.1);
    background: #fff;
}
textarea.form-control { height: auto; }

/* intl-tel-input overrides */
.iti { width: 100%; }
.iti input.form-control { padding-left: 52px !important; }

/* Tab content panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Order summary sidebar ── */
.order-summary-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.05);
    top: 88px;
}
.order-summary-header {
    background: var(--green-mid);
    padding: 20px 24px;
    color: #fff;
}
.order-summary-header h5 {
    font-family: 'Sora', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
    color: rgba(255,255,255,.85);
}
.order-summary-body { padding: 24px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,.07);
    font-size: .9rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row-label { color: var(--text-muted); }
.summary-row-value { font-weight: 600; color: var(--text-dark); }
.summary-shipping-note {
    font-size: .78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* How did you hear */
.hear-about-card {
    background: rgba(0,63,26,.04);
    border: 1px solid rgba(0,63,26,.1);
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
}
.hear-about-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 14px;
}
.hear-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1.5px solid rgba(0,0,0,.08);
    background: #fff;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: .88rem;
    color: var(--text-dark);
    font-weight: 500;
}
.hear-option:last-child { margin-bottom: 0; }
.hear-option input[type="radio"] { accent-color: var(--green-mid); width: 16px; height: 16px; flex-shrink: 0; }
.hear-option:has(input:checked) {
    border-color: var(--green-mid);
    background: rgba(0,63,26,.04);
}

/* Submit button */
.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 20px rgba(200,151,42,.3);
    margin-top: 20px;
}
.btn-checkout:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}
.btn-checkout i { font-size: .9rem; }

/* Security note */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.secure-note i { color: #198754; }

@media(max-width:767px){
    .page-hero { padding: 120px 0 48px; }
    .cart-body { padding: 40px 0 60px; }
    .checkout-form-card { padding: 24px 20px; }
    .order-summary-card { position: static; }
    .delivery-mode-btn { min-width: 100%; }
}

/* ── Products section ── */
.products-section {
    background: var(--cream);
    padding: 80px 0;
}

/* Flash */
.product-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 24px;
}

/* Product card */
.product-card {
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, .06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, .2);
}

/* Out of stock / back in stock badge */
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.badge-back-stock {
    background: var(--gold);
    color: var(--green-deep);
}

.badge-out-stock {
    background: rgba(220, 53, 69, .9);
    color: #fff;
}

/* Image area */
.product-img-wrap {
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 32px 28px;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--green-deep));
}

.product-img-wrap img {
    max-height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform .5s var(--transition);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06) translateY(-4px);
}

/* Card body */
.product-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-name {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.product-card-detail {
    font-size: .86rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.product-price small {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-top: 3px;
}

.btn-view-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .85rem;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    transition: background .25s, transform .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-view-product:hover {
    background: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 151, 42, .4);
}

/* Empty products state */
.products-empty {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, .06);
}

.products-empty h3 {
    color: var(--green-deep);
    margin-bottom: 12px;
}

.products-empty p {
    color: var(--text-muted);
}

/* ── Why Soldua strip ── */
.why-strip {
    background: #fff;
    padding: 80px 0;
}

.why-strip-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0, 0, 0, .1);
}

.why-strip-img img {
    width: 100%;
    display: block;
    transition: transform .5s var(--transition);
}

.why-strip-img:hover img {
    transform: scale(1.03);
}

.why-strip-text p {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: .95rem;
    color: var(--text-dark);
    line-height: 1.55;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-check {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.why-check i {
    color: #fff;
    font-size: .68rem;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 130px 0 56px;
    }

    .products-section {
        padding: 56px 0;
    }

    .why-strip {
        padding: 56px 0;
    }

    .product-img-wrap {
        min-height: 180px;
        padding: 28px 24px 20px;
    }

    .product-card-body {
        padding: 20px 22px 24px;
    }
}

/* Flash */
.product-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 28px;
}

/* ── Product image card ── */
.product-image-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 8px 48px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
}
.product-image-card img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
    transition: transform .5s var(--transition);
}
.product-image-card:hover img { transform: scale(1.05); }

/* ── Product info panel ── */
.product-info { padding-left: 8px; }

.product-name {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--green-deep);
    line-height: 1.15;
    margin-bottom: 8px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--green-mid);
    line-height: 1;
}
.product-price-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-short-detail {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,63,26,.07);
    border: 1px solid rgba(0,63,26,.12);
    color: var(--green-mid);
    font-size: .75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: .04em;
}
.trust-badge i { font-size: .8rem; }

/* Quantity control */
.qty-section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 14px;
    overflow: hidden;
    width: fit-content;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.qty-btn {
    width: 48px; height: 52px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-mid);
    cursor: pointer;
    transition: background .2s, color .2s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.qty-btn:hover { background: var(--green-mid); color: #fff; }
.qty-btn:disabled { opacity: .35; cursor: not-allowed; }
.qty-btn:disabled:hover { background: transparent; color: var(--green-mid); }
.qty-divider {
    width: 1px;
    height: 28px;
    background: rgba(0,0,0,.1);
    flex-shrink: 0;
}
.qty-input {
    width: 64px; height: 52px;
    border: none;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    background: transparent;
    outline: none;
}

/* Add to cart button */
.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,151,42,.3);
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}
.btn-add-cart:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}

/* Secure note */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.secure-note i { color: #198754; }

/* ── Description section ── */
.description-section {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 44px;
    margin-top: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.05);
}
.description-section .section-label { margin-bottom: 16px; }
.description-section p {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}

/* ── Related products ── */
.related-section {
    background: var(--green-deep);
    padding: 80px 0;
}
.related-section .section-label { color: var(--gold-light); }
.related-section .section-label::before { background: var(--gold-light); }
.related-section .section-title { color: #fff; }

.related-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.related-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.11);
    box-shadow: 0 20px 56px rgba(0,0,0,.25);
}
.related-img-wrap {
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    padding: 28px 24px 20px;
    min-height: 180px;
}
.related-img-wrap img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    transition: transform .4s var(--transition);
}
.related-card:hover .related-img-wrap img { transform: scale(1.07); }
.related-card-body {
    padding: 20px 22px 24px;
}
.related-card-name {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}
.related-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-light);
    margin-bottom: 16px;
    display: block;
}
.btn-related {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .82rem;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    transition: background .2s, transform .15s;
    width: 100%;
    justify-content: center;
}
.btn-related:hover {
    background: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-1px);
}

@media(max-width:767px){
    .page-hero { padding: 120px 0 44px; }
    .product-detail-body { padding: 48px 0 64px; }
    .product-image-card { padding: 32px 24px; min-height: 280px; }
    .product-info { padding-left: 0; margin-top: 32px; }
    .description-section { padding: 28px 24px; }
    .related-section { padding: 56px 0; }
}

/* ── Scrolling delivery info banner ── */
.delivery-ticker {
    background: rgba(200,151,42,.12);
    border-top: 1px solid rgba(200,151,42,.25);
    border-bottom: 1px solid rgba(200,151,42,.25);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.delivery-ticker-inner {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 60s linear infinite;
    font-size: .85rem;
    color: var(--text-dark);
    font-weight: 500;
}
.delivery-ticker-inner strong { color: var(--green-mid); }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ── Shipping body ── */
.shipping-body {
    background: var(--cream);
    padding: 72px 0 90px;
}

/* Flash */
.ship-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 24px;
}

/* ── Left image ── */
.shipping-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0,0,0,.1);
    height: 100%;
}
.shipping-img-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--transition);
}
.shipping-img-card:hover img { transform: scale(1.03); }

/* ── Right panel ── */
.shipping-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Delivery address pill */
.delivery-address-pill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0,63,26,.07);
    border: 1px solid rgba(0,63,26,.12);
    border-radius: 14px;
    padding: 16px 20px;
}
.delivery-address-pill .addr-icon {
    width: 36px; height: 36px;
    background: var(--green-mid);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.delivery-address-pill .addr-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}
.delivery-address-pill .addr-value {
    font-size: .92rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.4;
}

/* Order summary card */
.order-summary-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.05);
}
.order-summary-header {
    background: var(--green-mid);
    padding: 18px 24px;
    color: rgba(255,255,255,.85);
}
.order-summary-header h5 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
}
.order-summary-body { padding: 4px 0; }

/* Order item row */
.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .2s;
}
.order-item:last-child { border-bottom: none; }
.order-item:hover { background: rgba(0,63,26,.025); }
.order-item img {
    width: 52px; height: 52px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.07);
    flex-shrink: 0;
}
.order-item-info { flex: 1; }
.order-item-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.order-item-qty {
    font-size: .78rem;
    color: var(--text-muted);
}
.order-item-price {
    font-weight: 700;
    font-size: .9rem;
    color: var(--green-mid);
    white-space: nowrap;
}

/* Cost breakdown card */
.cost-breakdown-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.05);
}
.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(0,0,0,.07);
    font-size: .92rem;
}
.cost-row:last-child { border-bottom: none; }
.cost-row-label { color: var(--text-muted); }
.cost-row-value { font-weight: 600; color: var(--text-dark); }
.cost-row.total-row {
    padding-top: 16px;
    margin-top: 4px;
    border-top: 2px solid rgba(0,0,0,.08);
    border-bottom: none;
}
.cost-row.total-row .cost-row-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}
.cost-row.total-row .cost-row-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-mid);
}

/* ── Pick-up toggle ── */
.pickup-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(40,167,69,.07);
    border: 1px solid rgba(40,167,69,.2);
    border-radius: 14px;
    padding: 16px 20px;
}
.pickup-toggle-wrap .pickup-label {
    flex: 1;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}
.pickup-toggle-wrap .pickup-label small {
    display: block;
    font-weight: 400;
    color: var(--text-muted);
    font-size: .78rem;
    margin-top: 2px;
}

/* Toggle switch */
.toggle-track {
    position: relative;
    width: 52px; height: 28px;
    flex-shrink: 0;
}
.toggle-track input {
    opacity: 0;
    width: 0; height: 0;
    position: absolute;
}
.toggle-knob {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 28px;
    cursor: pointer;
    transition: background .3s;
}
.toggle-knob::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .3s;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-track input:checked + .toggle-knob { background: #28a745; }
.toggle-track input:checked + .toggle-knob::after { transform: translateX(24px); }

/* CTA button */
.btn-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,151,42,.3);
}
.btn-continue:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}

.back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: .82rem;
    margin-top: 14px;
    transition: color .2s;
}
.back-link:hover { color: var(--green-mid); }

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.secure-note i { color: #198754; }

@media(max-width:991px){
    .shipping-img-card { min-height: 260px; margin-bottom: 8px; }
}
@media(max-width:767px){
    .page-hero { padding: 120px 0 44px; }
    .shipping-body { padding: 48px 0 64px; }
    .cost-breakdown-card { padding: 20px 20px; }
}

/* ── Payment body ── */
.payment-body {
    background: var(--cream);
    padding: 72px 0 90px;
}

/* Flash */
.pay-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 24px;
}

/* ── Progress steps ── */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.step-bubble {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    transition: background .3s;
}
.step.done .step-bubble {
    background: var(--green-mid);
    color: #fff;
}
.step.active .step-bubble {
    background: var(--gold);
    color: var(--green-deep);
    box-shadow: 0 0 0 4px rgba(200,151,42,.2);
}
.step.pending .step-bubble {
    background: rgba(0,0,0,.08);
    color: var(--text-muted);
}
.step-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}
.step.active .step-label { color: var(--gold); }
.step.done  .step-label  { color: var(--green-mid); }
.step-connector {
    width: 60px; height: 2px;
    background: rgba(0,0,0,.1);
    margin: 0 8px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.step-connector.done { background: var(--green-mid); }
@media(max-width:480px){
    .step-connector { width: 32px; }
    .step-label { display: none; }
}

/* ── Order summary card ── */
.order-summary-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    height: fit-content;
}
.order-summary-header {
    background: var(--green-mid);
    padding: 20px 28px;
    color: rgba(255,255,255,.85);
}
.order-summary-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
    color: rgba(255,255,255,.85);
}
.order-items-list { padding: 4px 0; }
.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .2s;
}
.order-item:last-child { border-bottom: none; }
.order-item:hover { background: rgba(0,63,26,.025); }
.order-item img {
    width: 54px; height: 54px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.07);
    flex-shrink: 0;
}
.order-item-info { flex: 1; }
.order-item-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.order-item-qty {
    font-size: .78rem;
    color: var(--text-muted);
}
.order-item-price {
    font-weight: 700;
    font-size: .9rem;
    color: var(--green-mid);
    white-space: nowrap;
}

/* Cost rows */
.cost-breakdown { padding: 0 28px 8px; }
.cost-divider { border-color: rgba(0,0,0,.08); margin: 0 0 12px; }
.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: .9rem;
    border-bottom: 1px dashed rgba(0,0,0,.06);
}
.cost-row:last-of-type { border-bottom: none; }
.cost-row-label { color: var(--text-muted); }
.cost-row-value { font-weight: 600; color: var(--text-dark); }
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px 20px;
    border-top: 2px solid rgba(0,0,0,.07);
    margin-top: 4px;
}
.total-row-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}
.total-row-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--green-mid);
}

/* ── Payment form card ── */
.payment-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    position: sticky;
    top: 88px;
}
.payment-form-header {
    background: var(--green-deep);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-form-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-form-header h2 i { color: #198754; }
.payment-form-header img { height: 28px; opacity: .9; }
.payment-form-body { padding: 28px; }

/* Card element */
#card-errors {
    background: rgba(220,53,69,.08);
    border: 1px solid rgba(220,53,69,.25);
    border-radius: 10px;
    color: #842029;
    font-size: .85rem;
    font-weight: 600;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: none;
}

.card-field-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}
#card-element {
    background: var(--cream);
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 12px;
    padding: 16px;
    transition: border-color .2s, box-shadow .2s;
}
#card-element.StripeElement--focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(0,63,26,.1);
    background: #fff;
}
#card-element.StripeElement--invalid {
    border-color: #dc3545;
}

/* Wallet pay buttons */
.wallet-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-size: .95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
    margin-bottom: 12px;
}
.wallet-btn:hover { opacity: .9; transform: translateY(-1px); }
.wallet-btn-dark { background: #000; color: #fff; }
.wallet-btn-dark:hover { background: #1a1a1a; color: #fff; }

/* OR divider */
.or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,.1);
}
.or-divider span {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Pay button */
.btn-pay {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,151,42,.3);
    margin-top: 20px;
}
.btn-pay:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}
.btn-pay:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

/* Secure note */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}
.secure-note i { color: #198754; flex-shrink: 0; }

@media(max-width:991px){
    .payment-form-card { position: static; }
}
@media(max-width:767px){
    .page-hero { padding: 120px 0 44px; }
    .payment-body { padding: 48px 0 64px; }
    .payment-form-body { padding: 20px; }
    .order-item { padding: 12px 20px; }
    .cost-breakdown { padding: 0 20px 8px; }
    .total-row { padding: 14px 20px 16px; }
}


/* Success badge */
.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,211,102,.15);
    border: 1px solid rgba(37,211,102,.3);
    color: #25d366;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    animation: fadeSlideUp .6s .1s both;
}
.success-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #25d366;
    animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity:1; }
    50%      { transform: scale(1.4); opacity:.6; }
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
    animation: fadeSlideUp .7s .25s both;
}
.page-hero .hero-sub {
    color: rgba(255,255,255,.65);
    font-size: .97rem;
    margin: 0;
    animation: fadeSlideUp .7s .4s both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Confirmation body ── */
.confirmation-body {
    background: var(--cream);
    padding: 72px 0 90px;
}

/* ── Order summary card ── */
.summary-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    height: fit-content;
}
.card-top-bar {
    background: var(--green-mid);
    padding: 20px 28px;
    color: rgba(255,255,255,.85);
}
.card-top-bar h2 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
}
.order-items-list { padding: 4px 0; }
.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .2s;
}
.order-item:last-child { border-bottom: none; }
.order-item:hover { background: rgba(0,63,26,.025); }
.order-item img {
    width: 54px; height: 54px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.07);
    flex-shrink: 0;
}
.order-item-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.order-item-qty { font-size: .78rem; color: var(--text-muted); }
.order-item-price {
    font-weight: 700;
    font-size: .9rem;
    color: var(--green-mid);
    white-space: nowrap;
    margin-left: auto;
}
.cost-breakdown { padding: 0 28px 4px; }
.cost-divider { border-color: rgba(0,0,0,.08); margin: 0 0 8px; }
.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    font-size: .9rem;
    border-bottom: 1px dashed rgba(0,0,0,.06);
    color: var(--text-muted);
}
.cost-row:last-of-type { border-bottom: none; }
.cost-row span:last-child { font-weight: 600; color: var(--text-dark); }
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px 20px;
    border-top: 2px solid rgba(0,0,0,.07);
}
.total-label { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.total-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--green-mid);
}

/* ── Right: confirmation details ── */
.confirmation-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    position: sticky;
    top: 88px;
}

/* Success header */
.confirm-header {
    background: linear-gradient(135deg, #003f1a, #005c26);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.confirm-check {
    width: 48px; height: 48px;
    background: rgba(37,211,102,.2);
    border: 2px solid rgba(37,211,102,.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.confirm-check svg { color: #25d366; }
.confirm-header-text h3 {
    font-family: 'Sora', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.confirm-header-text p {
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin: 0;
}

.confirm-body { padding: 24px 28px; }

/* Status chips row */
.status-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.status-chip {
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    padding: 14px 16px;
}
.status-chip-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.status-chip-value {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-all;
}
.status-chip-value.tracking {
    font-family: 'Sora', sans-serif;
    font-size: .82rem;
    letter-spacing: .04em;
    color: var(--green-mid);
}
.delivery-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,193,7,.15);
    color: #856404;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

/* Info blocks */
.info-section { margin-bottom: 16px; }
.info-section-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,.07);
    display: flex;
    align-items: center;
    gap: 7px;
}
.info-section-title i { color: var(--green-mid); }
.info-block {
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06);
    padding: 16px 18px;
    margin-bottom: 10px;
}
.info-block:last-child { margin-bottom: 0; }
.info-name {
    font-weight: 700;
    font-size: .92rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}
.info-detail {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.info-address {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1.6;
}

/* ETA banner */
.eta-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0,63,26,.07);
    border: 1px solid rgba(0,63,26,.15);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
}
.eta-icon {
    width: 40px; height: 40px;
    background: var(--green-mid);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0;
}
.eta-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.eta-date {
    font-weight: 700;
    font-size: .95rem;
    color: var(--green-mid);
}

/* Email sent note */
.email-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(13,110,253,.07);
    border: 1px solid rgba(13,110,253,.15);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: .84rem;
    color: #084298;
    line-height: 1.5;
}
.email-note i { flex-shrink: 0; margin-top: 2px; font-size: .9rem; }

/* Gift message card */
.gift-message-card {
    background: rgba(200,151,42,.08);
    border: 1px solid rgba(200,151,42,.2);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 10px;
    font-size: .88rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.65;
}
.gift-message-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 4px;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-home {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    transition: background .25s, transform .2s;
    white-space: nowrap;
}
.btn-home:hover {
    background: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-1px);
}
.btn-invoice {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--green-mid);
    color: var(--green-mid);
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    transition: background .25s, color .25s, transform .2s;
    white-space: nowrap;
}
.btn-invoice:hover {
    background: var(--green-mid);
    color: #fff;
    transform: translateY(-1px);
}

@media(max-width:991px){
    .confirmation-card { position: static; }
}
@media(max-width:767px){
    .page-hero { padding: 120px 0 48px; }
    .confirmation-body { padding: 48px 0 64px; }
    .status-chips { grid-template-columns: 1fr; }
    .confirm-body { padding: 20px; }
    .order-item { padding: 12px 20px; }
    .cost-breakdown { padding: 0 20px 4px; }
    .total-row { padding: 14px 20px 16px; }
    .action-buttons { flex-direction: column; }
    .btn-home, .btn-invoice { flex: none; }
}

/* ── Body ── */
.unsub-body {
    background: var(--cream);
    padding: 80px 0 100px;
}

/* ── Card ── */
.unsub-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 48px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

/* Top danger bar */
.unsub-card-bar {
    background: linear-gradient(90deg, #dc3545, #c82333);
    padding: 6px 0;
}

.unsub-card-body { padding: 52px 48px 44px; }

/* Icon */
.unsub-icon-wrap {
    width: 80px; height: 80px;
    background: rgba(220,53,69,.1);
    border: 2px solid rgba(220,53,69,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    animation: fadeSlideUp .6s .1s both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

.unsub-card-body h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #dc3545;
    margin-bottom: 16px;
    animation: fadeSlideUp .6s .2s both;
}

.unsub-card-body p {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
    animation: fadeSlideUp .6s .3s both;
}
.unsub-card-body p:last-of-type { margin-bottom: 0; }

/* Contact link */
.unsub-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,63,26,.07);
    border: 1px solid rgba(0,63,26,.12);
    color: var(--green-mid);
    font-weight: 600;
    font-size: .9rem;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    margin-top: 28px;
    transition: background .25s, color .25s, transform .2s;
    animation: fadeSlideUp .6s .4s both;
}
.unsub-contact:hover {
    background: var(--green-mid);
    color: #fff;
    transform: translateY(-2px);
}

/* Divider */
.unsub-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0 24px;
}
.unsub-divider::before,
.unsub-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,.08);
}
.unsub-divider span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Back home button */
.btn-go-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    transition: background .25s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(200,151,42,.25);
    animation: fadeSlideUp .6s .5s both;
}
.btn-go-home:hover {
    background: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,151,42,.4);
}

@media(max-width:767px){
    .page-hero { padding: 120px 0 48px; }
    .unsub-body { padding: 56px 0 72px; }
    .unsub-card-body { padding: 36px 24px 32px; }
}

/* ── Body ── */
.unsub-body {
    background: var(--cream);
    padding: 80px 0 100px;
}

/* ── Card ── */
.unsub-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 48px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

/* Top success bar */
.unsub-card-bar {
    background: linear-gradient(90deg, #1a7336, #25a352);
    padding: 6px 0;
}

.unsub-card-body { padding: 52px 48px 44px; }

/* Success icon */
.unsub-icon-wrap {
    width: 80px; height: 80px;
    background: rgba(37,163,82,.1);
    border: 2px solid rgba(37,163,82,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.2rem;
    animation: fadeSlideUp .6s .1s both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

.unsub-card-body h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: #1a7336;
    margin-bottom: 16px;
    animation: fadeSlideUp .6s .2s both;
}

.unsub-card-body p {
    font-size: .97rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
    animation: fadeSlideUp .6s .3s both;
}

/* Transactional note */
.unsub-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0,63,26,.05);
    border: 1px solid rgba(0,63,26,.1);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 24px;
    text-align: left;
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
    animation: fadeSlideUp .6s .4s both;
}
.unsub-note i {
    color: var(--green-mid);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: .9rem;
}

/* Divider */
.unsub-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 32px 0 24px;
}
.unsub-divider::before,
.unsub-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,.08);
}
.unsub-divider span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Back home button */
.btn-go-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    transition: background .25s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(200,151,42,.25);
    animation: fadeSlideUp .6s .5s both;
}
.btn-go-home:hover {
    background: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,151,42,.4);
}

/* Shop again link */
.shop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 500;
    margin-top: 16px;
    transition: color .2s;
    animation: fadeSlideUp .6s .6s both;
}
.shop-link:hover { color: var(--green-mid); }

@media(max-width:767px){
    .page-hero { padding: 120px 0 48px; }
    .unsub-body { padding: 56px 0 72px; }
    .unsub-card-body { padding: 36px 24px 32px; }
}

/* ── Body ── */
.reserve-body {
    background: var(--cream);
    padding: 80px 0 100px;
}

/* ── Form card ── */
.reserve-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 48px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
    overflow: hidden;
}
.reserve-card-header {
    background: var(--green-mid);
    padding: 22px 32px;
    color: rgba(255,255,255,.85);
}
.reserve-card-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0;
}
.reserve-card-body { padding: 36px 32px 40px; }

/* Flash */
.reserve-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 24px;
}

/* Section headings inside form */
.form-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.07);
    width: 100%;
}
.form-section-label i { color: var(--green-mid); }

/* Form controls */
.form-control {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,.1);
    font-family: 'Sora', sans-serif;
    font-size: .92rem;
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-control:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(0,63,26,.1);
    background: #fff;
}
.form-control.is-invalid {
    border-color: #dc3545;
    background: #fff;
}
select.form-control { cursor: pointer; }

/* intl-tel-input */
.iti { width: 100%; }
.iti input.form-control { padding-left: 52px !important; }

/* ── Product block ── */
.product-block {
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: border-color .2s, box-shadow .2s;
}
.product-block:hover {
    border-color: rgba(0,63,26,.15);
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.product-block-num {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Add / Remove buttons */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.btn-add-product {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,63,26,.08);
    border: 1.5px solid rgba(0,63,26,.2);
    color: var(--green-mid);
    font-weight: 600;
    font-size: .82rem;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
}
.btn-add-product:hover:not(:disabled) {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: #fff;
    transform: translateY(-1px);
}
.btn-add-product:disabled { opacity: .4; cursor: not-allowed; }

.btn-remove-product {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(220,53,69,.07);
    border: 1.5px solid rgba(220,53,69,.2);
    color: #dc3545;
    font-weight: 600;
    font-size: .82rem;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
}
.btn-remove-product:hover:not(:disabled) {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    transform: translateY(-1px);
}
.btn-remove-product:disabled { opacity: .4; cursor: not-allowed; }

/* Submit */
.btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,151,42,.3);
    margin-top: 8px;
}
.btn-reserve:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}

/* Secure note */
.reserve-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}
.reserve-note i { color: #198754; }

/* ── Right image panel ── */
.reserve-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0,0,0,.12);
    position: sticky;
    top: 88px;
}
.reserve-img-wrap img {
    width: 100%;
    display: block;
    transition: transform .5s var(--transition);
}
.reserve-img-wrap:hover img { transform: scale(1.03); }

/* Info card below image */
.reserve-info-card {
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    padding: 28px 28px;
    margin-top: 20px;
    color: rgba(255,255,255,.8);
}
.reserve-info-card .section-label { color: var(--gold-light); margin-bottom: 14px; }
.reserve-info-card .section-label::before { background: var(--gold-light); }
.reserve-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: .88rem;
    line-height: 1.6;
}
.reserve-info-item:last-child { margin-bottom: 0; }
.reserve-info-item i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }

@media(max-width:991px){
    .reserve-img-wrap { position: static; margin-top: 40px; }
}
@media(max-width:767px){
    .page-hero { padding: 130px 0 56px; }
    .reserve-body { padding: 56px 0 72px; }
    .reserve-card-body { padding: 24px 20px 28px; }
}

/* Animated check badge */
.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,197,94,.14);
    border: 1px solid rgba(37,197,94,.3);
    color: #25c55e;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    animation: fadeSlideUp .6s .1s both;
}
.success-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #25c55e;
    animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot {
    0%,100% { transform:scale(1); opacity:1; }
    50%      { transform:scale(1.4); opacity:.6; }
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
    animation: fadeSlideUp .7s .25s both;
}
.page-hero .hero-sub {
    color: rgba(255,255,255,.62);
    font-size: .97rem;
    max-width: 480px;
    line-height: 1.65;
    margin: 0;
    animation: fadeSlideUp .7s .4s both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Body ── */
.reserve-success-body {
    background: var(--cream);
    padding: 72px 0 100px;
}

/* ── Animated SVG check icon ── */
.check-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(37,197,94,.12);
    border: 2px solid rgba(37,197,94,.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.check-wrap svg {
    width: 36px; height: 36px;
    stroke: #22c55e;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: draw-check .8s ease forwards .3s;
}
@keyframes draw-check { to { stroke-dashoffset: 0; } }

/* ── Summary card ── */
.summary-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    height: fit-content;
}
.card-top-bar {
    background: var(--green-mid);
    padding: 20px 28px;
}
.card-top-bar h2 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin: 0;
}
.summary-body { padding: 28px; }

/* Key-value reference grid */
.ref-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.ref-chip {
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    padding: 14px 16px;
}
.ref-chip-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.ref-chip-value {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text-dark);
    word-break: break-all;
}
.ref-chip-value.ref-id {
    font-family: 'Sora', sans-serif;
    font-size: .82rem;
    letter-spacing: .04em;
    color: var(--green-mid);
}
@media(max-width:576px){ .ref-grid { grid-template-columns: 1fr; } }

/* Items section */
.items-section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.07);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.items-section-label i { color: var(--green-mid); }

.reserved-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(0,0,0,.07);
    gap: 12px;
}
.reserved-item:last-child { border-bottom: none; }
.reserved-item-name {
    font-weight: 600;
    font-size: .92rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.reserved-item-qty {
    font-size: .78rem;
    color: var(--text-muted);
}
.reserved-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,63,26,.08);
    color: var(--green-mid);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Right panel: next steps + contact ── */
.next-steps-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.05);
    position: sticky;
    top: 88px;
}
.next-steps-header {
    background: var(--green-deep);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.next-steps-body { padding: 28px; }

/* Steps list */
.steps-list { list-style: none; padding: 0; margin: 0 0 28px; }
.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.steps-list li:last-child { border-bottom: none; }
.step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Contact section divider */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.contact-divider::before,
.contact-divider::after { content:''; flex:1; height:1px; background:rgba(0,0,0,.08); }
.contact-divider span {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Contact buttons */
.contact-btns { display: flex; flex-direction: column; gap: 10px; }
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .88rem;
    transition: background .25s, border-color .25s, color .25s, transform .15s;
}
.btn-contact:hover { transform: translateY(-1px); }
.btn-contact-email {
    background: rgba(0,63,26,.07);
    border: 1.5px solid rgba(0,63,26,.18);
    color: var(--green-mid);
}
.btn-contact-email:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    color: #fff;
}
.btn-contact-whatsapp {
    background: rgba(37,211,102,.08);
    border: 1.5px solid rgba(37,211,102,.25);
    color: #1a7336;
}
.btn-contact-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}
.btn-contact i { font-size: .95rem; }

/* Back home */
.btn-go-home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: .9rem;
    padding: 14px;
    border-radius: var(--radius-pill);
    margin-top: 20px;
    transition: background .25s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(200,151,42,.25);
}
.btn-go-home:hover {
    background: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,151,42,.4);
}

@media(max-width:991px){ .next-steps-card { position: static; } }
@media(max-width:767px){
    .page-hero { padding: 120px 0 48px; }
    .reserve-success-body { padding: 48px 0 72px; }
    .summary-body, .next-steps-body { padding: 22px 20px; }
}

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,151,42,.18);
    border: 1px solid rgba(200,151,42,.35);
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
    animation: fadeSlideUp .6s .1s both;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 16px;
    animation: fadeSlideUp .7s .25s both;
}
.page-hero p {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.75;
    margin: 0;
    animation: fadeSlideUp .7s .4s both;
}
@keyframes fadeSlideUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Body ── */
.retailer-body {
    background: var(--cream);
    padding: 80px 0 100px;
}

/* ── Why partner strip ── */
.why-partner {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px 44px;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.05);
}
.partner-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.benefit-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.benefit-text h4 {
    font-family: 'Sora', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 4px;
}
.benefit-text p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
@media(max-width:767px){
    .partner-benefits { grid-template-columns: 1fr; }
    .why-partner { padding: 28px 24px; }
}
@media(min-width:768px) and (max-width:991px){
    .partner-benefits { grid-template-columns: repeat(2,1fr); }
}

/* ── Form card ── */
.enquiry-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,.07);
    border: 1px solid rgba(0,0,0,.05);
}
.enquiry-card-header {
    background: var(--green-mid);
    padding: 22px 32px;
}
.enquiry-card-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin: 0;
}
.enquiry-card-body { padding: 36px 32px 40px; }

/* Flash */
.enquiry-alert {
    border-radius: 12px;
    border: none;
    font-size: .9rem;
    padding: 14px 20px;
    margin-bottom: 24px;
}

/* Section labels inside form */
.form-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.07);
    width: 100%;
}
.form-section-label i { color: var(--green-mid); }

/* Form controls */
.form-control, .form-select {
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,.1);
    font-family: 'Sora', sans-serif;
    font-size: .92rem;
    background: var(--cream);
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
}
.form-control:focus, .form-select:focus {
    border-color: var(--green-mid);
    box-shadow: 0 0 0 3px rgba(0,63,26,.1);
    background: #fff;
    outline: none;
}
.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}
textarea.form-control { height: auto; }
select.form-control, .form-select { cursor: pointer; appearance: auto; }

/* intl-tel-input */
.iti { width: 100%; }
.iti input.form-control { padding-left: 52px !important; }

/* MOQ highlight card */
.moq-card {
    background: rgba(0,63,26,.05);
    border: 1px solid rgba(0,63,26,.12);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 20px;
}
.moq-card-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.moq-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.moq-option {
    position: relative;
}
.moq-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}
.moq-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 10px;
    border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,.1);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, background .2s, box-shadow .2s;
    text-align: center;
}
.moq-option input:checked + label {
    border-color: var(--green-mid);
    background: rgba(0,63,26,.05);
    box-shadow: 0 0 0 1px var(--green-mid);
}
.moq-option label:hover {
    border-color: rgba(0,63,26,.3);
    background: rgba(0,63,26,.03);
}
.moq-qty {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--green-deep);
    line-height: 1;
}
.moq-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .04em;
}
.moq-badge {
    font-size: .62rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--green-deep);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    letter-spacing: .04em;
    text-transform: uppercase;
}
@media(max-width:480px){ .moq-options { grid-template-columns: 1fr 1fr; } }

/* Product interest checkboxes */
.product-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 4px;
}
.product-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(0,0,0,.09);
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-dark);
}
.product-check-item:has(input:checked) {
    border-color: var(--green-mid);
    background: rgba(0,63,26,.05);
}
.product-check-item input[type="checkbox"] {
    accent-color: var(--green-mid);
    width: 16px; height: 16px;
    flex-shrink: 0;
}
@media(max-width:480px){ .product-checks { grid-template-columns: 1fr; } }

/* Submit */
.btn-enquire {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gold);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 24px rgba(200,151,42,.3);
    margin-top: 8px;
}
.btn-enquire:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,151,42,.45);
}
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.form-note i { color: #198754; }

/* ── Right sidebar ── */
.sidebar-panel {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact card */
.sidebar-card {
    background: var(--green-deep);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    color: rgba(255,255,255,.8);
}
.sidebar-card .section-label { color: var(--gold-light); margin-bottom: 18px; }
.sidebar-card .section-label::before { background: var(--gold-light); }
.sidebar-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: .88rem;
    line-height: 1.6;
}
.sidebar-contact-row:last-child { margin-bottom: 0; }
.sidebar-contact-row i {
    color: var(--gold-light);
    font-size: .95rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.sidebar-contact-row a { color: rgba(255,255,255,.8); transition: color .2s; }
.sidebar-contact-row a:hover { color: var(--gold-light); }

/* Testimonial-style quote card */
.sidebar-quote {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    position: relative;
}
.sidebar-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(0,63,26,.08);
    position: absolute;
    top: -10px; left: 16px;
    line-height: 1;
    pointer-events: none;
}
.sidebar-quote p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.sidebar-quote-author {
    font-size: .78rem;
    font-weight: 700;
    color: var(--green-mid);
}

/* Product image card */
.sidebar-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.sidebar-img img {
    width: 100%;
    display: block;
    transition: transform .5s var(--transition);
}
.sidebar-img:hover img { transform: scale(1.04); }

@media(max-width:991px){
    .sidebar-panel { position: static; }
}
@media(max-width:767px){
    .page-hero { padding: 130px 0 80px; }
    .retailer-body { padding: 56px 0 80px; }
    .enquiry-card-body { padding: 24px 20px 28px; }
}



@media(max-width:991px){
    .site-nav {
        background: rgba(0,20,10,.92) !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
}
/* ── Ensure drawer always starts exactly below nav on all pages ── */
@media(max-width:991px){
    .nav-mobile-drawer {
        top: 72px;
        z-index: 1040;
        /* Ensure it's visible against any background */
        background: rgba(0,15,7,.98) !important;
    }

    /* Ensure nav items in drawer are always visible */
    .nav-mobile-drawer ul li a {
        color: rgba(255,255,255,.9) !important;
    }
}

/* ── Cart table → stacked cards on mobile ── */
@media(max-width: 767px) {

    /* Force table to behave as block elements */
    .cart-table,
    .cart-table tbody,
    .cart-table tbody tr,
    .cart-table tbody td { display: block !important; }

    /* Hide header row completely */
    .cart-table thead { display: none !important; }

    /* Each row becomes a card */
    .cart-table tbody tr {
        position: relative;
        padding: 16px !important;
        margin-bottom: 12px;
        border-radius: 16px !important;
        border: 1px solid rgba(0,0,0,.07) !important;
        background: #fff;
    }

    /* Reset all td padding */
    .cart-table tbody td {
        padding: 0 !important;
        border: none !important;
        margin: 0;
    }

    /* ── Row layout using CSS Grid ── */
    .cart-table tbody tr {
        display: grid !important;
        grid-template-columns: 64px 1fr auto;
        grid-template-rows: auto auto;
        grid-template-areas:
            "img  name  del"
            "img  qty   sub";
        gap: 6px 12px;
        align-items: center;
    }

    /* Col 1: image */
    .cart-table tbody td:nth-child(1) {
        grid-area: img;
        align-self: center;
    }
    .cart-product-img {
        width: 64px !important;
        height: 64px !important;
        border-radius: 12px;
    }

    /* Col 2: product name */
    .cart-table tbody td:nth-child(2) {
        grid-area: name;
        align-self: end;
    }
    .cart-product-name {
        font-size: .9rem;
        line-height: 1.35;
        white-space: normal;
        word-break: break-word;
    }

    /* Col 3: price — hidden, subtotal shown instead */
    .cart-table tbody td:nth-child(3) {
        display: none !important;
    }

    /* Row 2 col 2: qty controls */
    .cart-table tbody td:nth-child(4) {
        grid-area: qty;
        align-self: start;
    }
    .qty-control {
        justify-content: flex-start;
        gap: 6px;
    }
    .qty-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 1rem;
        border-radius: 8px !important;
    }
    .qty-display {
        width: 38px !important;
        font-size: .88rem;
    }

    /* Row 2 col 3: subtotal */
    .cart-table tbody td:nth-child(5) {
        grid-area: sub;
        align-self: start;
        text-align: right;
    }
    .cart-subtotal {
        font-size: .92rem;
        font-weight: 700;
        color: var(--green-mid);
    }

    /* Col 3 row 1: delete button */
    .cart-table tbody td:nth-child(6) {
        grid-area: del;
        align-self: center;
        text-align: right;
    }
    .btn-remove {
        width: 34px !important;
        height: 34px !important;
        border-radius: 9px !important;
    }
}

/* Hide footer nav column on mobile */
@media(max-width: 767px) {
    .footer-nav-col { display: none !important; }
}

.hear-about-error {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(220,53,69,.08);
    border: 1px solid rgba(220,53,69,.25);
    border-radius: 10px;
    color: #842029;
    font-size: .82rem;
    font-weight: 600;
    padding: 10px 14px;
    margin-top: 10px;
}
.hear-about-error i { flex-shrink: 0; }
