    /* ============================================================
    SSD NURSERY — Premium Botanical Storefront
    Design: Organic Luxury | Dark Emerald + Warm Ivory + Terracotta
    ============================================================ */

    @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&display=swap');

    /* ================= VARIABLES ================= */
    :root {
        --forest:        #1C3A2B;
        --forest-mid:    #2A5240;
        --forest-light:  #3D7358;
        --sage:          #8BAF8C;
        --ivory:         #F7F3EE;
        --ivory-dark:    #EDE7DE;
        --terracotta:    #C9694A;
        --terracotta-lt: #E08A6E;
        --gold:          #C8A96E;
        --text-dark:     #1A1F1C;
        --text-mid:      #4A5550;
        --text-light:    #8A9A90;
        --white:         #FFFFFF;
        --radius-leaf:   48px 12px 48px 12px;
        --radius-leaf-r: 12px 48px 12px 48px;
        --radius-card:   20px;
        --shadow-soft:   0 8px 32px rgba(28, 58, 43, 0.08);
        --shadow-card:   0 4px 24px rgba(28, 58, 43, 0.10);
        --shadow-hover:  0 16px 48px rgba(28, 58, 43, 0.18);
        --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ================= RESET & BASE ================= */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
        font-family: 'Cormorant Garamond', Georgia, serif;
        background-color: var(--ivory);
        color: var(--text-dark);
        overflow-x: hidden;
        width: 100%;
    }

    h1, h2, h3, h4 {
        font-family: 'DM Serif Display', Georgia, serif;
        color: var(--forest);
    }

    em { font-style: italic; color: var(--forest-light); }

    a { text-decoration: none; color: inherit; transition: var(--transition); }

    img { display: block; max-width: 100%; }

    button { cursor: pointer; font-family: inherit; }

    /* ================= UTILITY ================= */
    .section-label {
        display: inline-block;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--terracotta);
        margin-bottom: 14px;
        font-family: 'Cormorant Garamond', serif;
    }

    /* ================= REVEAL ANIMATIONS ================= */
    .reveal-section {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-section.visible { opacity: 1; transform: translateY(0); }

    .reveal-child {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal-child.visible { opacity: 1; transform: translateY(0); }

    /* ================= NOTIFICATION STRIP ================= */
    .offer-strip {
        background: var(--forest);
        color: rgba(255, 255, 255, 0.9);
        overflow: hidden;
        height: 38px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 999;
    }

    .strip-track {
        display: flex;
        gap: 60px;
        animation: stripScroll 22s linear infinite;
        white-space: nowrap;
    }

    .strip-item {
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        font-family: 'Cormorant Garamond', serif;
    }

    .strip-item i { color: var(--sage); font-size: 0.75rem; }

    @keyframes stripScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ================= NAVBAR ================= */
    .navbar{
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 5%;
    min-height: 88px;

    /* Background Design */
    background:
        linear-gradient(
            rgba(255,255,255,0.75),
            rgba(255,255,255,0.75)
        ),
        url("/static/images/navbarbg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    box-shadow: 0 2px 30px rgba(28,58,43,.1);
    z-index: 998;
}

.navbar.scrolled{
    top: 0;
    padding: 18px 5%;   /* SAME AS NORMAL */
    min-height: 88px;   /* SAME AS NORMAL */
}

    body:not(:has(.offer-strip)) .navbar { top: 0; }

    .brand-logo {
        height: 52px;
        width: auto;
        object-fit: contain;
        border-radius: 50%;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
    }
    .brand-logo:hover { transform: scale(1.05); }

    /* Nav links */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 38px;
        align-items: center;
    }

    .nav-links a {
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        color: var(--text-dark);
        position: relative;
        padding-bottom: 4px;
    }

    .navbar:not(.scrolled) .nav-links a,
    .navbar:not(.scrolled) .icon-btn { color: rgba(0, 0, 0, 0.92); }

    .navbar:not(.scrolled) .menu-toggle { color: rgba(0, 0, 0, 0.9); }

    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--terracotta);
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }

    /* Mega dropdown */
    .has-drop { position: relative; }

    .nav-chevron { font-size: 0.6rem; transition: transform 0.3s; }
    .has-drop:hover .nav-chevron { transform: rotate(180deg); }

    .mega-drop {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        background: rgba(255, 255, 255, 0.97);
        min-width: 200px;
        border-radius: 16px;
        box-shadow: var(--shadow-hover);
        border: 1px solid var(--ivory-dark);
        padding: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    .has-drop:hover .mega-drop {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: all;
    }
    .mega-drop a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 16px;
        border-radius: 10px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.97rem;
        color: var(--text-mid);
        transition: var(--transition);
    }
    .mega-drop a:hover { background: var(--ivory); color: var(--forest); }
    .mega-drop a i { color: var(--forest-light); width: 16px; font-size: 0.88rem; }

    /* Nav actions */
    .nav-actions {
        display: flex;
        gap: 14px;
        align-items: center;
        z-index: 1001;
    }

    .icon-btn {
        background: none;
        border: none;
        font-size: 18px;
        color: var(--text-dark);
        cursor: pointer;
        transition: color 0.3s, transform 0.2s;
        padding: 4px;
        position: relative;
    }
    .icon-btn:hover { color: var(--terracotta); transform: scale(1.1); }

    .cart-count {
        position: absolute;
        top: -7px;
        right: -9px;
        background: var(--terracotta);
        color: white;
        font-size: 9px;
        font-weight: 700;
        width: 17px;
        height: 17px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-family: sans-serif;
    }

    .wishlist-badge {
        position: absolute;
        top: -7px;
        right: -9px;
        background: #e74c3c;
        color: white;
        font-size: 9px;
        font-weight: 700;
        min-width: 17px;
        height: 17px;
        display: none;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-family: sans-serif;
        padding: 0 3px;
    }
    .wishlist-badge.show { display: flex; }
    .wishlist-nav-link { position: relative; }

    .menu-toggle {
        display: none;
        font-size: 22px;
        cursor: pointer;
        color: var(--forest);
        margin-left: 8px;
        padding: 4px;
    }

    /* ================= PROFILE DROPDOWN ================= */
    .profile-dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        background: white;
        min-width: 190px;
        border-radius: 16px;
        box-shadow: var(--shadow-hover);
        border: 1px solid var(--ivory-dark);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
    }
    .dropdown-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }

    .user-info {
        padding: 16px 20px 12px;
        font-size: 0.9rem;
        color: var(--text-mid);
        border-bottom: 1px solid var(--ivory-dark);
        font-family: 'Cormorant Garamond', serif;
    }

    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        font-family: 'Cormorant Garamond', serif;
        transition: var(--transition);
    }
    .dropdown-menu a:hover { background: var(--ivory); color: var(--forest); padding-left: 25px; }
    .dropdown-menu a i { color: var(--forest-light); width: 16px; }

    /* ================= SEARCH OVERLAY ================= */
    .search-overlay {
        position: fixed;
        inset: 0;
        background: rgba(28, 58, 43, 0.95);
        backdrop-filter: blur(12px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 120px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .search-overlay.active { opacity: 1; visibility: visible; }

    .search-overlay-inner { width: 90%; max-width: 680px; }

    .search-box-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
        background: white;
        padding: 16px 24px;
        border-radius: 60px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }
    .search-box-wrap i { color: var(--forest-light); font-size: 1rem; flex-shrink: 0; }
    .search-box-wrap input {
        flex: 1;
        border: none;
        outline: none;
        font-family: 'DM Serif Display', serif;
        font-size: 1.25rem;
        color: var(--forest);
        background: transparent;
    }
    .search-box-wrap input::placeholder { color: var(--text-light); }

    .search-close {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: var(--text-light);
        transition: var(--transition);
        padding: 4px;
    }
    .search-close:hover { color: var(--terracotta); transform: rotate(90deg); }

    .search-suggestions {
        background: white;
        border-radius: 20px;
        margin-top: 10px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        max-height: 400px;
        overflow-y: auto;
    }
    .sugg-group-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-light);
        padding: 14px 20px 6px;
        font-family: 'Cormorant Garamond', serif;
    }
    .sugg-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 20px;
        cursor: pointer;
        transition: background 0.2s;
        text-decoration: none;
        color: var(--text-dark);
    }
    .sugg-item:hover { background: var(--ivory); }
    .sugg-item .sugg-icon {
        width: 38px;
        height: 38px;
        background: var(--ivory-dark);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: var(--forest-light);
        flex-shrink: 0;
        overflow: hidden;
    }
    .sugg-item .sugg-icon img { width: 100%; height: 100%; object-fit: cover; }
    .sugg-item .sugg-name {
        font-family: 'DM Serif Display', serif;
        font-size: 0.98rem;
        color: var(--forest);
        display: block;
    }
    .sugg-item .sugg-sub { font-size: 0.82rem; color: var(--text-light); }
    .sugg-empty { padding: 24px 20px; text-align: center; color: var(--text-light); font-family: 'Cormorant Garamond', serif; }

    /* ================= HERO SLIDER ================= */
    .hero-slider {
        position: relative;
        height: 450px;
        min-height: 450px;
        margin-top: 80px;
        overflow: hidden;
        background:#000;
    }

    .slider-track {
        display: flex;
        height: 100%;
        transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .slide {
        flex: 0 0 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .slide-bg { position: absolute; inset: 0; z-index: 0; }

    .slide-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.45;
        transform: scale(1.08);
        transition: transform 8s ease;
    }
    .slide.active .slide-img { transform: scale(1); }

    .slide-overlay { position: absolute; inset: 0; }

    .slide-content {
        position: relative;
        z-index: 2;
        padding: 0 6%;
        max-width: 720px;
        opacity: 0;
        width:100%;
        transform: translateY(30px);
        transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
    }

    .slide-heading{
        max-width:600px;
        word-break:break-word;
    }

    .slide.active .slide-content { opacity: 1; transform: translateY(0); }

    .slide-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.8rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 24px;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 600;
        backdrop-filter: blur(6px);
    }

    .slide-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2.2rem, 4vw, 4rem);
        line-height:1.1;
        color: white;
        margin-bottom: 22px;
        letter-spacing: -0.5px;
    }
    .slide-heading em { font-style: italic; color: var(--gold); display: block; }

    .slide-desc {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.75;
        margin-bottom: 36px;
        max-width: 520px;
        font-family: 'Cormorant Garamond', serif;
    }

    .slide-actions {
        display: flex;
        align-items: center;
        gap: 28px;
        flex-wrap: wrap;
    }

    /* Slide buttons — unified as .btn-slide variants */
    .btn-slide {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 34px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1.05rem;
        font-weight: 400;
        border: none;
        transition: var(--transition);
        letter-spacing: 0.3px;
    }
    .btn-slide.primary,
    .btn-hero { background: var(--terracotta); color: white; }
    .btn-slide.primary:hover,
    .btn-hero:hover {
        background: var(--terracotta-lt);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(201, 105, 74, 0.35);
        color: white;
    }
    .btn-slide.outline,
    .btn-hero-alt {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.6);
        color: white;
    }
    .btn-slide.outline:hover,
    .btn-hero-alt:hover { background: white; color: var(--forest); border-color: white; }
    .btn-slide.accent { background: var(--gold); color: var(--forest); }
    .btn-slide.accent:hover { background: white; transform: translateY(-2px); }

    .hero-stat { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; font-family: 'Cormorant Garamond', serif; }
    .hero-stat strong { color: white; font-size: 1rem; }

    /* Slide decorations */
    .slide-deco,
    .slide-decoration {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        overflow: hidden;
    }

    .deco-circle {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .c1 { width: 500px; height: 500px; right: -100px; top: -100px; }
    .c2 { width: 300px; height: 300px; right: 100px; bottom: -80px; border-color: rgba(255, 255, 255, 0.04); }
    .deco-leaf { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); width: 380px; opacity: 0.4; }

    /* Slider arrows */
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 0.9rem;
        cursor: pointer;
        z-index: 10;
        transition: var(--transition);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slider-arrow:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-50%) scale(1.08); }
    .slider-arrow.prev { left: 1.5%; }
    .slider-arrow.next { right: 1.5%; }

    /* Dots */
    .slider-dots {
        position: absolute;
        bottom: 36px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        border: none;
        cursor: pointer;
        transition: all 0.35s ease;
        padding: 0;
    }
    .dot.active { background: white; width: 28px; border-radius: 4px; }

    /* Scroll hint */
    .scroll-hint {
        position: absolute;
        bottom: 40px;
        right: 6%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.72rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        z-index: 10;
        font-family: 'Cormorant Garamond', serif;
    }
    .scroll-line {
        width: 1px;
        height: 44px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
        0%, 100% { opacity: 0.4; transform: scaleY(1); }
        50%       { opacity: 1;   transform: scaleY(0.6); }
    }

    /* ================= TRUST BAR ================= */
    .trust-bar {
        background: var(--forest);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 22px 28px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.3s;
    }
    .trust-item:last-child { border-right: none; }
    .trust-item:hover { background: rgba(255, 255, 255, 0.04); }
    .trust-item i { font-size: 1.6rem; color: var(--sage); flex-shrink: 0; }
    .trust-item div { display: flex; flex-direction: column; gap: 2px; }
    .trust-item strong { color: white; font-size: 0.92rem; font-family: 'DM Serif Display', serif; font-weight: 400; }
    .trust-item span { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; font-family: 'Cormorant Garamond', serif; }

    /* ================= SECTION HEADERS ================= */
    .section-header { margin-bottom: 48px; }
    .section-header h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 12px; letter-spacing: -0.3px; }
    .section-header p { color: var(--text-mid); font-size: 1.05rem; max-width: 500px; line-height: 1.6; }

    .center-header { text-align: center; }
    .center-header p { margin: 0 auto; }

    .split-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 32px;
    }
    .split-header .section-label { margin-bottom: 8px; }
    .split-header h2 { margin-bottom: 0; }

    .rating-summary {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        justify-content: center;
    }
    .big-rating { font-family: 'DM Serif Display', serif; font-size: 3.5rem; color: var(--forest); line-height: 1; }
    .stars-row { display: flex; gap: 4px; color: var(--gold); font-size: 1.1rem; margin-bottom: 4px; }
    .rating-summary span { color: var(--text-light); font-size: 0.9rem; }

    .view-all-link {
        color: var(--forest);
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border: 1.5px solid var(--forest);
        border-radius: 30px;
        transition: var(--transition);
        white-space: nowrap;
    }
    .view-all-link:hover { background: var(--forest); color: white; }

    /* ================= CATEGORIES ================= */
    .categories { padding: 90px 5%; background: var(--white); }

    .category-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .cat-card {
        border-radius: var(--radius-card);
        overflow: hidden;
        background: var(--ivory);
        box-shadow: var(--shadow-card);
        cursor: pointer;
        transition: var(--transition);
        border: 1px solid transparent;
    }
    .cat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--ivory-dark); }

    .cat-img-wrap {
        position: relative;
        height: 200px;
        overflow: hidden;
        background: var(--forest-mid);
    }
    .cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .cat-card:hover .cat-img-wrap img { transform: scale(1.07); }

    .cat-icon-fallback,
    .cat-icon-fb {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: var(--sage);
    }

    .cat-overlay {
        position: absolute;
        inset: 0;
        background: rgba(28, 58, 43, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }
    .cat-card:hover .cat-overlay { opacity: 1; }
    .cat-overlay span { color: white; font-family: 'DM Serif Display', serif; font-size: 1.1rem; letter-spacing: 0.5px; }

    .cat-body { padding: 22px 20px; }
    .cat-body h3 { font-size: 1.2rem; margin-bottom: 6px; font-family: 'DM Serif Display', serif; }
    .cat-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }

    /* ================= MARQUEE STRIP ================= */
    .marquee-strip {
        background: var(--ivory-dark);
        overflow: hidden;
        border-top: 1px solid rgba(28, 58, 43, 0.08);
        border-bottom: 1px solid rgba(28, 58, 43, 0.08);
        padding: 16px 0;
    }
    .marquee-track {
        display: flex;
        gap: 40px;
        animation: marqueeMove 28s linear infinite;
        white-space: nowrap;
    }
    .marquee-track span { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--forest-mid); flex-shrink: 0; }
    .marquee-track .sep { color: var(--terracotta); font-size: 0.7rem; }
    @keyframes marqueeMove {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ================= PRODUCT SECTION ================= */
    .featured-shop { padding: 90px 5%; }

    /* Filter tabs */
    .filter-tabs { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
    .filter-tab {
        background: transparent;
        border: 1.5px solid var(--ivory-dark);
        color: var(--text-mid);
        padding: 9px 22px;
        border-radius: 30px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
    }
    .filter-tab:hover,
    .filter-tab.active { background: var(--forest); color: white; border-color: var(--forest); }

    /* Product grid — 4 cols (home), 3 cols fallback */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }

    .product-card {
        background: white;
        border-radius: var(--radius-card);
        padding: 10px;
        box-shadow: var(--shadow-card);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        border: 1px solid transparent;
        text-decoration: none;
        color: inherit;
    }
    .product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); border-color: var(--ivory-dark); }

    .img-container {
        position: relative;
        height: 280px;
        border-radius: 14px;
        overflow: hidden;
        background: var(--ivory);
    }
    .img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
    .img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--sage); }
    .product-card:hover .img-container img { transform: scale(1.06); }

    /* Badges */
    .badge {
        position: absolute;
        top: 14px;
        left: 14px;
        padding: 5px 12px;
        font-size: 0.72rem;
        font-weight: 700;
        border-radius: 20px;
        letter-spacing: 1px;
        z-index: 2;
        font-family: sans-serif;
    }
    .badge-sale { background: var(--terracotta); color: white; }
    .badge-oos  { background: rgba(0, 0, 0, 0.5); color: white; backdrop-filter: blur(4px); }

    /* Card action buttons */
    .card-actions {
        position: absolute;
        bottom: 14px;
        right: 14px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        z-index: 3;
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }
    .product-card:hover .card-actions { opacity: 1; transform: translateX(0); }

    .action-btn {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.92);
        border: none;
        border-radius: 50%;
        font-size: 0.9rem;
        color: var(--forest);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        backdrop-filter: blur(6px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .action-btn:hover { background: var(--terracotta); color: white; transform: scale(1.1); }
    .action-btn.wishlisted,
    .wishlist-btn.active { background: #e74c3c !important; color: white !important; }
    .wishlist-btn:hover  { background: #e74c3c; color: white; }

    /* Product info */
    .product-info { padding: 16px 8px 8px; display: flex; flex-direction: column; gap: 8px; }
    .product-info h3 { font-size: 1.1rem; font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.3; }

    .price-row { display: flex; justify-content: space-between; align-items: center; }
    .price { font-weight: 600; color: var(--forest); font-size: 1.15rem; font-family: 'DM Serif Display', serif; }
    .old-price { text-decoration: line-through; color: var(--text-light); font-size: 0.9rem; margin-left: 8px; font-weight: 400; }

    .stock-tag {
        font-size: 0.78rem;
        color: var(--sage);
        font-family: 'Cormorant Garamond', serif;
        background: rgba(61, 115, 88, 0.08);
        padding: 3px 10px;
        border-radius: 20px;
    }
    .stock-tag.low { color: var(--terracotta); background: rgba(201, 105, 74, 0.1); }

    .empty-state { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--text-light); }
    .empty-state i { font-size: 3rem; margin-bottom: 16px; display: block; color: var(--sage); }

    /* ================= CTA BANNER ================= */
    .cta-banner {
        background: linear-gradient(135deg, var(--forest) 0%, #0E2A20 100%);
        margin: 0 5% 90px;
        border-radius: 28px;
        display: flex;
        align-items: center;
        overflow: hidden;
        min-height: 380px;
        position: relative;
    }
    .cta-content { padding: 64px 60px; flex: 1; z-index: 2; }
    .cta-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: white; margin-bottom: 18px; line-height: 1.1; }
    .cta-content h2 em { color: var(--gold); }
    .cta-content p { color: rgba(255, 255, 255, 0.65); font-size: 1.05rem; line-height: 1.7; max-width: 420px; margin-bottom: 32px; }

    .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--gold);
        color: var(--forest);
        padding: 15px 32px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1.05rem;
        border: none;
        cursor: pointer;
        transition: var(--transition);
    }
    .btn-cta:hover { background: white; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(200, 169, 110, 0.35); }

    .cta-visual { flex: 0 0 40%; display: flex; align-items: center; justify-content: center; padding: 40px; }
    .cta-plant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; transform: rotate(-4deg); }
    .cta-plant-img,
    .cpp { border-radius: 14px; background: rgba(255, 255, 255, 0.08); aspect-ratio: 1; transition: var(--transition); }
    .cta-plant-img.p1, .cpp.p1 { border-radius: var(--radius-leaf); }
    .cta-plant-img.p2, .cpp.p2 { border-radius: var(--radius-leaf-r); margin-top: 20px; }
    .cta-plant-img.p3, .cpp.p3 { border-radius: var(--radius-leaf-r); margin-top: -20px; }
    .cta-plant-img.p4, .cpp.p4 { border-radius: var(--radius-leaf); }

    /* ================= REVIEWS ================= */
    .reviews-section { padding: 90px 5%; background: var(--white); overflow: hidden; }

    .reviews-slider { overflow: hidden; cursor: grab; }
    .reviews-slider:active { cursor: grabbing; }

    .reviews-track {
        display: flex;
        gap: 24px;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .review-card {
        flex: 0 0 calc(33.333% - 16px);
        background: var(--ivory);
        border-radius: var(--radius-card);
        padding: 32px 28px;
        border: 1px solid var(--ivory-dark);
        transition: var(--transition);
    }
    .review-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: transparent; }

    .review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .reviewer-avatar {
        width: 46px;
        height: 46px;
        background: linear-gradient(135deg, var(--forest-light), var(--forest));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'DM Serif Display', serif;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    .reviewer-info { flex: 1; }
    .reviewer-info strong { display: block; font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--forest); }
    .review-stars { display: flex; gap: 3px; color: var(--gold); font-size: 0.82rem; margin-top: 3px; }
    .review-quote { color: var(--sage); font-size: 1.4rem; margin-left: auto; opacity: 0.4; }
    .review-text { color: var(--text-mid); line-height: 1.7; font-size: 1rem; font-style: italic; }

    .reviews-nav { display: flex; gap: 12px; justify-content: center; margin-top: 36px; }
    .rev-arrow {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: transparent;
        border: 1.5px solid var(--forest);
        color: var(--forest);
        font-size: 0.9rem;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .rev-arrow:hover { background: var(--forest); color: white; }

    /* ================= SHOP PAGE ================= */
    .shop-layout {
        display: flex;
        gap: 32px;
        padding: 100px 5% 80px;
        align-items: flex-start;
        min-height: 100vh;
    }

    .shop-sidebar {
        width: 270px;
        flex-shrink: 0;
        position: sticky;
        top: 90px;
        background: white;
        border-radius: var(--radius-card);
        padding: 26px 22px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--ivory-dark);
    }
    .shop-sidebar h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.1rem;
        color: var(--forest);
        margin-bottom: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .filter-clear { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--terracotta); font-weight: 500; }
    .filter-clear:hover { text-decoration: underline; }

    .filter-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--ivory-dark); }
    .filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .filter-lbl {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--terracotta);
        margin-bottom: 12px;
        display: block;
    }
    .cat-filter-list { display: flex; flex-direction: column; gap: 3px; }
    .cat-filter-link {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 8px 11px;
        border-radius: 9px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.95rem;
        color: var(--text-mid);
        transition: var(--transition);
        text-decoration: none;
    }
    .cat-filter-link:hover { background: var(--ivory); color: var(--forest); }
    .cat-filter-link.active { background: var(--forest); color: white; }

    .price-inputs { display: flex; gap: 8px; align-items: center; }
    .price-input {
        flex: 1;
        padding: 8px 11px;
        border: 1.5px solid var(--ivory-dark);
        border-radius: 10px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.93rem;
        color: var(--forest);
        background: var(--ivory);
        outline: none;
        transition: border-color 0.2s;
        width: 100%;
    }
    .price-input:focus { border-color: var(--forest); }
    .price-sep { color: var(--text-light); font-size: 0.82rem; }

    .filter-check { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--text-mid); }
    .filter-check input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--forest); }

    .sort-sel {
        width: 100%;
        padding: 9px 12px;
        border: 1.5px solid var(--ivory-dark);
        border-radius: 10px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.95rem;
        color: var(--forest);
        background: var(--ivory);
        outline: none;
        transition: border-color 0.2s;
        appearance: none;
    }
    .sort-sel:focus { border-color: var(--forest); }

    .btn-apply {
        width: 100%;
        background: var(--forest);
        color: white;
        border: none;
        padding: 11px;
        border-radius: 11px;
        font-family: 'DM Serif Display', serif;
        font-size: 0.97rem;
        transition: var(--transition);
        margin-top: 2px;
    }
    .btn-apply:hover { background: var(--forest-mid); }

    /* Shop main area */
    .shop-main { flex: 1; min-width: 0; }
    .shop-topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 24px;
    }
    .shop-title { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--forest); }
    .shop-count { font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; color: var(--text-mid); margin-top: 2px; }
    .shop-count strong { color: var(--forest); }

    .mobile-filter-btn {
        display: none;
        align-items: center;
        gap: 8px;
        background: var(--forest);
        color: white;
        padding: 10px 18px;
        border-radius: 30px;
        border: none;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.93rem;
    }

    /* Active filter tags */
    .active-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
    .filter-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--ivory-dark);
        color: var(--forest);
        padding: 4px 11px;
        border-radius: 20px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.82rem;
        font-weight: 500;
    }
    .filter-tag a { color: var(--terracotta); margin-left: 2px; text-decoration: none; font-size: 0.88rem; }

    /* Shop search bar */
    .shop-search-wrap { position: relative; margin-bottom: 28px; }
    .shop-search-inner {
        display: flex;
        align-items: center;
        gap: 12px;
        background: white;
        border: 1.5px solid var(--ivory-dark);
        border-radius: 50px;
        padding: 12px 20px;
        box-shadow: var(--shadow-card);
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .shop-search-inner:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(28, 58, 43, 0.08); }
    .shop-search-inner i { color: var(--text-light); flex-shrink: 0; }
    .shop-search-input {
        flex: 1;
        border: none;
        outline: none;
        font-family: 'DM Serif Display', serif;
        font-size: 1.05rem;
        color: var(--forest);
        background: transparent;
    }
    .shop-search-input::placeholder { color: var(--text-light); }
    .shop-search-btn {
        background: var(--forest);
        color: white;
        border: none;
        padding: 9px 20px;
        border-radius: 30px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.92rem;
        transition: var(--transition);
    }
    .shop-search-btn:hover { background: var(--forest-mid); }
    .shop-sugg-drop {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        background: white;
        border-radius: 16px;
        box-shadow: var(--shadow-hover);
        border: 1px solid var(--ivory-dark);
        z-index: 200;
        overflow: hidden;
        display: none;
        max-height: 360px;
        overflow-y: auto;
    }
    .shop-sugg-drop.open { display: block; }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 44px;
        flex-wrap: wrap;
    }
    .page-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.97rem;
        color: var(--text-mid);
        border: 1.5px solid var(--ivory-dark);
        text-decoration: none;
        transition: var(--transition);
        background: white;
    }
    .page-btn:hover,
    .page-btn.active { background: var(--forest); color: white; border-color: var(--forest); }
    .page-btn.disabled { opacity: 0.3; pointer-events: none; }

    /* Mobile filter drawer */
    .filter-drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(28, 58, 43, 0.4);
        z-index: 500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        backdrop-filter: blur(4px);
    }
    .filter-drawer-overlay.active { opacity: 1; visibility: visible; }
    .filter-drawer {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 290px;
        max-width: 90vw;
        background: white;
        z-index: 501;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 24px;
    }
    .filter-drawer.active { transform: translateX(0); }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
    .drawer-header h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--forest); }
    .drawer-close { background: none; border: none; font-size: 1rem; color: var(--text-light); }

    /* ================= CART PAGE ================= */
    .cart-page { padding: 100px 5% 80px; }
    .cart-page-title { font-size: 2rem; margin-bottom: 36px; }

    .cart-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 32px;
        align-items: flex-start;
    }

    .cart-items-card {
        background: white;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        overflow: hidden;
        border: 1px solid var(--ivory-dark);
    }
    .cart-items-header {
        padding: 20px 28px;
        border-bottom: 1px solid var(--ivory-dark);
        font-family: 'DM Serif Display', serif;
        font-size: 1.05rem;
        color: var(--forest);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-item-row {
        display: flex;
        gap: 18px;
        padding: 20px 28px;
        border-bottom: 1px solid var(--ivory-dark);
        align-items: center;
    }
    .cart-item-row:last-child { border-bottom: none; }
    .cart-item-thumb { width: 90px; height: 90px; border-radius: 12px; object-fit: cover; background: var(--ivory); flex-shrink: 0; }
    .cart-item-details { flex: 1; min-width: 0; }
    .cart-item-details h4 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; font-weight: 400; margin-bottom: 5px; }
    .cart-item-details .cat-tag { font-size: 0.78rem; color: var(--text-light); margin-bottom: 8px; display: block; }
    .cart-item-details .item-price { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--forest); font-weight: 600; }

    .qty-ctrl { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
    .qc-btn {
        width: 30px;
        height: 30px;
        background: var(--ivory);
        border: 1px solid var(--ivory-dark);
        border-radius: 50%;
        font-size: 0.88rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    .qc-btn:hover { background: var(--forest); color: white; border-color: var(--forest); }
    .qc-num { font-family: 'DM Serif Display', serif; min-width: 22px; text-align: center; font-size: 1rem; }

    .remove-btn {
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 0.82rem;
        transition: var(--transition);
        padding: 4px;
    }
    .remove-btn:hover { color: var(--terracotta); }
    .item-subtotal { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--forest); font-weight: 600; flex-shrink: 0; white-space: nowrap; }

    /* Cart summary */
    .cart-summary {
        background: white;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        padding: 28px;
        border: 1px solid var(--ivory-dark);
        position: sticky;
        top: 90px;
    }
    .cart-summary h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 22px; }

    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--ivory-dark);
        font-family: 'Cormorant Garamond', serif;
        font-size: 1rem;
        color: var(--text-mid);
    }
    .summary-row:last-of-type { border-bottom: none; }
    .summary-row strong { color: var(--forest); font-family: 'DM Serif Display', serif; font-size: 1.1rem; }
    .summary-row .discount { color: #22C55E; }

    .coupon-row { display: flex; gap: 8px; margin: 16px 0; }
    .coupon-input {
        flex: 1;
        padding: 11px 14px;
        border: 1.5px solid var(--ivory-dark);
        border-radius: 10px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.95rem;
        outline: none;
        transition: border-color 0.2s;
    }
    .coupon-input:focus { border-color: var(--forest); }
    .btn-apply-coupon {
        background: var(--forest);
        color: white;
        border: none;
        padding: 11px 18px;
        border-radius: 10px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.92rem;
        transition: var(--transition);
    }
    .btn-apply-coupon:hover { background: var(--forest-mid); }

    .btn-checkout-big {
        width: 100%;
        background: var(--terracotta);
        color: white;
        border: none;
        padding: 16px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: var(--transition);
        margin-top: 18px;
    }
    .btn-checkout-big:hover { background: var(--terracotta-lt); transform: translateY(-2px); }

    /* Empty cart page */
    .cart-empty-page { text-align: center; padding: 80px 20px; }
    .cart-empty-page i { font-size: 3.5rem; color: var(--sage); margin-bottom: 18px; display: block; }
    .cart-empty-page h2 { font-size: 1.8rem; margin-bottom: 10px; }
    .cart-empty-page p { color: var(--text-mid); margin-bottom: 24px; }
    .btn-shop-now {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--forest);
        color: white;
        padding: 14px 30px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        transition: var(--transition);
    }
    .btn-shop-now:hover { background: var(--terracotta); color: white; }

    /* ================= WISHLIST PAGE ================= */
    .wishlist-page { padding: 100px 5% 80px; }
    .wishlist-page h1 { font-size: 2rem; margin-bottom: 32px; }
    .wishlist-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
    }

    /* ================= CHECKOUT PAGE ================= */
    .checkout-page { padding: 100px 5% 80px; }
    .checkout-page h1 { font-size: 2rem; margin-bottom: 36px; }

    .checkout-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 32px;
        align-items: flex-start;
    }
    .checkout-card {
        background: white;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        padding: 32px;
        border: 1px solid var(--ivory-dark);
        margin-bottom: 24px;
    }
    .checkout-card h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.15rem;
        margin-bottom: 22px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--ivory-dark);
    }

    .form-group { margin-bottom: 18px; }
    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-mid);
        margin-bottom: 8px;
    }
    .form-control {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid var(--ivory-dark);
        border-radius: 11px;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1rem;
        color: var(--text-dark);
        background: white;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(28, 58, 43, 0.07); }
    .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

    .payment-methods { display: flex; flex-direction: column; gap: 12px; }
    .pay-option {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        border: 1.5px solid var(--ivory-dark);
        border-radius: 12px;
        cursor: pointer;
        transition: var(--transition);
    }
    .pay-option:hover,
    .pay-option.selected { border-color: var(--forest); background: rgba(28, 58, 43, 0.03); }
    .pay-option input[type="radio"] { accent-color: var(--forest); width: 16px; height: 16px; }
    .pay-option-label { font-family: 'DM Serif Display', serif; font-size: 1rem; color: var(--forest); }
    .pay-option-sub { font-size: 0.82rem; color: var(--text-light); }
    .pay-option-icon { font-size: 1.3rem; color: var(--forest-light); margin-left: auto; }

    .checkout-summary { position: sticky; top: 90px; }
    .order-items-list { margin-bottom: 20px; }
    .order-item-mini { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--ivory-dark); }
    .order-item-mini:last-child { border-bottom: none; }
    .order-item-mini img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; background: var(--ivory); }
    .order-item-mini-info { flex: 1; }
    .order-item-mini-info h4 { font-family: 'DM Serif Display', serif; font-size: 0.92rem; font-weight: 400; }
    .order-item-mini-info span { font-size: 0.8rem; color: var(--text-light); }
    .order-item-mini-price { font-family: 'DM Serif Display', serif; font-size: 0.97rem; color: var(--forest); font-weight: 600; white-space: nowrap; }

    .btn-place-order {
        width: 100%;
        background: var(--forest);
        color: white;
        border: none;
        padding: 16px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: var(--transition);
        margin-top: 18px;
    }
    .btn-place-order:hover { background: var(--terracotta); transform: translateY(-2px); }
    .btn-place-order:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    .razorpay-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
        font-size: 0.78rem;
        color: var(--text-light);
    }
    .razorpay-badge i { color: #3395ff; }

    /* ================= ORDER SUCCESS ================= */
    .success-page { padding: 100px 5% 80px; max-width: 700px; margin: 0 auto; text-align: center; }
    .success-icon {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, var(--forest-light), var(--forest));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        color: white;
        margin: 0 auto 28px;
        animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    @keyframes popIn {
        0%   { transform: scale(0); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }
    .success-page h1 { font-size: 2.4rem; margin-bottom: 10px; }
    .success-page .order-id { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text-mid); margin-bottom: 32px; }

    .success-card {
        background: white;
        border-radius: var(--radius-card);
        padding: 28px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--ivory-dark);
        text-align: left;
        margin-bottom: 22px;
    }
    .success-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 18px; }

    .success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
    .btn-success-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--forest);
        color: white;
        padding: 14px 28px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        transition: var(--transition);
    }
    .btn-success-primary:hover { background: var(--terracotta); color: white; }
    .btn-success-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--forest);
        padding: 13px 26px;
        border-radius: var(--radius-leaf);
        font-family: 'DM Serif Display', serif;
        font-size: 1rem;
        border: 1.5px solid var(--forest);
        transition: var(--transition);
    }
    .btn-success-outline:hover { background: var(--forest); color: white; }

    /* ================= COLLECTIONS PAGE ================= */
    .collections-page { padding: 100px 5% 80px; }
    .collections-hero { text-align: center; margin-bottom: 56px; }
    .collections-hero h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); margin-bottom: 14px; }
    .collections-hero p { color: var(--text-mid); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

    .collections-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .collection-card {
        background: white;
        border-radius: var(--radius-card);
        overflow: hidden;
        box-shadow: var(--shadow-card);
        transition: var(--transition);
        border: 1px solid transparent;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
    }
    .collection-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--ivory-dark); }
    .collection-img { height: 240px; overflow: hidden; background: var(--forest-mid); position: relative; }
    .collection-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .collection-card:hover .collection-img img { transform: scale(1.06); }
    .collection-count {
        position: absolute;
        bottom: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--forest);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        font-family: sans-serif;
        backdrop-filter: blur(6px);
    }
    .collection-info { padding: 22px; }
    .collection-info h3 { font-size: 1.2rem; margin-bottom: 6px; }
    .collection-info p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }
    .collection-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--terracotta);
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.92rem;
        font-weight: 600;
        margin-top: 12px;
        transition: gap 0.2s;
    }
    .collection-card:hover .collection-cta { gap: 10px; }

    /* ================= PROFILE PAGE ================= */
    .profile-page { padding: 120px 5% 80px; max-width: 1100px; margin: 0 auto; }

    .profile-hero {
        background: var(--forest);
        border-radius: 28px;
        padding: 48px;
        color: white;
        display: flex;
        align-items: center;
        gap: 32px;
        margin-bottom: 32px;
    }
    .profile-avatar {
        width: 90px;
        height: 90px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'DM Serif Display', serif;
        font-size: 2.5rem;
        color: white;
        flex-shrink: 0;
        border: 3px solid rgba(255, 255, 255, 0.2);
    }
    .profile-hero-info h2 { font-size: 1.8rem; color: white; margin-bottom: 4px; }
    .profile-hero-info p { color: rgba(255, 255, 255, 0.6); font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

    .profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }

    .profile-card {
        background: white;
        border-radius: var(--radius-card);
        padding: 32px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--ivory-dark);
    }
    .profile-card h3 {
        font-family: 'DM Serif Display', serif;
        font-size: 1.15rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--forest);
    }
    .profile-card h3 i { color: var(--terracotta); font-size: 0.95rem; }

    .info-row { display: flex; flex-direction: column; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--ivory-dark); }
    .info-row:last-child { border-bottom: none; }
    .info-row label { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); font-family: 'Cormorant Garamond', serif; }
    .info-row span { font-size: 1rem; color: var(--text-dark); }

    .orders-table-wrap {
        background: white;
        border-radius: var(--radius-card);
        padding: 32px;
        box-shadow: var(--shadow-card);
        border: 1px solid var(--ivory-dark);
    }

    /* ============================================================
    RESPONSIVE MEDIA QUERIES
    ============================================================ */

    /* Large tablets */
    @media (max-width: 1200px) {
        .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
        .trust-bar { grid-template-columns: repeat(2, 1fr); }
        .trust-item:nth-child(2) { border-right: none; }
        .product-grid { grid-template-columns: repeat(3, 1fr); }
        .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
        .collections-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Tablets */
    @media (max-width: 1024px) {
        .category-wrapper { grid-template-columns: repeat(2, 1fr); }
        .review-card { flex: 0 0 calc(50% - 12px); }
        .cta-visual { display: none; }
        .cta-banner { justify-content: center; }
        .cta-content { padding: 56px 48px; text-align: center; }
        .cta-content p { margin-left: auto; margin-right: auto; }
        .cart-layout { grid-template-columns: 1fr; }
        .cart-summary { position: static; }
        .checkout-layout { grid-template-columns: 1fr; }
        .checkout-summary { position: static; }
        .profile-grid { grid-template-columns: 1fr; }
    }

    /* Shop sidebar collapse */
    @media (max-width: 900px) {
        .shop-layout { flex-direction: column; padding-top: 90px; }
        .shop-sidebar { display: none; }
        .mobile-filter-btn { display: flex; }
        .collections-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .offer-strip { height: 32px; }
        .strip-item { font-size: 0.76rem; }

        .navbar { padding: 14px 5%; top: 32px; }
        .navbar.scrolled { top: 0; padding: 10px 5%; }

        .menu-toggle { display: block; }
        .hide-mobile { display: none !important; }

        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            align-items: center;
            padding: 0;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            box-shadow: 0 12px 24px rgba(28, 58, 43, 0.1);
            z-index: 1000;
        }
        .nav-links.active {
            padding: 20px 0;
            max-height: 100vh;
            height: calc(100vh - 64px);
            overflow-y: auto;
        }
        .nav-links li { width: 100%; text-align: center; padding: 14px 0; }
        .nav-links a { color: var(--text-dark) !important; }

        /* Mega drop disabled on mobile */
        .has-drop:hover .mega-drop { display: none; }
        .mega-drop { position: static; transform: none; box-shadow: none; border: none; padding: 4px 0; opacity: 1; visibility: visible; display: none; }
        .has-drop.open .mega-drop { display: block; }

        .slider-arrow { width: 40px; height: 40px; font-size: 0.8rem; }
        .slider-arrow.prev { left: 3%; }
        .slider-arrow.next { right: 3%; }
        .slide-content { padding: 0 6%; }
        .slide-heading { font-size: 2.6rem; }
        .slide-desc { font-size: 1rem; }

        .trust-bar { grid-template-columns: 1fr 1fr; }
        .trust-item { padding: 16px 20px; }
        .trust-item:nth-child(2),
        .trust-item:nth-child(4) { border-right: none; }
        .trust-item:nth-child(1),
        .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

        .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
        .img-container { height: 220px; }

        .review-card { flex: 0 0 calc(90vw - 40px); }
        .reviews-track { padding-left: 5%; }

        .cta-banner { margin: 0 4% 70px; }
        .cta-content { padding: 48px 32px; }

        .footer-top { grid-template-columns: 1fr; gap: 32px; }
        .footer-bottom { flex-direction: column; text-align: center; }

        .profile-hero { flex-direction: column; text-align: center; padding: 36px 28px; }

        .cart-item-row { flex-wrap: wrap; }
        .row-2 { grid-template-columns: 1fr; }

        .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* Small phones */
    @media (max-width: 480px) {
        .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .img-container { height: 190px; }
        .category-wrapper { grid-template-columns: 1fr; }
        .trust-bar { grid-template-columns: 1fr; }
        .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important; }
        .trust-item:last-child { border-bottom: none !important; }

        .slide-heading { font-size: 2.1rem; }
        .btn-slide,
        .btn-hero { padding: 13px 24px; font-size: 0.95rem; }
        .scroll-hint { display: none; }

        .split-header { flex-direction: column; align-items: flex-start; gap: 14px; }
        .filter-tabs { gap: 8px; }
        .filter-tab { padding: 8px 16px; font-size: 0.9rem; }

        .cta-content { padding: 40px 24px; }
        .cart-sidebar { width: 100%; max-width: 100%; }

        .collections-grid { grid-template-columns: 1fr; }
        .wishlist-grid { grid-template-columns: 1fr; }

        .success-actions { flex-direction: column; align-items: center; }
        .rating-summary { flex-direction: column; gap: 12px; }
    }

    /* Very small phones */
    @media (max-width: 360px) {
        .slide-heading { font-size: 1.8rem; }
        .slide-tag { font-size: 0.72rem; letter-spacing: 1.5px; }
    }

    /* ================= FOOTER ================= */
    .site-footer {
        background: var(--text-dark);
        color: rgba(255, 255, 255, 0.8);
        padding: 72px 5% 0;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 2fr;
        gap: 48px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.5);
        margin: 20px 0 24px;
        max-width: 280px;
        font-family: 'Cormorant Garamond', serif;
    }
    .footer-logo { height: 46px; filter: brightness(0) invert(1); opacity: 0.9; }

    .social-links { display: flex; gap: 12px; }
    .social-links a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        transition: var(--transition);
    }
    .social-links a:hover { background: var(--terracotta); color: white; transform: translateY(-3px); }

    .footer-links h4 { font-family: 'DM Serif Display', serif; color: white; font-size: 1.05rem; margin-bottom: 20px; font-weight: 400; }
    .footer-links a { display: block; color: rgba(255, 255, 255, 0.45); font-size: 0.9rem; margin-bottom: 12px; font-family: 'Cormorant Garamond', serif; transition: var(--transition); }
    .footer-links a:hover { color: white; padding-left: 6px; }

    .footer-newsletter h4 { font-family: 'DM Serif Display', serif; color: white; font-size: 1.05rem; margin-bottom: 10px; font-weight: 400; }
    .footer-newsletter p { color: rgba(255, 255, 255, 0.45); font-size: 0.9rem; margin-bottom: 18px; font-family: 'Cormorant Garamond', serif; }

    .newsletter-form {
        display: flex;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .newsletter-form input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        padding: 13px 20px;
        color: white;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.95rem;
    }
    .newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.3); }
    .newsletter-form button { background: var(--terracotta); border: none; color: white; padding: 13px 20px; cursor: pointer; font-size: 0.9rem; transition: background 0.3s; }
    .newsletter-form button:hover { background: var(--terracotta-lt); }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 0;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.3);
        font-family: 'Cormorant Garamond', serif;
        flex-wrap: wrap;
        gap: 10px;
    }

    .slide{
        min-width:100%;
        height:100%;
    }

    .slide-bg{
        overflow:hidden;
    }

    .product-cart-box{
        background:#fff;
    }

    .product-cart-box input{
        font-size:1.1rem;
        font-weight:700;
        color:var(--forest);
    }

    /* CATEGORY LIST */

    .cat-filter-list{
        max-height:180px;
        overflow-y:auto;
        display:flex;
        flex-direction:column;
        gap:8px;
        padding-right:6px;
    }

    .filter-radio{
        display:flex;
        align-items:center;
        gap:10px;
        cursor:pointer;
        padding:6px 2px;
        font-size:.92rem;
        color:#333;
    }

    .filter-radio input{
        accent-color:#2874f0;
        width:16px;
        height:16px;
        flex-shrink:0;
    }

    .filter-radio:hover{
        color:#2874f0;
    }

    .cat-filter-list::-webkit-scrollbar{
        width:5px;
    }

    .cat-filter-list::-webkit-scrollbar-thumb{
        background:#d1d5db;
        border-radius:20px;
    }

    .shop-search-wrap{
        position:relative;
    }

    .shop-sugg-drop{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:#fff;
        border:1px solid #ddd;
        border-radius:16px;
        margin-top:8px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        max-height:450px;
        overflow-y:auto;
        display:none;
        z-index:9999;
    }

    .sugg-category{
        padding:12px 16px;
        background:#f7f7f7;
        font-weight:700;
        color:#1f5133;
        border-bottom:1px solid #eee;
    }

    .sugg-item{
        display:flex;
        align-items:center;
        gap:12px;
        padding:12px 16px;
        text-decoration:none;
        color:#222;
        border-bottom:1px solid #f3f3f3;
    }

    .sugg-item:hover{
        background:#f8faf8;
    }

    .sugg-item img{
        width:50px;
        height:50px;
        object-fit:cover;
        border-radius:10px;
    }

    .sugg-name{
        font-weight:600;
    }

    .sugg-price{
        font-size:.85rem;
        color:#666;
    }

    .sugg-empty{
        padding:20px;
        text-align:center;
    }

    .sugg-info{
    display:flex;
    flex-direction:column;
}

.sugg-title{
    font-size:18px;
    font-weight:600;
    color:#244531;
}

.sugg-subtitle{
    font-size:13px;
    color:#8a8a8a;
    margin-top:2px;
}

.sugg-thumb{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:10px;
}

.sugg-category-link,
.sugg-product-link{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.sugg-category-link{
    padding:14px 18px;
    border-bottom:1px solid #ececec;
}

.sugg-product-link{
    padding:12px 18px 12px 50px;
}


/* ========================================== CART DRAWER PRODUCTS ========================================== */ 
.cart-product-item{ display:flex; flex-direction:row; align-items:flex-start; gap:18px; padding:18px 0; border-bottom:1px solid var(--ivory-dark); } .cart-item-img{ flex-shrink:0; } .cart-item-details{ flex:1; min-width:0; } .cart-item-qty{ display:flex; align-items:center; gap:12px;}

/* ============================================================
   SSD NURSERY — Mobile Responsive Fixes (v2 — COMPLETE)
   Add these rules at the very END of your style.css
   ============================================================ */

/* ── SHOP PAGE LAYOUT ────────────────────────────────────── */
@media (max-width: 768px) {

  /*
    Navbar sits at: offer-strip (32px) + navbar min-height (~64px) = ~96px
    Add comfortable breathing room → 110px top padding
  */
  .shop-layout {
    padding: 110px 14px 60px;
    flex-direction: column;
    gap: 16px;
    min-height: unset;
  }

  /* Sidebar hidden on mobile — already in base CSS, reinforce */
  .shop-sidebar {
    display: none !important;
  }

  /* ── TOPBAR: Filters button + "All Plants" title ── */
  .shop-topbar {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    text-align: center;
  }

  .shop-topbar > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  /* Force the mobile filter button visible */
  .mobile-filter-btn {
    display: flex !important;
    align-items: center;
    gap: 7px;
    background: var(--forest);
    color: white;
    padding: 9px 20px;
    border-radius: 24px;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    order: 2;          /* appears below the title */
  }

  /* Title + count block — centered */
  .shop-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--forest);
    text-align: center;
    order: 0;
  }

  .shop-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--text-mid);
    text-align: center;
    order: 1;
  }

  .shop-count strong {
    color: var(--forest);
  }

  /* Hide the sort form in topbar on mobile (sidebar handles it) */
  .shop-topbar > form {
    display: none;
  }

  /* ── SEARCH BAR ── */
  .shop-search-wrap {
    margin-bottom: 16px;
  }

  .shop-search-inner {
    padding: 10px 14px;
    gap: 8px;
    border-radius: 50px;
  }

  .shop-search-input {
    font-size: 0.93rem;
    min-width: 0;
    flex: 1;
  }

  .shop-search-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 30px;
  }

  /* ── PRODUCT GRID ── */
  .shop-main {
    width: 100%;
    min-width: 0;
  }

  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  /* ── PRODUCT CARD ── */
  .product-card {
    padding: 7px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(28,58,43,0.09);
  }

  .img-container {
    height: 155px;
    border-radius: 11px;
  }

  .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ── PRICE ROW: stack vertically so "In Stock" never overlaps ── */
  .product-info {
    padding: 10px 5px 5px;
    gap: 5px;
  }

  .product-info h3 {
    font-size: 0.9rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px;
  }

  .price {
    font-size: 0.97rem;
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    line-height: 1.2;
  }

  .old-price {
    font-size: 0.76rem;
    margin-left: 0;
  }

  .stock-tag {
    font-size: 0.68rem;
    padding: 2px 8px;
    align-self: flex-start;
    border-radius: 20px;
  }

  /* ── BADGES (SALE / Sold Out) ── */
  .badge {
    font-size: 0.6rem;
    padding: 4px 9px;
    top: 9px;
    left: 9px;
    letter-spacing: 0.5px;
  }

  /* ── ACTIVE FILTER TAGS ── */
  .active-filters {
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .filter-tag {
    font-size: 0.75rem;
    padding: 3px 9px;
  }

  /* ── PAGINATION ── */
  .pagination {
    margin-top: 28px;
    gap: 5px;
  }

  .page-btn {
    width: 34px;
    height: 34px;
    font-size: 0.86rem;
  }

  /* ── NAVBAR ── */
  .navbar {
    padding: 10px 4% !important;
    min-height: 64px !important;
    top: 32px;
  }

  .navbar.scrolled {
    top: 0 !important;
    padding: 10px 4% !important;
    min-height: 64px !important;
  }

  .brand-logo {
    height: 38px;
  }

  .nav-actions {
    gap: 8px;
  }

  .icon-btn {
    font-size: 16px;
    padding: 3px;
  }

  /* ── OFFER STRIP ── */
  .offer-strip {
    height: 32px;
  }

  .strip-item {
    font-size: 0.76rem;
  }

  /* ── HERO SLIDER (home page) ── */
  .hero-slider {
    margin-top: 96px;
  }
}

/* ── VERY SMALL PHONES (≤ 390px) ────────────────────────── */
@media (max-width: 390px) {

  .shop-layout {
    padding: 106px 10px 50px;
  }

  .product-grid {
    gap: 9px;
  }

  .img-container {
    height: 138px;
  }

  .product-info h3 {
    font-size: 0.82rem;
  }

  .price {
    font-size: 0.88rem;
  }

  .shop-search-btn {
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .mobile-filter-btn {
    padding: 8px 13px;
    font-size: 0.82rem;
  }

  .shop-title {
    font-size: 1.1rem;
  }

  .brand-logo {
    height: 34px;
  }

  .icon-btn {
    font-size: 15px;
  }

  .offer-strip {
    height: 28px;
  }

  .badge {
    font-size: 0.56rem;
    padding: 3px 7px;
  }
}

/* ── TRUST BAR on mobile ─────────────────────────────────── */
@media (max-width: 480px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    gap: 10px;
    padding: 13px 14px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item:nth-child(2),
  .trust-item:nth-child(4) {
    border-right: none;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .trust-item i {
    font-size: 1.3rem;
  }

  .trust-item strong {
    font-size: 0.82rem;
  }

  .trust-item span {
    font-size: 0.72rem;
  }
}

/* ── FILTER DRAWER (mobile) ──────────────────────────────── */
@media (max-width: 768px) {
  .filter-drawer {
    width: 300px;
    max-width: 88vw;
    padding: 20px 18px;
  }

  .drawer-header h3 {
    font-size: 1.1rem;
  }

  .filter-lbl {
    font-size: 0.72rem;
  }

  .filter-radio {
    font-size: 0.9rem;
    padding: 5px 2px;
  }

  .price-input {
    font-size: 0.9rem;
    padding: 7px 10px;
  }

  .sort-sel {
    font-size: 0.9rem;
    padding: 8px 11px;
  }

  .btn-apply {
    padding: 10px;
    font-size: 0.93rem;
  }
}


.product-card{
    background: white;
    border-radius: var(--radius-card);
    padding: 10px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
    position: relative;   /* ADD THIS */
}

.product-info{
    flex:1;
    display:flex;
    flex-direction:column;
}

.price-row{
    margin-top:auto;
}
.shop-variant-pill{
    padding:5px 12px;
    font-size:12px;
    font-weight:600;
    border:1.5px solid var(--ivory-dark);
    border-radius:20px;
    background:#fff;
    color:var(--text-mid);
    transition:var(--transition);
    cursor:pointer;
}

.shop-variant-pill:hover{
    border-color:var(--forest);
    color:var(--forest);
}

.shop-variant-pill.oos{
    opacity:0.4;
    text-decoration:line-through;
    cursor:not-allowed;
}

.variant-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 4px;
  border-top: 1px solid var(--border, #e8e0d5);
  animation: fadeIn .2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}