/* ==========================================================
   MISTI HUB — Herbal & Organic Brand Design System
   ========================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --clr-primary:        #2D6A2F;
    --clr-primary-light:  #4A9E4C;
    --clr-primary-dark:   #1a4a1c;
    --clr-accent:         #C8611A;
    --clr-accent-hover:   #a84e14;
    --clr-gold:           #D4A017;
    --clr-gold-light:     #f0c842;
    --clr-earth:          #5C3D11;
    --clr-earth-light:    #8c6a4e;
    --clr-cream:          #FDFAF4;
    --clr-cream-dark:     #F4EED8;
    --clr-mint:           #E8F5E1;
    --clr-mint-dark:      #c8e6c0;
    --clr-text-main:      #2c1a0e;
    --clr-text-muted:     #7a5c3e;
    --clr-bg-white:       #ffffff;
    --clr-whatsapp:       #25D366;
    --clr-highlight:      #F5C842;

    /* Legacy compat */
    --clr-text-brown:     #5C3D11;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-en:      'Poppins', sans-serif;
    --font-bn:      'Hind Siliguri', sans-serif;

    --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.10);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.13);
    --shadow-green: 0 8px 24px rgba(45,106,47,0.18);

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --radius-xl:  40px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s ease;
    --transition-slow: all 0.5s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-en);
    color: var(--clr-text-main);
    background-color: var(--clr-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: scroll;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-text-main);
    line-height: 1.25;
}

a { transition: var(--transition-fast); }

img { max-width: 100%; }

/* ---------- Typography ---------- */
.font-bn   { font-family: var(--font-bn) !important; }
.font-en   { font-family: var(--font-en) !important; }
.font-head { font-family: var(--font-heading) !important; }

.text-primary-mh  { color: var(--clr-primary) !important; }
.text-brown       { color: var(--clr-earth) !important; }
.text-accent      { color: var(--clr-accent) !important; }
.text-gold        { color: var(--clr-gold) !important; }
.text-earth-muted { color: var(--clr-earth-light) !important; }

/* ---------- Color Utilities ---------- */
.bg-mint       { background-color: var(--clr-mint) !important; }
.bg-cream      { background-color: var(--clr-cream) !important; }
.bg-primary-mh { background-color: var(--clr-primary) !important; color: #fff !important; }
.bg-earth      { background-color: var(--clr-earth) !important; }

/* ---------- Buttons ---------- */
.btn-primary-mh {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary-mh::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: var(--transition-fast);
}
.btn-primary-mh:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-green); }
.btn-primary-mh:hover::after { opacity: 1; }

.btn-orange {
    background: linear-gradient(135deg, var(--clr-accent), #e0741e);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-orange:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,97,26,0.30);
}

.btn-yellow {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
    color: var(--clr-earth);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: var(--transition);
}
.btn-yellow:hover { color: var(--clr-earth); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.30); }

/* Ripple effect */
.ripple-btn {
    position: relative;
    overflow: hidden;
}
.ripple-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}
@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--clr-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
    text-align: center;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    animation: pulse-logo 1.4s ease-in-out infinite;
}
.preloader-tagline {
    font-family: var(--font-bn);
    color: var(--clr-earth-light);
    margin-top: 8px;
    font-size: 0.95rem;
    animation: pulse-logo 1.4s ease-in-out 0.2s infinite;
}
.preloader-bar {
    width: 120px;
    height: 3px;
    background: var(--clr-mint-dark);
    border-radius: 99px;
    margin-top: 20px;
    overflow: hidden;
}
.preloader-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
    border-radius: 99px;
    animation: loading-bar 1.4s ease-in-out infinite;
}
@keyframes pulse-logo { 0%,100%{opacity:.7;transform:scale(.97)} 50%{opacity:1;transform:scale(1)} }
@keyframes loading-bar { 0%{width:0;margin-left:0} 50%{width:100%;margin-left:0} 100%{width:0;margin-left:100%} }

/* ---------- NAVBAR ---------- */
.mh-navbar {
    background: rgba(253,250,244,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 16px rgba(45,106,47,0.08);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(200,230,192,0.5);
    position: sticky;
    top: 0;
    z-index: 1030;
}
.mh-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(45,106,47,0.13);
    background: rgba(253,250,244,0.98);
}

.mh-logo-text {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.mh-logo-text span.logo-main { color: var(--clr-primary); }
.mh-logo-text span.logo-accent { color: var(--clr-accent); }
.mh-logo-tagline {
    font-family: var(--font-bn);
    font-size: 0.55rem;
    color: var(--clr-earth-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.mh-logo-img { height: 48px; object-fit: contain; }

/* Nav icon buttons */
.nav-icon-btn {
    background: none;
    border: none;
    color: var(--clr-earth);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
}
.nav-icon-btn:hover { color: var(--clr-primary); background: var(--clr-mint); }

/* Cart badge */
.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    background: var(--clr-accent);
    color: #fff;
    border-radius: 99px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    animation: badge-bounce 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes badge-bounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }

/* Search bar */
#nav-search-wrapper {
    transition: var(--transition);
}
#nav-search-input {
    border: 1.5px solid var(--clr-mint-dark);
    border-radius: 99px;
    background: #fff;
    padding: 6px 16px 6px 16px;
    font-family: var(--font-en);
    transition: var(--transition-fast);
}
#nav-search-input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(45,106,47,0.12);
    outline: none;
}
#search-results-dropdown {
    z-index: 1000;
    max-height: 380px;
    overflow-y: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-mint-dark);
    box-shadow: var(--shadow-md);
}

/* ---------- TRUST TICKER ---------- */
.trust-ticker {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: #fff;
    padding: 9px 0;
    overflow: hidden;
}
.trust-ticker-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 22s linear infinite;
    font-family: var(--font-bn);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.trust-ticker-inner .divider {
    margin: 0 20px;
    color: var(--clr-gold);
    font-weight: 900;
}
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ---------- HERO ---------- */
.hero-section {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, #4a7c3f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='40' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
    background-size: 80px;
}

/* Hero Carousel overrides */
.hero-carousel-wrap { position: relative; }
.hero-carousel-wrap .carousel-item img {
    width: 100%;
    object-fit: cover;
    height: 360px;
    max-height: 50vh;
}
@media(min-width: 768px) { .hero-carousel-wrap .carousel-item img { height: 480px; } }
.hero-carousel-wrap .carousel-control-prev,
.hero-carousel-wrap .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 12px;
    opacity: 0;
    transition: var(--transition);
}
.hero-carousel-wrap:hover .carousel-control-prev,
.hero-carousel-wrap:hover .carousel-control-next { opacity: 1; }
.hero-carousel-wrap .carousel-control-prev-icon,
.hero-carousel-wrap .carousel-control-next-icon { filter: invert(1) saturate(0) brightness(0); }
.hero-carousel-wrap .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
    transition: var(--transition-fast);
}
.hero-carousel-wrap .carousel-indicators .active {
    background: #fff;
    width: 24px;
    border-radius: 99px;
}

/* Fallback hero */
.hero-fallback {
    min-height: 360px;
    background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 60%, #558b2f 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.hero-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.hero-leaf {
    position: absolute;
    opacity: 0.08;
    animation: leaf-float 6s ease-in-out infinite;
}
.hero-leaf:nth-child(1) { top: 10%; left: 5%; width: 120px; animation-delay: 0s; }
.hero-leaf:nth-child(2) { bottom: 10%; right: 8%; width: 180px; animation-delay: 2s; transform: scaleX(-1); }
.hero-leaf:nth-child(3) { top: 50%; left: 60%; width: 100px; animation-delay: 4s; }
@keyframes leaf-float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(4deg); }
    66% { transform: translateY(6px) rotate(-3deg); }
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-title .accent { color: var(--clr-gold); }
.hero-subtitle {
    font-family: var(--font-bn);
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-top: 10px;
    line-height: 1.6;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-family: var(--font-bn);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-family: var(--font-bn);
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.hero-cta-btn.primary {
    background: linear-gradient(135deg, var(--clr-accent), #e07420);
    color: #fff;
    box-shadow: 0 6px 20px rgba(200,97,26,0.4);
}
.hero-cta-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(200,97,26,0.5); color:#fff; }
.hero-cta-btn.secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
}
.hero-cta-btn.secondary:hover { background: rgba(255,255,255,0.28); color: #fff; transform: translateY(-3px); }

/* Hero illustration */
.hero-illustration { position: relative; }
.hero-illustration .herb-circle {
    width: clamp(220px, 35vw, 380px);
    height: clamp(220px, 35vw, 380px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: herb-rotate 20s linear infinite;
}
@keyframes herb-rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.herb-circle-inner {
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: herb-rotate 20s linear infinite reverse;
    font-size: clamp(4rem, 8vw, 7rem);
}

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-mint);
    color: var(--clr-primary);
    border-radius: 99px;
    padding: 5px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-bn);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--clr-earth);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
    border-radius: 99px;
}

/* ---------- CATEGORY PILLS ---------- */
.category-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}
.category-scroll-container::-webkit-scrollbar { display: none; }

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #fff;
    border: 1.5px solid var(--clr-mint-dark);
    border-radius: 99px;
    margin-right: 8px;
    color: var(--clr-earth-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-bn);
    box-shadow: var(--shadow-sm);
}
.category-pill:hover {
    background: var(--clr-mint);
    border-color: var(--clr-primary-light);
    color: var(--clr-primary);
    transform: translateY(-2px);
}
.category-pill.active {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(45,106,47,0.25);
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(200,230,192,0.3);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-mint-dark);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--clr-cream);
}
.product-img-wrapper .product-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrapper .product-img { transform: scale(1.07); }

/* Quick add overlay */
.product-quick-add-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45,106,47,0.92) 0%, transparent 100%);
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    gap: 6px;
}
.product-card:hover .product-quick-add-overlay { transform: translateY(0); }

.btn-quick-add {
    flex: 1;
    background: #fff;
    color: var(--clr-primary);
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-bn);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.btn-quick-add:hover { background: var(--clr-accent); color: #fff; }
.btn-buy-now {
    flex: 1.3;
    background: var(--clr-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-bn);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.btn-buy-now:hover { background: var(--clr-accent-hover); }

/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}
.badge-custom {
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.badge-discount { background: var(--clr-accent); color: #fff; }
.badge-sale     { background: var(--clr-primary); color: #fff; }
.badge-hot      { background: #e53935; color: #fff; }
.badge-new      { background: var(--clr-gold); color: var(--clr-earth); }

/* Sold out overlay */
.product-sold-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.sold-out-pill {
    background: #ef5350;
    color: #fff;
    border-radius: 99px;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

/* Product info */
.product-info {
    padding: 14px 14px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-family: var(--font-bn);
    font-size: 0.97rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--clr-earth);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
    transition: color 0.2s;
}
.product-title small {
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--clr-earth-light);
    display: block;
    margin-top: 2px;
}
.product-title:hover { color: var(--clr-primary); }

.price-box { margin: 8px 0 12px; }
.sale-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-accent);
}
.original-price {
    font-size: 0.82rem;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Mobile fallback quick-add button */
.btn-quick-add-mobile {
    margin-top: auto;
    width: 100%;
    border-radius: var(--radius-sm);
    padding: 9px;
    font-weight: 700;
    font-family: var(--font-bn);
    font-size: 0.85rem;
    background: linear-gradient(135deg, var(--clr-accent), #e07420);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-quick-add-mobile:hover { background: linear-gradient(135deg, var(--clr-accent-hover), #c86418); }

/* Loader overlay on image */
.img-loader-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--clr-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.mini-loader { 
    width: 36px !important; 
    height: 36px !important; 
    position: static !important; 
    opacity: 0.45;
    margin: auto;
    display: block; 
}

/* ---------- FEATURES STRIP ---------- */
.features-strip {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    border: 1px solid rgba(200,230,192,0.4);
}
.feature-item {
    text-align: center;
    padding: 16px 8px;
    transition: var(--transition);
}
.feature-item:hover { transform: translateY(-4px); }
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.6rem;
    color: var(--clr-primary);
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: var(--clr-primary);
    color: #fff;
    box-shadow: var(--shadow-green);
}
.feature-label {
    font-family: var(--font-bn);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-earth);
    line-height: 1.4;
}

/* ---------- CART DRAWER ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 15, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 420px;
    max-width: 100vw;
    height: 100dvh;
    background: #fff;
    z-index: 1050;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--clr-mint-dark);
}
.cart-drawer.open { right: 0; }

.cart-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.cart-header h5 { color: #fff; font-family: var(--font-bn); font-weight: 600; margin: 0; font-size: 1.05rem; }
.cart-close-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}
.cart-close-btn:hover { background: rgba(255,255,255,0.35); }

.cart-body { padding: 16px 18px; overflow-y: auto; flex-grow: 1; }

.cart-empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--clr-earth-light);
}
.cart-empty-state .empty-icon { font-size: 4rem; opacity: 0.3; }
.cart-empty-state p { font-family: var(--font-bn); margin-top: 12px; font-size: 1rem; }

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f0eb;
    animation: slideInRight 0.3s ease;
}
@keyframes slideInRight { from{transform:translateX(20px);opacity:0} to{transform:translateX(0);opacity:1} }
.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--clr-mint-dark);
    flex-shrink: 0;
}
.cart-item-details { flex-grow: 1; }
.cart-item-title { font-family: var(--font-bn); font-size: 0.9rem; font-weight: 600; color: var(--clr-earth); line-height: 1.3; margin-bottom: 4px; }
.cart-item-price { font-weight: 700; color: var(--clr-accent); font-size: 0.95rem; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--clr-mint-dark); border-radius: 8px; width: max-content; height: 32px; overflow: hidden; }
.qty-btn { width: 30px; height: 100%; background: var(--clr-mint); border: none; color: var(--clr-primary); font-weight: 700; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.qty-btn:hover { background: var(--clr-primary); color: #fff; }
.qty-input { width: 36px; height: 100%; border: none; border-left: 1.5px solid var(--clr-mint-dark); border-right: 1.5px solid var(--clr-mint-dark); text-align: center; font-size: 0.9rem; font-weight: 600; background: #fff; }
.qty-input:focus { outline: none; }

.cart-footer {
    padding: 16px 18px;
    background: var(--clr-cream);
    border-top: 1px solid var(--clr-mint-dark);
}

/* ---------- CHECKOUT MODAL ---------- */
.checkout-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--clr-cream);
}
.checkout-modal .modal-header {
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
    color: #fff;
    border: none;
    padding: 18px 24px;
}
.checkout-form-group { margin-bottom: 18px; }
.checkout-form-group label {
    font-family: var(--font-bn);
    font-weight: 600;
    color: var(--clr-earth);
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
}
.checkout-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--clr-mint-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-bn);
    background: #fff;
    color: var(--clr-text-main);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}
.checkout-input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(45,106,47,0.12);
    outline: none;
}

/* Shipping method radio cards */
.shipping-option {
    border: 1.5px solid var(--clr-mint-dark);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    margin-bottom: 8px;
}
.shipping-option:hover { border-color: var(--clr-primary-light); background: var(--clr-mint); }
.shipping-option.selected { border-color: var(--clr-primary); background: var(--clr-mint); }
.shipping-option input[type="radio"] { accent-color: var(--clr-primary); width: 18px; height: 18px; }

/* ---------- THANK YOU PAGE ---------- */
.thankyou-hero {
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.thankyou-check {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--clr-primary);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    animation: check-pulse 2s ease-in-out infinite, check-pop 0.6s cubic-bezier(0.36,0.07,0.19,0.97);
    margin-bottom: 20px;
}
@keyframes check-pop { 0%{transform:scale(0);opacity:0} 60%{transform:scale(1.15)} 100%{transform:scale(1);opacity:1} }
@keyframes check-pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,0.4)} 70%{box-shadow:0 0 0 18px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }

/* Confetti particles */
.confetti-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0;
    animation: confetti-fall 3s ease-in forwards;
}
@keyframes confetti-fall {
    0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--clr-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 18px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}
.wa-floating::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--clr-whatsapp);
    animation: wa-pulse 2.5s ease-out infinite;
    z-index: -1;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.7);opacity:0} }
.wa-floating:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.55); }

/* ---------- FOOTER ---------- */
.site-footer {
    background: linear-gradient(180deg, #1a3d1c 0%, #122912 100%);
    color: rgba(255,255,255,0.85);
    padding-top: 64px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-light), var(--clr-gold), var(--clr-accent));
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.footer-logo-text span { color: var(--clr-gold); }
.footer-tagline { font-family: var(--font-bn); color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 4px; }

.footer-widget-title {
    font-family: var(--font-bn);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--clr-gold);
    border-radius: 99px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-family: var(--font-bn);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before { content: '→'; font-size: 0.7rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--clr-gold); padding-left: 4px; }
.footer-links a:hover::before { transform: translateX(2px); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--clr-primary-light);
    border-color: var(--clr-primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(74,158,76,0.3);
}

.footer-trust-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 50px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-bn);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.footer-trust-item i { color: var(--clr-gold); }

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--clr-gold); }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-family: var(--font-bn);
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}
.contact-info-item i { color: var(--clr-gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-children.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:0s; }
.stagger-children.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:0.08s; }
.stagger-children.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:0.16s; }
.stagger-children.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:0.24s; }
.stagger-children.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:0.32s; }
.stagger-children.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:0.40s; }
.stagger-children.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay:0.48s; }
.stagger-children.visible > *:nth-child(8) { opacity:1; transform:none; transition-delay:0.56s; }
.stagger-children.visible > *:nth-child(n+9) { opacity:1; transform:none; transition-delay:0.64s; }

/* ---------- PRODUCT DETAIL PAGE ---------- */
.product-gallery-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--clr-cream);
    border: 1px solid rgba(200,230,192,0.4);
    aspect-ratio: 1;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-gallery-main:hover img { transform: scale(1.04); }

.product-thumbnail {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    transition: var(--transition-fast);
    flex-shrink: 0;
}
.product-thumbnail.active,
.product-thumbnail:hover { opacity: 1; border-color: var(--clr-primary); box-shadow: 0 0 0 3px rgba(45,106,47,0.15); }

.qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--clr-mint-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 52px;
    width: 140px;
}
.qty-selector button {
    width: 44px;
    height: 100%;
    background: var(--clr-mint);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--clr-primary);
    font-weight: 700;
    transition: var(--transition-fast);
}
.qty-selector button:hover { background: var(--clr-primary); color: #fff; }
.qty-selector input {
    flex: 1;
    height: 100%;
    border: none;
    border-left: 1.5px solid var(--clr-mint-dark);
    border-right: 1.5px solid var(--clr-mint-dark);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-earth);
    background: #fff;
}
.qty-selector input:focus { outline: none; }

/* Description tabs */
.desc-tab-btn {
    background: none;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-bn);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-earth-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}
.desc-tab-btn.active { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }
.desc-tab-pane { display: none; padding: 20px 0; font-family: var(--font-bn); line-height: 1.85; font-size: 1rem; }
.desc-tab-pane.active { display: block; animation: fadeIn 0.3s ease; }

/* Product info trust strip */
.product-trust-strip {
    background: var(--clr-cream);
    border: 1px solid rgba(200,230,192,0.5);
    border-radius: var(--radius-md);
    padding: 16px;
}
.product-trust-item { text-align: center; }
.product-trust-item i { font-size: 1.8rem; color: var(--clr-primary); display: block; margin-bottom: 6px; }
.product-trust-item span { font-family: var(--font-bn); font-size: 0.8rem; color: var(--clr-earth-light); line-height: 1.3; display: block; }

/* Reviews */
.review-stars { color: #f5c842; font-size: 1rem; }
.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid rgba(200,230,192,0.3);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
}

/* ---------- ACCORDION OVERRIDES ---------- */
.desc-accordion-btn {
    background: var(--clr-cream) !important;
    color: var(--clr-earth) !important;
    font-family: var(--font-bn);
    font-weight: 600;
    box-shadow: none !important;
    border: none !important;
    border-radius: var(--radius-md) !important;
}
.desc-accordion-btn:not(.collapsed) {
    background: var(--clr-mint) !important;
    color: var(--clr-primary) !important;
}

/* ---------- GENERAL UTILITIES ---------- */
.cursor-pointer { cursor: pointer; }

.glass {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
}
.glass-dark {
    background: rgba(15,40,15,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes zoomIn { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }
@keyframes pulse { 0%,100%{transform:scale(.97);opacity:.8} 50%{transform:scale(1.03);opacity:1} }

.animate__fadeIn { animation: fadeIn 0.8s ease forwards; }
.animate-fade-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.animate-fade-down { animation: fadeInDown 0.8s ease-out forwards; opacity: 0; }
.animate-fade-left { animation: fadeInLeft 0.8s ease-out forwards; opacity: 0; }
.animate-fade-right { animation: fadeInRight 0.8s ease-out forwards; opacity: 0; }
.animate-zoom-in { animation: zoomIn 0.8s ease-out forwards; opacity: 0; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { background: none; padding: 0; font-family: var(--font-bn); font-size: 0.88rem; }
.breadcrumb-item a { color: var(--clr-earth-light); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--clr-primary); }
.breadcrumb-item.active { color: var(--clr-earth); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--clr-earth-light); }

/* ---------- TRACK ORDER PAGE ---------- */
.track-order-card {
    border-radius: var(--radius-lg);
    border: none;
    background: #fff;
    box-shadow: var(--shadow-md);
}

/* ---------- PAGINATION ---------- */
.page-link {
    color: var(--clr-primary);
    border-radius: var(--radius-sm) !important;
    margin: 0 2px;
    border-color: var(--clr-mint-dark);
    transition: var(--transition-fast);
}
.page-link:hover { background: var(--clr-mint); color: var(--clr-primary); border-color: var(--clr-primary-light); }
.page-item.active .page-link { background: var(--clr-primary); border-color: var(--clr-primary); }

/* ---------- LOADER (mini) ---------- */
#preloader-bar { display:none; }
.loader-icon { width: 80px; height: 80px; animation: pulse 2s infinite ease-in-out; }
.loader-rotating { animation: rotate-pulse 2s infinite linear; }
@keyframes rotate-pulse { 0%{transform:scale(.95) rotate(0deg);opacity:.8} 50%{transform:scale(1.05) rotate(180deg);opacity:1} 100%{transform:scale(.95) rotate(360deg);opacity:.8} }

/* ==========================================================
   ✦ PREMIUM ANIMATION POLISH — MISTI HUB
   ========================================================== */

/* ---------- SCROLL PROGRESS BAR ---------- */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold), var(--clr-accent));
    z-index: 9999;
    border-radius: 0 3px 3px 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(45,106,47,0.5);
}

/* ---------- CUSTOM CURSOR ---------- */
#cursor-dot, #cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    border-radius: 50%;
    transition: opacity 0.3s;
}
#cursor-dot {
    width: 8px; height: 8px;
    background: var(--clr-accent);
    will-change: transform;
}
#cursor-ring {
    width: 36px; height: 36px;
    border: 2px solid rgba(45,106,47,0.5);
    transition: transform 0.12s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
    will-change: transform;
}
#cursor-ring.cursor-hover {
    width: 50px; height: 50px;
    border-color: var(--clr-primary);
    background: rgba(45,106,47,0.06);
}
@media (hover: none) {
    #cursor-dot, #cursor-ring { display: none; }
}

/* ---------- BUTTON SHIMMER SWEEP ---------- */
.btn-primary-mh, .btn-orange, .hero-cta-btn.primary {
    position: relative;
    overflow: hidden;
}
.btn-primary-mh::before, .btn-orange::before, .hero-cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}
.btn-primary-mh:hover::before, .btn-orange:hover::before, .hero-cta-btn.primary:hover::before {
    animation: shimmer-sweep 0.65s ease forwards;
}
@keyframes shimmer-sweep {
    0%   { left: -75%; }
    100% { left: 125%; }
}

/* ---------- PRODUCT CARD — IMAGE SKELETON ---------- */
.img-loader-overlay {
    background: linear-gradient(90deg, var(--clr-cream) 25%, var(--clr-mint) 50%, var(--clr-cream) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s infinite ease-in-out;
}
@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---------- PRODUCT CARD — DEPTH HOVER ---------- */
.product-card {
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.25s ease !important;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 20px 50px rgba(45,106,47,0.14) !important;
}

/* ---------- FEATURE ICON — BOUNCE ON HOVER ---------- */
.feature-item:hover .feature-icon {
    animation: icon-bounce 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes icon-bounce {
    0%,100% { transform: translateY(0); }
    30%      { transform: translateY(-8px); }
    60%      { transform: translateY(-3px); }
}

/* ---------- CATEGORY PILL ACTIVE — PULSE ---------- */
.category-pill.active {
    animation: pill-select 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pill-select {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* ---------- SECTION EYEBROW — TYPING GLOW ---------- */
.section-eyebrow {
    box-shadow: 0 0 0 0 rgba(45,106,47,0.3);
    animation: eyebrow-glow 3s ease-in-out infinite;
}
@keyframes eyebrow-glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(45,106,47,0); }
    50%      { box-shadow: 0 0 12px 3px rgba(45,106,47,0.18); }
}

/* ---------- NAVBAR SCROLLED — GREEN UNDERLINE ---------- */
.mh-navbar.scrolled {
    border-bottom: 2px solid rgba(45,106,47,0.18) !important;
}
.mh-navbar.scrolled .mh-logo-text {
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

/* ---------- HERO FLOATING PARTICLES ---------- */
.hero-fallback { overflow: hidden; }
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    pointer-events: none;
    animation: hero-float-particle linear infinite;
}
@keyframes hero-float-particle {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50%  { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ---------- FOOTER WAVE ---------- */
.footer-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px;
}
.footer-wave svg { display: block; width: 100%; }

/* ---------- TRUST TICKER — SPEED UP ON HOVER ---------- */
.trust-ticker:hover .trust-ticker-inner {
    animation-duration: 10s;
}

/* ---------- CART DRAWER — ITEM SLIDE IN ---------- */
.cart-item { animation: cart-item-in 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes cart-item-in {
    from { opacity:0; transform: translateX(30px) scale(0.95); }
    to   { opacity:1; transform: translateX(0) scale(1); }
}

/* ---------- WA FLOATING — ENHANCED PULSE ---------- */
.wa-floating::before {
    animation: wa-pulse 2s ease-out infinite;
}
.wa-floating:hover {
    transform: scale(1.15) rotate(-5deg) !important;
}

/* ---------- AOS OVERRIDES — Ensure visibility after animation ---------- */
[data-aos].aos-animate { opacity: 1 !important; }

/* ---------- KEYFRAMES LIBRARY ---------- */
@keyframes fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp  { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown{ from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft{ from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight{from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes zoomIn    { from{opacity:0;transform:scale(0.88)} to{opacity:1;transform:scale(1)} }
@keyframes pulse     { 0%,100%{transform:scale(.97);opacity:.8} 50%{transform:scale(1.03);opacity:1} }

.animate__fadeIn   { animation: fadeIn 0.8s ease forwards; }
.animate-fade-up   { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.animate-fade-down { animation: fadeInDown 0.8s ease-out forwards; opacity: 0; }
.animate-fade-left { animation: fadeInLeft 0.8s ease-out forwards; opacity: 0; }
.animate-fade-right{ animation: fadeInRight 0.8s ease-out forwards; opacity: 0; }
.animate-zoom-in   { animation: zoomIn 0.8s ease-out forwards; opacity: 0; }