/* ═══════════════════════════════════════════════════════════════════
   HERBAL CROWN — style.css  (FULL FILE — Mobile Hero Fix + Responsive)
   ═══════════════════════════════════════════════════════════════════ */

/* ── RESET & ROOT VARIABLES ─────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --g1: #0a3d0a;
    --g2: #1a5c1a;
    --g3: #2d7a2d;
    --g4: #3d9e3d;
    --g5: #52c052;
    --g6: #7ed67e;
    --g7: #b8f0b8;
    --g8: #e8fce8;
    --gold: #c9a84c;
    --cream: #fefdf8;
    --dark: #0d1f0d;
    --text: #1a2e1a;
    --muted: #4a6b4a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.14);
    --shadow-green: 0 8px 30px rgba(61, 158, 61, 0.3);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

button {
    cursor: pointer;
    font-family: 'Inter', sans-serif
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--cream)
}

::-webkit-scrollbar-thumb {
    background: var(--g4);
    border-radius: 3px
}

/* ── TYPOGRAPHY ── */
.section-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g4);
    margin-bottom: 0.5rem
}

.section-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--g4), var(--g6));
    border-radius: 2px;
    margin: 0.5rem auto 1rem
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.2
}

.section-sub {
    text-align: center;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.7
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1.visible {
    transition-delay: 0.1s
}

.reveal-delay-2.visible {
    transition-delay: 0.2s
}

.reveal-delay-3.visible {
    transition-delay: 0.3s
}

.reveal-delay-4.visible {
    transition-delay: 0.4s
}

/* ═══════════ NAVIGATION ═══════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    animation: slideDown 0.6s ease both;
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95)
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #075c0b;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap
}

.logo-leaf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: sway 3s ease-in-out infinite;
    width: 100px;
    height: 100px;
    flex-shrink: 0
}

.logo-leaf img {
    display: block;
    width: 80px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.2s
}

.logo-leaf img:hover {
    transform: scale(1.04)
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-6deg)
    }

    50% {
        transform: rotate(6deg)
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-links a {
    color: rgba(1, 11, 0, 0.78);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--g6);
    transition: width 0.3s
}

.nav-links a:hover {
    color: #1c7907
}

.nav-links a:hover::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem
}

.nav-wish,
.nav-cart {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(6, 62, 10);
    color: #033310;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.nav-wish:hover,
.nav-cart:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px)
}

.nav-cta {
    background: var(--g4);
    color: #d6f5d1;
    padding: 8px 22px;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px
}

.nav-cta:hover {
    background: var(--g5);
    color: rgb(6, 62, 10);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green)
}

/* Track Order nav link — desktop */
.nav-track-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--g7);
    color: var(--g2) !important;
    padding: 5px 14px !important;
    border-radius: 20px;
    font-weight: 600 !important;
    font-size: 0.85rem;
    border: 1.5px solid var(--g5);
    transition: var(--transition)
}

.nav-track-link:hover {
    background: var(--g6) !important;
    color: var(--g2) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green)
}

.nav-track-link::after {
    display: none !important
}

.hamburger {
    display: none;
    background: var(--g4);
    border: none;
    color: #fff;
    font-size: 1.3rem;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(61, 158, 61, 0.25)
}

.hamburger:hover {
    background: var(--g3);
    transform: scale(1.05)
}

/* ═══════════ HERO ═══════════ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 45%, #163c16 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5rem 4rem;
    gap: 3rem;
}

.hero-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 580px;
    height: 580px;
    margin-top: -30px;
    margin-left: -200px
}

.hero-product-img {
    width: 800px;
    height: 800px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
    position: relative;
    z-index: 2
}

.hero-img-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(82, 192, 82, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg)
    }

    50% {
        transform: translateY(-15px) rotate(2deg)
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatUp linear infinite;
    opacity: 0
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0
    }

    10% {
        opacity: 0.55
    }

    90% {
        opacity: 0.15
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0
    }
}

.hero-rings {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(126, 214, 126, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinRing linear infinite
}

.ring-1 {
    width: 520px;
    height: 520px;
    animation-duration: 30s
}

.ring-2 {
    width: 380px;
    height: 380px;
    animation-duration: 20s;
    animation-direction: reverse;
    border-color: rgba(126, 214, 126, 0.08)
}

.ring-3 {
    width: 240px;
    height: 240px;
    animation-duration: 15s;
    border-color: rgba(126, 214, 126, 0.06)
}

@keyframes spinRing {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    animation: fadeInUp 0.9s ease 0.2s both
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--g7);
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    animation: pulseBorder 2.5s ease-in-out infinite
}

@keyframes pulseBorder {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.2)
    }

    50% {
        border-color: rgba(126, 214, 126, 0.5)
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    word-wrap: break-word
}

.hero-highlight {
    color: var(--g6);
    display: inline-block;
    animation: shimmer 3s ease-in-out infinite
}

@keyframes shimmer {

    0%,
    100% {
        color: var(--g6)
    }

    50% {
        color: #c0f0c0
    }
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.75
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem
}

.btn-primary {
    background: var(--g4);
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    letter-spacing: 0.3px
}

.btn-primary:hover {
    background: var(--g5);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(61, 158, 61, 0.45)
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.38);
    transition: var(--transition)
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px)
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem
}

.stat {
    text-align: center
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18)
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: fadeInUp 0.9s ease 0.5s both
}

.hero-float {
    position: absolute;
    font-size: 2.2rem;
    animation: floatOrbits 5s ease-in-out infinite
}

.f1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    font-size: 2rem
}

.f2 {
    top: 10%;
    right: 5%;
    animation-delay: 1s;
    font-size: 2.5rem
}

.f3 {
    bottom: 15%;
    left: 0;
    animation-delay: 2s;
    font-size: 1.6rem
}

.f4 {
    bottom: 5%;
    right: 8%;
    animation-delay: 3s;
    font-size: 1.8rem
}

@keyframes floatOrbits {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-12px) rotate(15deg)
    }
}

@keyframes bobBottle {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg)
    }

    50% {
        transform: translateY(-16px) rotate(3deg)
    }
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bob 2s ease-in-out infinite
}

.scroll-arrow {
    width: 22px;
    height: 22px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg)
}

@keyframes bob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(7px)
    }
}

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
    background: var(--g1);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    position: relative
}

.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.trust-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--g1), transparent)
}

.trust-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--g1), transparent)
}

.trust-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 28s linear infinite
}

.trust-bar:hover .trust-track {
    animation-play-state: paused
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1)
}

/* ═══════════ CATEGORIES ═══════════ */
.categories {
    background: var(--cream);
    padding: 3.5rem 2rem
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto
}

.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid rgba(61, 158, 61, 0.1);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--g8), transparent);
    opacity: 0;
    transition: opacity 0.4s
}

.cat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 48px rgba(61, 158, 61, 0.16);
    border-color: var(--g4)
}

.cat-card:hover::before {
    opacity: 1
}

.cat-img {
    font-size: 2.2rem;
    width: 68px;
    height: 68px;
    background: var(--g8);
    border: 3px solid var(--g7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
    transition: var(--transition)
}

.cat-card:hover .cat-img {
    border-color: var(--g4);
    transform: scale(1.12) rotate(6deg)
}

.cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px
}

.cat-count {
    font-size: 0.78rem;
    color: var(--muted)
}

.cat-arrow {
    margin-top: 1rem;
    color: var(--g4);
    font-size: 1.3rem;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateY(0)
}

/* ═══════════ PRODUCTS ═══════════ */
.products {
    background: linear-gradient(180deg, #f0faf0 0%, var(--cream) 100%);
    padding: 5.5rem 2rem
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap
}

.filter-btn {
    background: var(--white);
    border: 1.5px solid rgba(61, 158, 61, 0.2);
    color: var(--muted);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition)
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--g4);
    border-color: var(--g4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green)
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto
}

.prod-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(61, 158, 61, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%
}

.prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.11);
    border-color: rgba(61, 158, 61, 0.2)
}

.prod-card.hidden {
    display: none
}

.prod-img {
    height: 200px;
    background: #f8fcf8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.prod-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.25), transparent 60%)
}

.prod-emoji {
    font-size: 4.5rem;
    z-index: 1;
    transition: transform 0.4s ease
}

.prod-card:hover .prod-emoji {
    transform: scale(1.12) rotate(-5deg)
}

.prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--g4);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2
}

.new-badge {
    background: #2563eb
}

.sale-badge {
    background: #dc2626
}

.prod-wish {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2
}

.prod-wish:hover {
    transform: scale(1.2);
    background: var(--g8)
}

.prod-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1
}

.prod-cat {
    font-size: 0.7rem;
    color: var(--g4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 3px
}

.prod-stars {
    color: var(--gold);
    font-size: 0.82rem;
    margin-bottom: 5px
}

.prod-rating {
    color: var(--muted);
    font-size: 0.75rem
}

.prod-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3
}

.prod-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem
}

.prod-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding-top: 6px
}

.prod-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--g3)
}

.prod-price-old {
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 6px
}

.add-btn {
    background: var(--g4);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition)
}

.add-btn:hover {
    background: var(--g3);
    transform: scale(1.06)
}

.view-all-wrap {
    text-align: center;
    margin-top: 3rem
}

.btn-view-all {
    background: transparent;
    color: var(--g3);
    border: 2px solid var(--g4);
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition)
}

.btn-view-all:hover {
    background: var(--g4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-green)
}

/* Stock badge: visible on ALL screen sizes */
.prod-instock-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid;
    margin-bottom: 4px;
    align-self: flex-start
}

.prod-instock-badge:not(.out) {
    color: #16a34a;
    background: #dcfce7;
    border-color: #bbf7d0
}

.prod-instock-badge.out {
    color: #dc2626;
    background: #fee2e2;
    border-color: #fecaca
}

.btn-view-details {
    display: none
}

/* Out of stock color variant */
/* ═══════════ WHY US ═══════════ */
.why {
    background: var(--g1);
    padding: 5.5rem 2rem
}

/* ── About layout: text left, rotating image right ── */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3.5rem;
    max-width: 1060px;
    margin: 0 auto 3.5rem;
    align-items: center
}

.about-text-col {}

.about-text-col p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 1.2rem
}

.about-text-col p:last-child { margin-bottom: 0 }

.about-img-col {
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45)
}

.about-img-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease
}

.about-img-slide.active { opacity: 1 }

.about-img-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2
}

.about-img-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    transition: background 0.3s
}

.about-img-dot.active { background: #fff }

/* cards grid below */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto
}

.why-card {
    text-align: center;
    padding: 2rem 1rem
}

.why-icon {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin: 0 auto 1rem;
    transition: var(--transition)
}

.why-card:hover .why-icon {
    background: var(--g4);
    border-color: var(--g4);
    transform: scale(1.12) rotate(6deg)
}

.why-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.95rem
}

.why-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
    background: var(--cream);
    padding: 5.5rem 2rem
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1050px;
    margin: 0 auto
}

.test-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(61, 158, 61, 0.1);
    transition: var(--transition)
}

.test-card:hover {
    border-color: var(--g4);
    box-shadow: 0 16px 40px rgba(61, 158, 61, 0.1);
    transform: translateY(-4px)
}

.test-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--g7);
    line-height: 1;
    margin-bottom: 0.5rem
}

.test-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--g7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--g2);
    flex-shrink: 0
}

.test-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark)
}

.test-loc {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 1px
}

.test-stars {
    color: var(--gold);
    font-size: 0.82rem;
    margin-top: 3px
}

/* ═══════════ NEWSLETTER ═══════════ */
.newsletter {
    background: linear-gradient(135deg, var(--g2) 0%, var(--g1) 100%);
    padding: 5rem 2rem;
    text-align: center
}

.nl-content {
    max-width: 500px;
    margin: 0 auto
}

.nl-icon {
    font-size: 3rem;
    margin-bottom: 1rem
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.75rem
}

.newsletter p {
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 2rem;
    font-size: 1rem
}

.nl-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem
}

.nl-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 0.92rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    min-width: 0
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.45)
}

.nl-btn {
    background: #fff;
    color: var(--g2);
    border: none;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer
}

.nl-btn:hover {
    background: var(--g7);
    transform: scale(1.03)
}

.nl-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38)
}

/* ═══════════ CONTACT ═══════════ */
.contact {
    background: #f8fcf8;
    padding: 5.5rem 2rem
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(61, 158, 61, 0.1);
    transition: var(--transition)
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(61, 158, 61, 0.12);
    border-color: var(--g4)
}

.contact-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem
}

.contact-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 6px
}

.contact-link {
    font-size: 0.9rem;
    color: var(--g3);
    font-weight: 500
}

.contact-link:hover {
    color: var(--g2)
}

/* ═══════════ FOOTER ═══════════ */
footer {
    background: var(--dark);
    padding: 3.5rem 2rem 1.5rem
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem
}

.footer-brand p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 240px;
    margin-top: 0.5rem
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 1rem
}

.social-btn {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition)
}

.social-btn:hover {
    background: var(--g4);
    border-color: var(--g4);
    transform: translateY(-2px)
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.footer-col li {
    margin-bottom: 9px
}

.footer-col a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.3s
}

.footer-col a:hover {
    color: var(--g6)
}

.footer-payments {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center
}

.footer-payments-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3)
}

.payment-icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap
}

.pay-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    min-width: 80px;
    padding: 8px 14px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s, box-shadow 0.25s
}

.pay-logo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3)
}

.pay-logo-box-wide {
    min-width: 150px
}

.pay-logo-img {
    height: 34px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block
}

.pay-logo-payhere {
    height: 100%;
    max-height: 40px
}

.pay-logo-box-cod {
    background: #f0f4f0
}

.pay-cod-text {
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    text-align: center
}

.footer-payhere-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s
}

.footer-payhere-link:hover {
    color: var(--g6)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28)
}

.footer-links {
    display: flex;
    gap: 1rem
}

.footer-links a {
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s
}

.footer-links a:hover {
    color: var(--g6)
}

/* ═══════════ TOAST ═══════════ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--g2);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    max-width: 320px
}

.toast.show {
    transform: translateY(0);
    opacity: 1
}

/* ═══════════ ORDER MODAL ═══════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

.modal-overlay.open {
    display: flex
}

.modal {
    background: var(--white);
    border-radius: 28px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

@keyframes modalIn {
    from {
        transform: scale(0.82);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.modal::-webkit-scrollbar {
    width: 4px
}

.modal::-webkit-scrollbar-thumb {
    background: var(--g6);
    border-radius: 2px
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--g8);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--g3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer
}

.modal-close:hover {
    background: var(--g7);
    transform: rotate(90deg)
}

.modal-header {
    text-align: center;
    margin-bottom: 1.75rem
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.4rem
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--muted)
}

.form-row {
  display: flex;
  gap: 12px;
}
.form-row .form-group {
  flex: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-group {
    margin-bottom: 1.1rem
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.2px
}

.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(61, 158, 61, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
}

.form-input:focus {
    border-color: var(--g4);
    box-shadow: 0 0 0 3px rgba(61, 158, 61, 0.12);
}

select.form-input {
    appearance: none;
    cursor: pointer;
}

.verify-hint {
    font-size: 0.76rem;
    color: var(--g4);
    margin-top: 5px;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--g3), var(--g4));
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
    font-weight: 700;
    margin-top: 0.5rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
    cursor: pointer;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--g2), var(--g3));
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.submit-btn:disabled {
    opacity: 0.65;
    transform: none;
    cursor: not-allowed;
}

.pay-methods {
    display: flex;
    gap: 6px;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pay-badge {
    background: var(--g8);
    border: 1px solid var(--g7);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--g3);
}

.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 1.5rem 0;
}

.otp-input {
    width: 50px;
    height: 58px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid rgba(61, 158, 61, 0.25);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
}

.otp-input:focus {
    border-color: var(--g4);
    box-shadow: 0 0 0 3px rgba(61, 158, 61, 0.15);
    transform: scale(1.05);
}

.resend-btn {
    background: none;
    border: none;
    color: var(--g4);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.resend-btn:hover {
    color: var(--g2);
}

.resend-btn:disabled {
    color: var(--muted);
    cursor: not-allowed;
    text-decoration: none;
}

.success-wrap {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounceIn 0.6s ease;
    display: block;
}

@keyframes bounceIn {
    0% {
        transform: scale(0)
    }

    60% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

.success-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.success-wrap p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.order-no-box {
    background: var(--g8);
    border: 1px solid var(--g7);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 0.92rem;
    color: var(--g2);
    margin-bottom: 1.5rem;
}

/* ═══════════ CART & PAYMENT ═══════════ */
.cart-section {
    background: var(--g8);
    border: 1px solid var(--g7);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.25rem
}

.cart-section-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--g3);
    padding: 10px 14px;
    background: var(--g7);
    border-bottom: 1px solid rgba(61, 158, 61, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cart-clear-btn {
    background: none;
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #dc2626;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s
}

.cart-clear-btn:hover {
    background: #fee2e2;
    border-color: #dc2626
}

.cart-empty {
    text-align: center;
    padding: 1.5rem 1rem
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(61, 158, 61, 0.1);
    animation: slideInCart 0.3s ease;
    background: #fff
}

.cart-item:last-child {
    border-bottom: none
}

@keyframes slideInCart {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.cart-item-thumb {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--g8)
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cart-item-emoji {
    font-size: 1.6rem;
    width: 44px;
    height: 44px;
    background: var(--g8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cart-item-info {
    flex: 1;
    min-width: 0
}

.cart-item-name {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cart-item-price {
    font-size: 0.78rem;
    color: var(--g3);
    font-weight: 700
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1.5px solid rgba(61, 158, 61, 0.3);
    background: #fff;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--g3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1
}

.qty-btn:hover {
    background: var(--g4);
    border-color: var(--g4);
    color: #fff
}

.qty-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 20px;
    text-align: center
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 2px;
    transition: color 0.2s;
    line-height: 1
}

.cart-item-remove:hover {
    color: #dc2626
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--g7);
    border-top: 1px solid rgba(61, 158, 61, 0.2)
}

.cart-total-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--g2)
}

.cart-total-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--g2);
    font-family: 'Playfair Display', serif
}

.cart-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.cart-divider::before,
.cart-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(61, 158, 61, 0.15)
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pay-option {
    cursor: pointer
}

.pay-option input[type="radio"] {
    display: none
}

.pay-option-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1.5px solid rgba(61, 158, 61, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    background: #fff
}

.pay-option input:checked+.pay-option-inner {
    border-color: var(--g4);
    background: var(--g8);
    box-shadow: 0 0 0 3px rgba(61, 158, 61, 0.1)
}

.pay-option-inner:hover {
    border-color: var(--g4)
}

.pay-option-icon {
    font-size: 1.4rem;
    flex-shrink: 0
}

.pay-option-content {
    flex: 1;
    min-width: 0
}

.pay-option-title {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--dark)
}

.pay-option-sub {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 1px
}

.pay-option-check {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--g4);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
    width: 20px;
    text-align: center
}

.pay-option input:checked+.pay-option-inner .pay-option-check {
    opacity: 1
}

.otp-tip {
    background: #fef9c3;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #92400e;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    line-height: 1.5
}

.order-summary-box {
    background: var(--g8);
    border: 1px solid var(--g7);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--g2);
    margin-bottom: 1.25rem;
    text-align: left;
    line-height: 1.8
}

/* ═══════════ BANK & SLIP ═══════════ */
.bank-details-box {
    background: linear-gradient(135deg, #f0faf0, var(--g8));
    border: 1.5px solid var(--g7);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem
}

.bank-details-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--g3);
    margin-bottom: 1rem
}

.bank-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(61, 158, 61, 0.1);
    font-size: 0.84rem
}

.bank-detail-row:last-of-type {
    border-bottom: none
}

.bank-detail-label {
    color: var(--muted);
    font-size: 0.76rem
}

.bank-detail-val {
    color: var(--dark);
    font-weight: 600;
    text-align: right
}

.copy-btn {
    width: 100%;
    margin-top: 1rem;
    background: var(--white);
    border: 1.5px solid var(--g6);
    color: var(--g3);
    padding: 8px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif
}

.copy-btn:hover {
    background: var(--g8);
    border-color: var(--g4)
}

.copy-btn.copied {
    background: var(--g4);
    color: #fff;
    border-color: var(--g4)
}

.slip-upload-area {
    border: 2px dashed rgba(61, 158, 61, 0.35);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.25rem;
    cursor: pointer;
    transition: all 0.25s;
    background: #fafcfa
}

.slip-upload-area:hover,
.slip-upload-area.drag-over {
    border-color: var(--g4);
    background: var(--g8)
}

.slip-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem
}

.slip-upload-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px
}

.slip-upload-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 0.75rem
}

.slip-browse-btn {
    background: var(--g4);
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif
}

.slip-browse-btn:hover {
    background: var(--g3)
}

.slip-upload-formats {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 0.6rem
}

.slip-preview-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid var(--g7);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: left
}

#slip-preview-icon {
    font-size: 2rem;
    flex-shrink: 0
}

.slip-preview-info {
    flex: 1;
    min-width: 0
}

.slip-preview-name {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.slip-preview-size {
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 2px
}

.slip-remove-btn {
    background: #fee2e2;
    border: none;
    color: #dc2626;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s
}

.slip-remove-btn:hover {
    background: #dc2626;
    color: #fff
}

.cod-info-box {
    background: var(--g8);
    border: 1px solid var(--g7);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    text-align: left
}

.cod-info-row {
    font-size: 0.82rem;
    color: var(--g2);
    padding: 5px 0;
    border-bottom: 1px solid rgba(61, 158, 61, 0.1);
    line-height: 1.5
}

.cod-info-row:last-child {
    border-bottom: none
}

/* ═══════════ PRODUCT PICKER ═══════════ */
.picker-section {
    margin-bottom: 1.25rem;
    background: #fff;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(61, 158, 61, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06)
}

.picker-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d7a2d;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.picker-title span {
    font-size: 0.72rem;
    font-weight: 400;
    color: #4a6b4a
}

.picker-search {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(61, 158, 61, 0.25);
    outline: none;
    font-size: 0.85rem;
    color: #1a2e1a;
    margin-bottom: 12px;
    transition: .3s ease
}

.picker-search:focus {
    border-color: #3d9e3d;
    box-shadow: 0 0 0 4px rgba(61, 158, 61, .12)
}

.picker-cats {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 8px
}

.picker-cat-btn {
    background: #fff;
    border: 1.5px solid rgba(61, 158, 61, 0.15);
    color: var(--muted);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Inter', sans-serif
}

.picker-cat-btn:hover,
.picker-cat-btn.active {
    background: var(--g4);
    border-color: var(--g4);
    color: #fff
}

.picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 250px;
    overflow-y: auto
}

.picker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid rgba(61, 158, 61, .15);
    cursor: pointer;
    transition: .25s ease;
    position: relative
}

.picker-item:hover {
    transform: translateY(-3px);
    border-color: #3d9e3d;
    background: #e8fce8
}

.picker-item.in-cart {
    background: #e8fce8;
    border-color: #3d9e3d
}

.picker-img-wrap {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #e8fce8;
    cursor: pointer;
    transition: opacity 0.2s
}

.picker-img-wrap:hover { opacity: 0.85 }

.picker-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.picker-emoji {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8fce8;
    border-radius: 10px;
    font-size: 1.5rem
}

.picker-info {
    flex: 1;
    min-width: 0
}

.picker-name {
    font-size: .78rem;
    font-weight: 700;
    color: #0d1f0d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer
}

.picker-name:hover { color: var(--g3); text-decoration: underline dotted }

.picker-price {
    font-size: .72rem;
    color: #2d7a2d;
    font-weight: 700
}

.picker-add-wrap {
    position: relative;
    flex-shrink: 0
}

.picker-add {
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 7px;
    background: #3d9e3d;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .2s
}

.picker-add:hover {
    background: #1a5c1a;
    transform: scale(1.1)
}

.picker-item.in-cart .picker-add {
    background: var(--g2)
}

.picker-item-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--g3);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.picker-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 2rem;
    color: #4a6b4a
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-8px)
    }

    40% {
        transform: translateX(8px)
    }

    60% {
        transform: translateX(-6px)
    }

    80% {
        transform: translateX(6px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.prod-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted)
}

.prod-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width:900px) {
    nav {
        padding: 0 1.25rem
    }

    .logo-leaf img {
        width: 50px;
        height: 50px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem 2rem;
        gap: 0;
        border-bottom: 2px solid rgba(61, 158, 61, 0.12);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
        z-index: 999
    }

    .nav-links.open {
        display: flex
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(61, 158, 61, 0.08)
    }

    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 0.5rem
    }

    .nav-links a {
        display: block;
        font-size: 1rem;
        font-weight: 500;
        color: #1a3d1a;
        padding: 0.9rem 1rem;
        width: 100%;
        transition: background 0.2s, color 0.2s;
        border-radius: 8px
    }

    .nav-links a:hover {
        background: rgba(61, 158, 61, 0.07);
        color: var(--g3)
    }

    .nav-track-link {
        background: linear-gradient(135deg, var(--g7), var(--g8)) !important;
        color: var(--g2) !important;
        border-radius: 10px !important;
        font-weight: 700 !important;
        margin-top: 0.25rem;
        padding: 0.75rem 1rem !important;
        border: 1.5px solid var(--g5) !important
    }

    .nav-track-link:hover {
        background: linear-gradient(135deg, var(--g6), var(--g7)) !important;
        color: var(--g2) !important
    }

    .hamburger {
        display: block
    }

    .nav-right .nav-cta {
        display: none
    }

    .nav-wish {
        display: none
    }

    .hero {
        flex-direction: column;
        padding: 5rem 2rem 0.5rem;
        text-align: center;
        justify-content: center;
        gap: 2rem
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.5rem)
    }

    .hero-actions {
        justify-content: center
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem
    }

    .hero-visual {
        display: none
    }

    .hero-rings {
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.4
    }

    .ring-1 {
        width: 320px;
        height: 320px
    }

    .ring-2 {
        width: 230px;
        height: 230px
    }

    .ring-3 {
        width: 145px;
        height: 145px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .modal {
        padding: 1.75rem 1.25rem;
        border-radius: 20px
    }

    /* ── TABLET PRODUCT GRID: 3 columns ── */
    .prod-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%
    }
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width:600px) {

    /* ── NAV ── */
    nav {
        padding: 0 1rem;
        height: 58px
    }

    .nav-links {
        top: 58px
    }

    .logo {
        font-size: 1.05rem;
        gap: 4px
    }

    .logo-leaf {
        width: 36px;
        height: 36px
    }

    .logo-leaf img {
        width: 40px;
        height: 40px;
    }

    .nav-right {
        gap: 0.4rem
    }

    .nav-wish,
    .nav-cart {
        padding: 4px 10px;
        font-size: 0.75rem
    }

    /* ══════════════════════════════════════════════════════
     HERO — BEAUTIFUL COMPACT MOBILE (all content kept)
     ══════════════════════════════════════════════════════ */
    .hero {
        min-height: 0 !important;
        height: auto !important;
        padding: 70px 1.25rem 1.5rem !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .hero-visual,
    .hero-img-wrap {
        display: none !important
    }

    .hero-rings {
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.15;
        pointer-events: none;
    }

    .ring-1 {
        width: 200px;
        height: 200px
    }

    .ring-2 {
        width: 145px;
        height: 145px
    }

    .ring-3 {
        width: 90px;
        height: 90px
    }

    .scroll-hint {
        display: none
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 4px 12px;
        margin-bottom: 0.6rem;
        display: inline-flex;
        letter-spacing: 0.5px;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 6.2vw, 2.3rem) !important;
        line-height: 1.1;
        margin-bottom: 0.55rem;
    }

    .hero-highlight {
        display: inline
    }

    .hero-sub {
        font-size: 0.83rem !important;
        line-height: 1.55;
        margin-bottom: 1.1rem !important;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.7);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-actions {
        flex-direction: row !important;
        gap: 0.55rem !important;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin: 0 auto 1.1rem auto !important;
        flex-wrap: nowrap;
    }

    .btn-primary,
    .btn-outline {
        flex: 1;
        text-align: center;
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
        border-radius: 40px;
    }

    .hero-stats {
        display: flex !important;
        justify-content: center;
        gap: 0;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 12px;
        padding: 0.55rem 0;
        width: 100%;
        max-width: 310px;
        margin: 0 auto;
    }

    .stat {
        flex: 1;
        text-align: center;
        padding: 0 0.2rem;
    }

    .stat-num {
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.58rem;
        margin-top: 2px;
        letter-spacing: 0.4px;
        color: rgba(255, 255, 255, 0.5);
    }

    .stat-divider {
        width: 1px;
        height: 26px;
        background: rgba(255, 255, 255, 0.14);
        align-self: center;
        flex-shrink: 0;
    }

    /* ── TRUST BAR ── */
    .trust-bar::before,
    .trust-bar::after {
        width: 40px
    }

    .trust-item {
        font-size: 0.75rem;
        padding: 0 1.5rem
    }

    .trust-track {
        animation-duration: 18s
    }

    /* ══════════════════════════════════════════════════════
     CATEGORIES — BEAUTIFUL MOBILE REDESIGN
     ══════════════════════════════════════════════════════ */
    .categories {
        padding: 2.25rem 0 2rem
    }

    .categories .section-label,
    .categories .section-title,
    .categories .section-divider {
        padding: 0 1.25rem
    }

    /* Hide the sub-description on mobile to save space */
    .categories .section-sub {
        display: none
    }

    .categories .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.3rem
    }

    .categories .section-divider {
        margin-bottom: 1.25rem
    }

    .cat-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0.75rem;
        padding: 0.25rem 1.25rem 0.75rem;
        max-width: 100%;
        scrollbar-width: none;
        /* align-items so all cards same height */
        align-items: stretch;
    }

    .cat-grid::-webkit-scrollbar {
        display: none
    }

    /* Pill-style horizontal card — not circle */
    .cat-card {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: auto;
        min-width: 110px;
        border-radius: 18px;
        padding: 1rem 0.85rem 0.85rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        border: 1.5px solid rgba(61, 158, 61, 0.12);
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        aspect-ratio: unset;
        gap: 0.35rem;
        transition: var(--transition);
    }

    .cat-card:hover,
    .cat-card:active {
        transform: translateY(-4px) scale(1.03);
        border-color: var(--g4);
        box-shadow: 0 8px 20px rgba(61, 158, 61, 0.15);
    }

    .cat-card::before {
        display: none
    }

    .cat-img {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        border-width: 2px;
        margin: 0 0 0.2rem;
        background: var(--g8);
        border-color: var(--g7);
    }

    .cat-card:hover .cat-img,
    .cat-card:active .cat-img {
        border-color: var(--g4);
        transform: scale(1.08) rotate(4deg);
    }

    .cat-name {
        font-size: 0.72rem;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        color: var(--dark);
        margin: 0;
        text-align: center;
        line-height: 1.25;
        white-space: nowrap;
    }

    /* Show product count nicely on mobile */
    .cat-count {
        display: block;
        font-size: 0.62rem;
        color: var(--g4);
        font-weight: 600;
        margin-top: 1px;
    }

    .cat-arrow {
        display: none
    }

    /* ── PRODUCTS ── */
    .products {
        padding: 2.5rem 1rem
    }

    .filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 0 0.5rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1.25rem
    }

    .filter-tabs::-webkit-scrollbar {
        display: none
    }

    .filter-btn {
        flex: 0 0 auto;
        padding: 7px 16px;
        font-size: 0.8rem
    }

    /* ── MOBILE PRODUCT GRID: 2-col vertical cards ── */
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.25rem
    }

    .prod-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        height: 100%;
        border-radius: 16px;
        border: 1.5px solid rgba(61, 158, 61, 0.10);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        position: relative
    }

    .prod-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12)
    }

    .prod-img {
        width: 100%;
        height: 150px;
        min-width: unset;
        min-height: unset;
        flex-shrink: unset;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8fcf8
    }

    .prod-emoji {
        font-size: 3rem
    }

    .prod-badge {
        top: 8px;
        left: 8px;
        font-size: 0.6rem;
        padding: 3px 8px;
        border-radius: 6px;
        font-weight: 800;
        letter-spacing: 0.3px;
        z-index: 2
    }

    .prod-wish {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        z-index: 2
    }

    .prod-body {
        padding: 0.65rem 0.7rem 0.75rem;
        display: flex;
        flex-direction: column;
        gap: 3px;
        flex: 1
    }

    .prod-cat {
        font-size: 0.6rem;
        letter-spacing: 0.6px;
        margin-bottom: 0
    }

    .prod-name {
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 2px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden
    }

    .prod-desc {
        font-size: 0.68rem;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 3px;
        color: var(--muted)
    }

    .prod-stars {
        font-size: 0.65rem;
        margin-bottom: 2px
    }

    .prod-rating {
        font-size: 0.62rem
    }

    /* In-stock badge shown on mobile */
    .prod-instock-badge {
        display: inline-block;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 2px 7px;
        border-radius: 20px;
        margin-bottom: 3px;
        align-self: flex-start;
        border: 1px solid
    }

    .prod-instock-badge:not(.out) {
        color: #16a34a;
        background: #dcfce7;
        border-color: #bbf7d0
    }

    /* Price block on mobile */
    .prod-footer {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
        margin-top: auto;
        padding-top: 6px
    }

    .prod-price-block {
        flex-direction: column;
        gap: 0;
        align-items: flex-start
    }

    .prod-price-block .prod-price-old {
        font-size: 0.7rem
    }

    .prod-price {
        font-size: 0.95rem;
        font-weight: 800
    }

    /* Action buttons — same row on mobile */
    .prod-actions {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 5px
    }

    .add-btn {
        padding: 7px 0;
        font-size: 0.72rem;
        border-radius: 8px;
        flex: 1;
        text-align: center;
        justify-content: center
    }

    .order-now-btn-card {
        flex: 1;
        padding: 7px 0;
        font-size: 0.72rem;
        border-radius: 8px;
        text-align: center;
        justify-content: center
    }

    /* ── WHY ── */
    .why {
        padding: 3rem 1rem
    }

    .about-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem
    }

    .about-img-col {
        height: 220px
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem
    }

    .why-card {
        padding: 1.25rem 0.6rem
    }

    .why-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        border-radius: 14px
    }

    .why-title {
        font-size: 0.84rem
    }

    .why-desc {
        font-size: 0.74rem
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
        padding: 3rem 1rem
    }

    .test-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none
    }

    .test-grid::-webkit-scrollbar {
        display: none
    }

    .test-card {
        flex: 0 0 82vw;
        scroll-snap-align: start
    }

    /* ── NEWSLETTER ── */
    .newsletter {
        padding: 3rem 1.2rem
    }

    .newsletter h2 {
        font-size: 1.6rem
    }

    .nl-form {
        flex-direction: column;
        border-radius: 14px;
        padding: 8px;
        gap: 8px
    }

    .nl-input {
        padding: 10px 14px
    }

    .nl-btn {
        border-radius: 10px;
        padding: 10px
    }

    /* ── CONTACT ── */
    .contact {
        padding: 3rem 1rem
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem
    }

    .contact-card {
        padding: 1.25rem 0.85rem
    }

    /* ── FOOTER ── */
    footer {
        padding: 2.5rem 1.2rem 1rem
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    /* ── MODAL ── */
    .modal-overlay {
        padding: 0;
        align-items: flex-end
    }

    .modal {
        padding: 1.5rem 1.1rem 1.75rem;
        border-radius: 22px 22px 0 0;
        max-height: 92vh;
        max-width: 100%;
        width: 100%
    }

    /* Drag handle hint */
    .modal::before {
        content: '';
        display: block;
        width: 36px;
        height: 4px;
        background: rgba(0, 0, 0, 0.12);
        border-radius: 2px;
        margin: 0 auto 1rem;
    }

    .modal-header {
        margin-bottom: 1.1rem;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.75rem
    }

    .modal-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0
    }

    .modal-header h2 {
        font-size: 1.2rem;
        margin-bottom: 0.1rem
    }

    .modal-header p {
        font-size: 0.78rem
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        font-size: 0.9rem
    }

    .form-group {
        margin-bottom: 0.75rem
    }

    .form-label {
        font-size: 0.75rem;
        margin-bottom: 4px
    }

    .form-input {
        padding: 10px 12px;
        font-size: 0.86rem
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    /* Payment options compact on mobile */
    .pay-option-inner {
        padding: 9px 12px;
        gap: 10px
    }

    .pay-option-icon {
        font-size: 1.2rem
    }

    .pay-option-title {
        font-size: 0.82rem
    }

    .pay-option-sub {
        font-size: 0.68rem
    }

    /* OTP */
    .otp-input {
        width: 42px;
        height: 50px;
        font-size: 1.2rem
    }

    .otp-boxes {
        gap: 7px;
        margin: 1.1rem 0
    }

    /* Submit button */
    .submit-btn {
        padding: 13px;
        font-size: 0.92rem
    }

    /* Order number box */
    .order-no-box {
        font-size: 0.84rem;
        padding: 10px 14px;
        border-radius: 10px
    }

    /* Order summary box inside modal */
    .order-summary-box {
        font-size: 0.8rem
    }

    /* Pay badges row */
    .pay-methods {
        gap: 4px;
        margin-top: 0.75rem
    }

    .pay-badge {
        font-size: 0.68rem;
        padding: 3px 9px
    }

    .picker-grid {
        grid-template-columns: 1fr 1fr;
        max-height: 200px
    }

    .picker-section {
        padding: 0.8rem
    }

    .picker-title {
        font-size: 0.82rem
    }

    .picker-cats {
        gap: 4px
    }

    .picker-cat-btn {
        padding: 3px 9px;
        font-size: 0.66rem
    }

    /* ── TOAST ── */
    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: 100%;
        font-size: 0.82rem
    }

    /* ── MISC ── */
    .section-title {
        font-size: clamp(1.35rem, 5.4vw, 1.5rem)
    }

    .section-sub {
        font-size: 0.87rem;
        margin-bottom: 1.75rem
    }

    .bank-detail-row {
        font-size: 0.79rem
    }

    .slip-upload-area {
        padding: 1.1rem
    }
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL (≤ 380px)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width:380px) {
    .hero {
        padding: 62px 1rem 1.1rem !important
    }

    .hero h1 {
        font-size: 1.55rem !important
    }

    .hero-sub {
        font-size: 0.79rem !important
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.8rem !important;
        padding: 9px 10px !important
    }

    .hero-stats {
        max-width: 280px
    }

    .stat-num {
        font-size: 0.95rem
    }

    .stat-label {
        font-size: 0.55rem
    }

    .logo-leaf img {
        width: 50px;
        height: 50px;
    }

    /* Categories extra small */
    .cat-card {
        min-width: 96px;
        padding: 0.85rem 0.65rem 0.7rem;
        border-radius: 14px;
    }

    .cat-img {
        width: 44px;
        height: 44px;
        font-size: 1.3rem
    }

    .cat-name {
        font-size: 0.66rem
    }

    .cat-count {
        font-size: 0.57rem
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem
    }

    .prod-img {
        height: 120px;
        width: 100%
    }

    .prod-emoji {
        font-size: 2.2rem
    }

    .prod-name {
        font-size: 0.76rem
    }

    .prod-price {
        font-size: 0.84rem
    }

    .prod-body {
        padding: 0.55rem 0.55rem 0.6rem
    }

    .prod-cat {
        font-size: 0.55rem
    }

    .prod-desc {
        font-size: 0.62rem
    }

    .prod-stars {
        font-size: 0.6rem
    }

    .btn-view-details {
        font-size: 0.65rem;
        padding: 6px 8px
    }

    .add-btn,
    .order-now-btn-card {
        font-size: 0.6rem;
        padding: 6px 0
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .otp-boxes {
        gap: 5px
    }

    .otp-input {
        width: 36px;
        height: 44px;
        font-size: 1rem
    }

    .modal {
        padding: 1rem 0.7rem
    }

    .modal-header h2 {
        font-size: 1.1rem
    }

    .picker-grid {
        grid-template-columns: 1fr 1fr;
        max-height: 180px
    }
}


/* ═══════════════════════════════════════════════════════════════════
   LANDSCAPE PHONE (short screen)
   ═══════════════════════════════════════════════════════════════════ */
@media (max-height:500px) and (orientation:landscape) and (max-width:900px) {
    .hero {
        min-height: 0 !important;
        padding: 60px 2rem 1rem !important;
        flex-direction: row !important;
        text-align: left !important;
        align-items: center !important;
        gap: 2rem !important;
    }

     .logo-leaf img {
        width: 50px;
        height: 50px;
    }

    .hero-content {
        max-width: 55%
    }

    .hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.6rem
    }

    .hero-sub {
        font-size: 0.82rem !important;
        margin-bottom: 1rem !important
    }

    .hero-actions {
        flex-direction: row !important;
        max-width: none !important;
        margin-bottom: 0 !important;
        gap: 0.6rem !important
    }

    .btn-primary,
    .btn-outline {
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 0.85rem !important
    }

    .hero-stats {
        display: none !important
    }

    .hero-badge {
        margin-bottom: 0.75rem
    }

    .hero-rings {
        display: none
    }
}


/* ═══════════════════════════════════════════════════════════════════
   PRODUCT CARD — PRICE BLOCK + VERTICAL ACTION BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

/* Price block: price + strikethrough stacked */
.prod-price-block {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.prod-price-block .prod-price-old {
    font-size: 0.75rem;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 0;
}

/* Action buttons: row on desktop */
.prod-actions {
    display: flex;
    flex-direction: row;
    gap: 6px;
    width: 100%;
}

.prod-actions .add-btn {
    padding: 9px 0;
    font-size: 0.8rem;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    min-width: 0;
}

/* Order Now card button */
.order-now-btn-card {
    background: linear-gradient(135deg, var(--gold), #e8c56a);
    color: #3a2500;
    border: none;
    padding: 9px 0;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.25);
    min-width: 0;
}

.order-now-btn-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(201, 168, 76, 0.45);
}

/* Override old prod-footer so it works with the new layout */
.prod-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding-top: 6px
}

.prod-actions {
    display: flex;
    flex-direction: row !important;
    gap: 6px;
    width: 100%;
    flex-wrap: nowrap;
}


/* ── Floating Action Buttons ─────────────────────────────── */
.floating-btns {
    position: fixed;
    bottom: 28px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-btns.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease;
    white-space: nowrap;
    overflow: hidden;
    max-width: 52px;
    /* collapsed — icon only */
}

.float-btn:hover {
    max-width: 180px;
    /* expanded — shows label */
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.float-btn i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.float-label {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease 0.05s, max-width 0.25s ease;
}

.float-btn:hover .float-label {
    opacity: 1;
    max-width: 120px;
}

/* WhatsApp — green */
.float-wa {
    background: #25D366;
}

.float-wa:hover {
    background: #1ebe5c;
}

/* Track Order — Herbal Crown green */
.float-track {
    background: linear-gradient(135deg, #1a5c1a, #2d7a2d);
}

.float-track:hover {
    background: linear-gradient(135deg, #0a3d0a, #1a5c1a);
}

/* Mobile: always show labels, smaller padding */
@media (max-width: 600px) {
    .floating-btns {
        bottom: 80px;
        /* above mobile nav bar if you have one */
        right: 16px;
        gap: 10px;
    }

    .float-btn {
        max-width: 52px;
        padding: 11px 14px;
    }

    .float-btn i {
        font-size: 1.15rem;
    }
}

/* ── Review photo upload ── */
.rv-photo-wrap { display:flex; flex-direction:column; gap:6px; }
.rv-photo-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 16px; border:1.5px dashed var(--g4);
  border-radius:8px; background:transparent; cursor:pointer;
  font-size:0.82rem; color:var(--g3); transition:all .2s;
}
.rv-photo-btn:hover { background:var(--g6); border-color:var(--g2); }
.rv-photo-preview { display:flex; align-items:center; gap:10px; margin-top:4px; }
.rv-photo-remove {
  background:#fee; border:none; border-radius:50%;
  width:22px; height:22px; cursor:pointer; font-size:0.75rem;
  color:#c00; display:flex; align-items:center; justify-content:center;
}

/* ── District/city row ── */
.form-row { display:flex; gap:12px; }
.form-row .form-group { flex:1; }