/* ============================================================
   MAHIRA'S HERBAL WORLD — MAIN STYLESHEET
   Version: 1.0.0
   Author: Built for Mahira's Herbal World
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
    --green-dark:    #1b5e20;
    --green-primary: #2d7d32;
    --green-medium:  #388e3c;
    --green-light:   #4caf50;
    --green-pale:    #e8f5e9;
    --green-ultra:   #f1f8f1;
    --cream:         #faf7f2;
    --beige:         #f0ebe0;
    --beige-dark:    #e0d5c5;
    --brown:         #8b5e3c;
    --brown-light:   #d4a96a;
    --text-dark:     #1a1a1a;
    --text-medium:   #4a4a4a;
    --text-light:    #777777;
    --white:         #ffffff;
    --border:        #e2ddd4;
    --shadow-sm:     0 2px 10px rgba(0,0,0,0.06);
    --shadow-md:     0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
    --shadow-hover:  0 12px 40px rgba(45,125,50,0.18);
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     32px;
    --radius-full:   9999px;
    --transition:    all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Open Sans', -apple-system, sans-serif;
    --container:     1200px;
    --header-h:      80px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
::selection { background: var(--green-pale); color: var(--green-dark); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }
em { font-style: italic; color: var(--green-primary); }
strong { font-weight: 700; }

/* ─── LAYOUT ─── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.bg-cream { background-color: var(--cream); }
.bg-green  { background-color: var(--green-primary); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header--left { text-align: left; margin-bottom: 32px; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    background: var(--green-pale);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 560px; margin: 0 auto; color: var(--text-light); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 48px; }

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-outline-green {
    background: transparent;
    color: var(--green-primary);
    border-color: var(--green-primary);
}
.btn-outline-green:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.btn-white {
    background: var(--white);
    color: var(--green-primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-color: transparent;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-youtube {
    background: #ff0000;
    color: var(--white);
    border-color: #ff0000;
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-2px); }
.btn-facebook {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}
.btn-facebook:hover { background: #1464cc; transform: translateY(-2px); }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
    background: var(--green-dark);
    color: var(--white);
    padding: 9px 0;
    text-align: center;
    font-size: 0.82rem;
}
.announcement-bar p { margin: 0; color: rgba(255,255,255,0.92); }
.announcement-bar a { color: #a5d6a7; font-weight: 600; }
.announcement-bar a:hover { color: var(--white); }
.announcement-bar i { margin-right: 4px; }

/* ─── HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-h);
}

/* Logo */
.site-logo a, .site-logo { display: flex; align-items: center; }
.site-logo img { max-height: 65px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text__main {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.1;
}
.logo-text__tagline {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
    color: var(--green-primary);
    background: var(--green-pale);
}
/* Dropdown */
.nav-menu li ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    border: 1px solid var(--border);
    z-index: 100;
}
.nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu li ul li a {
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: var(--transition);
}
.header-cart:hover { background: var(--green-pale); color: var(--green-primary); }
.cart-count {
    position: absolute;
    top: 0; right: 0;
    background: var(--green-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}
.btn-header-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: var(--white);
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}
.btn-header-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.mobile-menu-toggle { display: none; padding: 8px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu__inner { padding: 24px; }
.mobile-menu__close {
    float: right;
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}
.mobile-menu__close:hover { background: var(--beige); }
.mobile-menu__logo { clear: both; margin-bottom: 24px; }
.mobile-menu__logo img { max-height: 55px; }
.mobile-nav-menu { margin-bottom: 24px; }
.mobile-nav-menu li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}
.mobile-nav-menu li a:hover { color: var(--green-primary); }
.mobile-menu__contact { padding-top: 16px; }
.mobile-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-full);
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: 1rem;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.mobile-menu-overlay.visible { display: block; }

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--cream);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-light);
}
.breadcrumb a { color: var(--green-primary); }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb-sep { color: var(--text-light); font-size: 0.65rem; }
.breadcrumb span:last-child { color: var(--text-dark); font-weight: 600; }

/* ─── HERO SECTION ─── */
.hero-section {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d7d32 55%, #1b5e20 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    color: var(--white);
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.2) 0%, transparent 50%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.92);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title em {
    color: #a5d6a7;
    font-style: italic;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    width: fit-content;
}
.hero-stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}
.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}
/* Hero Visual (right side) */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
}
.hero-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}
.hero-circle::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}
.hero-circle__inner {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-center-icon {
    font-size: 4.5rem;
    color: rgba(255,255,255,0.7);
}
.hero-leaf {
    position: absolute;
    background: rgba(165,214,167,0.15);
    border: 1px solid rgba(165,214,167,0.25);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}
.hero-leaf--1 { width: 60px; height: 60px; top: 0; right: 20px; animation: leafBob 4s ease-in-out infinite; }
.hero-leaf--2 { width: 50px; height: 50px; bottom: 20px; right: 0; animation: leafBob 4s ease-in-out 1.5s infinite; }
.hero-leaf--3 { width: 55px; height: 55px; top: 30px; left: 0; animation: leafBob 4s ease-in-out 3s infinite; }
.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
@keyframes leafBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* ─── TRUST SECTION ─── */
.trust-section {
    background: var(--cream);
    padding: 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--green-ultra); }
.trust-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.trust-item__text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.trust-item__text span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ─── CATEGORIES ─── */
.mhw-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--green-primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.cat-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: var(--green-light);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.cat-card:hover .cat-card__icon {
    background: var(--green-primary);
    color: var(--white);
}
.cat-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.cat-card__desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}
.cat-card__count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-primary);
    background: var(--green-pale);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}
.cat-card__arrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-top: auto;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateX(0); }

/* ─── FEATURED PRODUCTS PLACEHOLDER ─── */
.products-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-placeholder-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.product-placeholder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}
.product-placeholder-card__img { aspect-ratio: 1; background: var(--green-ultra); }
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green-light);
}
.product-placeholder-card__body { padding: 20px; }
.product-cat-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 8px;
}
.product-placeholder-card__body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.product-placeholder-card__body p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

/* WooCommerce product grid overrides (applies to real products) */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 24px !important; }
.woocommerce ul.products li.product {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    width: auto !important;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}
.woocommerce ul.products li.product a img { border-radius: 0; aspect-ratio: 1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 16px 4px;
    color: var(--text-dark);
}
.woocommerce ul.products li.product .price {
    display: block;
    padding: 0 16px 12px;
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1rem;
}
.woocommerce ul.products li.product .button {
    display: block;
    margin: 0 16px 16px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: none;
    transition: var(--transition);
}
.woocommerce ul.products li.product .button:hover { background: var(--green-dark); }

/* ─── ABOUT SNIPPET ─── */
.about-snippet-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}
.about-snippet__img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.about-snippet__img-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--green-pale) 0%, var(--beige) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green-primary);
    font-size: 4rem;
    border: 1px dashed var(--green-light);
}
.about-snippet__img-placeholder span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--green-dark);
}
.about-snippet__badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}
.about-snippet__badge i { color: var(--green-primary); }
.about-snippet__badge { bottom: 32px; right: -20px; }
.about-snippet__content .section-title { margin-bottom: 20px; }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 36px;
}
.about-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}
.about-value i { color: var(--green-primary); font-size: 0.9rem; }

/* ─── PROMO BANNER ─── */
.promo-banner-section { padding: 0 0 80px; }
.promo-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.promo-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.promo-banner__content h2 {
    color: var(--white);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 8px;
}
.promo-banner__content p { color: rgba(255,255,255,0.8); margin: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-slider { overflow: hidden; border-radius: var(--radius-lg); }
.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    min-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.testimonial-author__avatar {
    font-size: 2.4rem;
    color: var(--green-light);
    line-height: 1;
}
.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}
.testimonial-product {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-primary);
    background: var(--green-pale);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
/* Full-page testimonials grid */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card--full { min-width: unset; }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--white);
}
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slider-dot.active {
    background: var(--green-primary);
    width: 24px;
    border-radius: 4px;
}

/* ─── BLOG SECTION ─── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-grid--archive { gap: 32px; }
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}
.blog-card__img {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--green-ultra);
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--green-light);
}
.blog-card__body { padding: 24px; }
.blog-card__meta {
    display: flex;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.blog-card__meta i { margin-right: 4px; color: var(--green-primary); }
.blog-card__title { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card__title a { color: var(--text-dark); }
.blog-card__title a:hover { color: var(--green-primary); }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }
.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-primary);
}
.blog-card__link:hover { gap: 10px; }
.blog-card__link--soon { color: var(--text-light); cursor: default; }

/* ─── SOCIAL PROOF (Instagram + YouTube) ─── */
.social-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.instagram-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    position: relative;
}
.insta-placeholder-box {
    aspect-ratio: 1;
    background: var(--beige);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
}
.instagram-placeholder__note {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: var(--text-light);
    background: var(--beige);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--green-primary);
    margin-top: 8px;
}
.youtube-embed-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.youtube-embed-wrap iframe { display: block; }

/* ─── CTA STRIP ─── */
.cta-strip-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3a1a 0%, #2d7d32 100%);
}
.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-strip__content h2 { color: var(--white); margin-bottom: 10px; }
.cta-strip__content p { color: rgba(255,255,255,0.8); margin: 0; max-width: 500px; }
.cta-strip__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── PAGE HEROES ─── */
.page-hero {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d7d32 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
}
.page-hero__content .section-eyebrow { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.2); }
.page-hero__content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero__content p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.page-hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.page-hero__wave svg { width: 100%; }

/* ─── ABOUT PAGE ─── */
.about-story__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.about-story__img-box { position: relative; }
.about-story__img-placeholder {
    aspect-ratio: 4/5;
    background: var(--green-ultra);
    border: 2px dashed var(--green-light);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green-light);
    font-size: 5rem;
}
.about-story__img-placeholder span { font-size: 1rem; font-family: var(--font-heading); color: var(--text-light); }
.about-story__img-placeholder small { font-size: 0.75rem; color: var(--text-light); }
.about-story__badge {
    position: absolute;
    bottom: 32px; right: -20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}
.about-story__badge--1 { bottom: 80px; right: -20px; }
.about-story__badge--2 { bottom: 20px; right: 20px; }
.about-story__badge i { color: var(--green-primary); }
.about-story__lead { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.value-card__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green-primary); font-size: 1.5rem; margin: 0 auto 20px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.stats-section { background: var(--green-primary); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.06em; }
.find-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.find-us-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: var(--transition); }
.find-us-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.find-us-card__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green-primary); font-size: 1.8rem; margin: 0 auto 20px; }
.find-us-card h3 { margin-bottom: 10px; }
.find-us-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 20px; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info__title { margin-bottom: 12px; }
.contact-info__intro { color: var(--text-light); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.contact-card--whatsapp { border-left: 4px solid #25d366; }
.contact-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green-primary); font-size: 1.2rem; flex-shrink: 0; }
.contact-card--whatsapp .contact-card__icon { background: #e8fef1; color: #25d366; }
.contact-card__body h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card__body p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.contact-form-box h2 { margin-bottom: 8px; }
.contact-form-box > p { color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row--two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
label span { color: var(--green-primary); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(45,125,50,0.08); }
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; cursor: pointer; }
.contact-form__whatsapp-alt { margin-top: 16px; text-align: center; padding-top: 16px; border-top: 1px solid var(--border); }
.contact-form__whatsapp-alt p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }

/* ─── FAQ PAGE ─── */
.faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.faq-sidebar { position: sticky; top: calc(var(--header-h) + 20px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.faq-sidebar h3 { font-size: 1rem; margin-bottom: 16px; }
.faq-cat-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.faq-cat-link { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; color: var(--text-medium); transition: var(--transition); }
.faq-cat-link:hover, .faq-cat-link.active { background: var(--green-pale); color: var(--green-primary); }
.faq-cat-link i { width: 16px; color: var(--green-primary); }
.faq-sidebar__cta { border-top: 1px solid var(--border); padding-top: 20px; }
.faq-sidebar__cta p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.faq-group { margin-bottom: 48px; }
.faq-group__title { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--green-pale); color: var(--green-dark); }
.faq-group__title i { color: var(--green-primary); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--green-light); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.faq-question:hover { background: var(--green-ultra); color: var(--green-primary); }
.faq-question[aria-expanded="true"] { background: var(--green-pale); color: var(--green-primary); }
.faq-icon { font-size: 0.75rem; flex-shrink: 0; transition: var(--transition); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--white); }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 20px 18px; font-size: 0.9rem; color: var(--text-medium); margin: 0; }
.faq-answer ol, .faq-answer ul { padding: 0 20px 18px 40px; }
.faq-answer li { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 6px; }
.faq-answer a { color: var(--green-primary); font-weight: 600; }
.faq-bottom-cta { margin-top: 48px; }
.faq-bottom-cta__inner { display: flex; align-items: center; gap: 24px; background: var(--green-pale); border: 1px solid var(--green-light); border-radius: var(--radius-lg); padding: 28px 32px; flex-wrap: wrap; }
.faq-bottom-cta__inner > i { font-size: 2.5rem; color: var(--green-primary); }
.faq-bottom-cta__inner h3 { margin-bottom: 4px; }
.faq-bottom-cta__inner p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.faq-bottom-cta__inner .btn { margin-left: auto; }

/* ─── TESTIMONIALS PAGE ─── */
.review-stats-section { padding: 40px 0; }
.review-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.review-stat { text-align: center; padding: 28px 20px; border-right: 1px solid var(--border); }
.review-stat:last-child { border-right: none; }
.review-stat__stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 8px; display: flex; justify-content: center; gap: 2px; }
.review-stat strong { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--green-dark); }
.review-stat span { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.share-review-inner { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 56px 40px; }
.share-review__icon { width: 80px; height: 80px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #f59e0b; margin: 0 auto 20px; }
.share-review__icon .fas { color: #f59e0b; }
.share-review__actions { display: flex; justify-content: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* ─── ABOUT VALUES ─── */
.about-values-section.section-pad { padding: 80px 0; }

/* ─── NEWSLETTER ─── */
.footer-newsletter { background: var(--green-dark); padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h3 { color: var(--white); margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.75); margin: 0; font-size: 0.92rem; }
.newsletter-form { flex: 1; max-width: 500px; }
.newsletter-field { display: flex; gap: 0; border-radius: var(--radius-full); overflow: hidden; border: 2px solid rgba(255,255,255,0.2); }
.newsletter-field input {
    flex: 1;
    padding: 13px 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}
.newsletter-field input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-field .btn { border-radius: 0; border: none; flex-shrink: 0; }
.newsletter-msg { margin-top: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.8); text-align: center; }

/* ─── FOOTER ─── */
.footer-main { background: #111a11; padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-col--brand .footer-logo img { max-height: 55px; filter: brightness(0) invert(1); margin-bottom: 10px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; margin-top: 4px; }
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
    width: 38px; height: 38px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-icon:hover { background: var(--green-primary); border-color: var(--green-primary); color: var(--white); }
.footer-col__title { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-contact li i { color: var(--green-light); width: 16px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { background: #0a130a; padding: 20px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-copy strong { color: rgba(255,255,255,0.65); }
.footer-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-note i { color: var(--green-light); }

/* ─── FLOATING WHATSAPP ─── */
.floating-whatsapp {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 24px rgba(37,211,102,0.45);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 3s ease-in-out infinite;
}
.floating-whatsapp:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
    animation: none;
}
.floating-whatsapp__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--text-dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.floating-whatsapp__tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--text-dark);
}
.floating-whatsapp:hover .floating-whatsapp__tooltip { opacity: 1; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 28px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    z-index: 998;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }

/* ─── MISC ─── */
.page-main { padding: 64px 0; min-height: 50vh; }
.page-article__title { margin-bottom: 24px; }
.page-article__content { max-width: 800px; font-size: 1.05rem; line-height: 1.8; }
.page-article__content p { margin-bottom: 1.2rem; }
.no-posts { text-align: center; padding: 80px 20px; color: var(--text-light); }
.no-posts i { font-size: 3rem; color: var(--green-light); margin-bottom: 16px; display: block; }
.error-404-section { text-align: center; padding: 100px 0; }
.error-404__icon { font-size: 4rem; color: var(--green-light); margin-bottom: 16px; }
.error-404__title { font-size: 8rem; font-weight: 700; color: var(--green-pale); line-height: 1; margin-bottom: 8px; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}
.pagination .page-numbers.current { background: var(--green-primary); border-color: var(--green-primary); color: var(--white); }
.pagination .page-numbers:hover { border-color: var(--green-primary); color: var(--green-primary); }
.post-cat-badge { background: var(--green-pale); color: var(--green-primary); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); }
.single-post__header { margin-bottom: 32px; }
.single-post__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 0.82rem; color: var(--text-light); }
.single-post__title { margin-bottom: 24px; }
.single-post__thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.single-post__content { max-width: 800px; line-height: 1.9; font-size: 1.05rem; }
.single-post__content h2,h3,h4 { margin: 28px 0 14px; }
.single-post__content p { margin-bottom: 1.2rem; }
.single-post__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.85rem; }
.post-share { display: flex; align-items: center; gap: 12px; }
.post-share a { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); color: var(--green-primary); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.post-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 20px; }
.post-nav__prev, .post-nav__next { flex: 1; }
.post-nav a { font-size: 0.88rem; font-weight: 600; color: var(--green-primary); }
.post-nav__next { text-align: right; }

/* Scroll animations */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate="fadeInLeft"] { transform: translateX(-24px); }
[data-animate="fadeInRight"] { transform: translateX(24px); }
[data-animate].animated { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .hero-circle { width: 340px; height: 340px; }
    .about-snippet__inner, .about-story__inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .social-proof-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 960px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .btn-header-whatsapp span { display: none; }
    .btn-header-whatsapp { padding: 9px 12px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
    .mhw-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .find-us-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .testimonials-full-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { min-width: calc((100% - 24px) / 2); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-banner { flex-direction: column; text-align: center; padding: 36px; }
    .cta-strip { flex-direction: column; text-align: center; }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { max-width: 100%; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; }
    .review-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    :root { --header-h: 70px; }
    .section-pad { padding: 56px 0; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-section { min-height: 80vh; }
    .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
    .hero-stat-divider { width: 80px; height: 1px; }
    .trust-grid { grid-template-columns: 1fr; }
    .mhw-categories-grid { grid-template-columns: 1fr; }
    .products-placeholder-grid { grid-template-columns: 1fr; }
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card { min-width: 100%; }
    .testimonials-full-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .form-row--two { grid-template-columns: 1fr; }
    .faq-bottom-cta__inner { flex-direction: column; text-align: center; }
    .faq-bottom-cta__inner .btn { margin-left: 0; }
    .review-stats-grid { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 16px; }
    .promo-banner { padding: 28px 20px; }
    .contact-form-box { padding: 24px 20px; }
    .about-snippet__badge { display: none; }
}

/* ─── HERO FOUNDER PHOTO ─────────────────────────────── */
.hero-founder-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    margin: 0 auto;
}
.hero-founder-img {
    width: 100%;
    max-width: 360px;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    border-radius: 200px 200px 120px 120px;
    border: 4px solid rgba(255,255,255,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: block;
}
.hero-founder-badge {
    position: absolute;
    bottom: 60px;
    left: -10px;
    background: rgba(255,255,255,0.95);
    color: var(--green-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    white-space: nowrap;
}
.hero-founder-name {
    margin-top: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ─── ABOUT SNIPPET PHOTO ───────────────────────────── */
.about-snippet__photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
}

/* ─── LOGO IMAGE IN HEADER ───────────────────────────── */
.site-logo__img-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.site-logo__img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* ─── VIDEO TESTIMONIALS ─────────────────────────────── */
.video-testimonials-section {
    background: var(--beige);
}
.video-testimonials-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--green-primary) var(--beige);
}
.video-testimonials-grid::-webkit-scrollbar {
    height: 6px;
}
.video-testimonials-grid::-webkit-scrollbar-track {
    background: var(--beige);
    border-radius: 3px;
}
.video-testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--green-primary);
    border-radius: 3px;
}
.video-reel-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.video-reel-card iframe {
    display: block;
    border-radius: 16px;
}
@media (max-width: 640px) {
    .video-reel-card iframe {
        width: 280px;
        height: 420px;
    }
    .hero-founder-img {
        height: 320px;
        max-width: 260px;
    }
}

/* ─── PRODUCT CARDS (static grid) ───────────────────────── */
.mhw-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.mhw-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mhw-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45,125,50,0.15);
}
.mhw-product-card__img-wrap {
    position: relative;
    background: var(--beige);
    aspect-ratio: 1;
    overflow: hidden;
}
.mhw-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.mhw-product-card:hover .mhw-product-card__img {
    transform: scale(1.05);
}
.mhw-product-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: var(--beige);
}
.mhw-product-card__cat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(45,125,50,0.9);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}
.mhw-product-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mhw-product-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}
.mhw-product-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

/* ─── SHOP PAGE ──────────────────────────────────────────── */
.page-hero--shop {
    background: linear-gradient(135deg, #1a3a1a 0%, #2d7d32 60%, #1b5e20 100%);
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
}
.shop-cats-nav {
    background: #fff;
    border-bottom: 1px solid var(--beige);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.shop-cats-nav__inner {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.shop-cat-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--beige);
    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.shop-cat-pill:hover {
    background: var(--green-primary);
    color: #fff;
}
.pill-count {
    background: var(--green-primary);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
}
.shop-cat-pill:hover .pill-count {
    background: #fff;
    color: var(--green-primary);
}
.shop-category-section {
    padding: 50px 0 20px;
    border-bottom: 1px solid var(--beige);
}
.shop-category-section:last-child {
    border-bottom: none;
}
.shop-cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}
.shop-cat-header__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.shop-cat-header__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}
.shop-cat-header__count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
@media (max-width: 1100px) {
    .mhw-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .mhw-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
    .mhw-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .mhw-product-card__body { padding: 12px; }
}

/* ─── ABOUT PAGE: SECTION HEADINGS ─── */
.about-section-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-primary);
    margin: 28px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.about-section-heading i {
    font-size: 0.9rem;
    opacity: 0.8;
}
.founder-lead {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    border-left: 3px solid var(--green-primary);
    padding-left: 16px;
    margin: 16px 0 24px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Option B Split Layout
═══════════════════════════════════════════════════════════════ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    position: relative;
    overflow: hidden;
}
.hero-left {
    background: linear-gradient(160deg, #1a3a1a 0%, #2d7d32 100%);
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 40px;
    position: relative;
    z-index: 1;
}
.hero-grid { position: relative; z-index: 1; width: 100%; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: block;
    width: fit-content;
}
.hero h1 {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: Georgia, 'Times New Roman', serif;
}
.hero h1 em {
    color: #a5d6a7;
    font-style: italic;
    display: block;
}
.hero-sub {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.8);
    max-width: 440px;
    margin-bottom: 36px;
    line-height: 1.75;
}
.hero-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 18px 24px;
    width: fit-content;
}
.stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    font-family: Georgia, serif;
    line-height: 1;
}
.stat span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.hero-right {
    position: relative;
    overflow: hidden;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,58,26,0.35) 0%, transparent 40%);
}
.hero-founder-badge {
    position: absolute;
    bottom: 36px;
    left: 36px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-founder-badge i {
    color: #2d7d32;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hero-founder-badge strong {
    display: block;
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 800;
    line-height: 1.3;
}
.hero-founder-badge span {
    font-size: 0.78rem;
    color: #444;
    font-weight: 500;
}
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 55vw; max-height: 420px; }
    .hero-left { padding: 60px 30px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 12px; }
    .hero-founder-badge { bottom: 16px; left: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   EVENTS — Seen, Trusted & Celebrated Section
═══════════════════════════════════════════════════════════════ */
.events-section {
    padding: 64px 0;
    background: #fff;
}
.events-header {
    text-align: center;
    margin-bottom: 36px;
}
.events-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.events-photo-featured {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 280px;
}
.events-photo-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.events-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 18px;
}
.events-photo-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}
.events-grid-bottom {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.events-photo {
    border-radius: 14px;
    overflow: hidden;
    height: 180px;
}
.events-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .events-grid-top { grid-template-columns: 1fr; }
    .events-grid-bottom { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .events-grid-bottom { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO TESTIMONIALS — 5 Reels + YouTube Side by Side
═══════════════════════════════════════════════════════════════ */
.video-testimonials-outer {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.video-reel-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.video-reel-card iframe {
    display: block;
    width: 100%;
}
.video-youtube-col { width: 100%; }
@media (max-width: 1100px) {
    .video-testimonials-outer { grid-template-columns: 1fr; }
    .video-youtube-col { max-width: 500px; }
    .video-testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .video-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   LOGO — Remove white background
═══════════════════════════════════════════════════════════════ */
.site-logo img, .logo img, .header-logo img {
    mix-blend-mode: multiply;
    height: 80px;
    width: auto;
}
