/*
Theme Name: Mushroomgroov
Description: Custom theme for Mushroomgroov — mushroom grow kits, cultures & wellness
Version: 1.0
Author: Mushroomgroov
*/

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: #f7f4ee; color: #1c1a14; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: 'DM Sans', sans-serif; }

/* ─── CSS VARIABLES ────────────────────────────────────────────── */
:root {
  --green-deep: #1e3d12; --green-mid: #3d6b2c; --green-light: #6ab34a; --green-pale: #c8e6b8;
  --cream: #f7f4ee; --cream-dark: #ede9df; --cream-med: #e5e0d5;
  --earth: #8b6843; --earth-light: #c4a882;
  --ink: #1c1a14; --ink-soft: #4a4438; --ink-muted: #8a8070;
  --white: #fff; --amber: #d4820a; --amber-pale: #fdf0d8;
  --shadow: rgba(30,61,18,.12); --border: rgba(28,26,20,.1);
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 28px; --radius-xl: 48px;
  /* ── Short-form aliases used by shop page design ── */
  --g-deep: #1e3d12; --g-mid: #3d6b2c; --g-light: #6ab34a; --g-pale: #c8e6b8; --g-wash: #eaf5e3;
  --cream-d: #ede9df; --cream-dd: #e0dbd1;
  --ink-s: #4a4438; --ink-m: #8a8070;
  --bd: rgba(28,26,20,.09); --amber-p: #fdf0d8;
  --r: 8px; --r-sm: 8px; --r-md: 14px; --r-lg: 24px; --r-xl: 40px;
}

/* ─── TYPOGRAPHY SCALE ─────────────────────────────────────────── */
.display-xl { font-family: 'Playfair Display', serif; font-size: clamp(52px,8vw,108px); line-height: .92; font-weight: 900; letter-spacing: -.02em; }
.display-lg { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,64px); line-height: 1.05; font-weight: 700; letter-spacing: -.02em; }
.display-md { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.5vw,42px); line-height: 1.15; font-weight: 700; }
.eyebrow { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.body-lg { font-size: 18px; line-height: 1.7; font-weight: 300; }
.body-md { font-size: 15px; line-height: 1.65; }
.body-sm { font-size: 13px; line-height: 1.6; }

/* ─── GRAIN TEXTURE ────────────────────────────────────────────── */
body::after { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E"); pointer-events: none; z-index: 100; opacity: .6; }

/* ─── ANIMATIONS ───────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes float    { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-14px) rotate(1.5deg); } }
@keyframes float2   { 0%,100% { transform:translateY(0) rotate(0deg); } 50% { transform:translateY(-9px) rotate(-1deg); } }
@keyframes rotate   { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes marquee  { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes pulse    { 0%,100% { opacity:.6; transform:scale(1); } 50% { opacity:1; transform:scale(1.04); } }
@keyframes shimmer  { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes spin     { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes sporeFloat { 0% { transform:translate(0,0) scale(1); opacity:0; } 20% { opacity:.7; } 80% { opacity:.5; } 100% { transform:translate(var(--tx),var(--ty)) scale(.4); opacity:0; } }
@keyframes drawLine { from { stroke-dashoffset:1000; } to { stroke-dashoffset:0; } }

.animate-on-load { animation: fadeUp .8s cubic-bezier(.22,.68,0,1.2) both; }
.delay-1 { animation-delay: .1s; } .delay-2 { animation-delay: .22s; } .delay-3 { animation-delay: .36s; } .delay-4 { animation-delay: .52s; } .delay-5 { animation-delay: .68s; }

.anim { opacity:0; transform:translateY(24px); transition:opacity .7s cubic-bezier(.22,.68,0,1.2),transform .7s cubic-bezier(.22,.68,0,1.2); }
.anim.in { opacity:1; transform:translateY(0); }
.anim.d1 { transition-delay:.1s; } .anim.d2 { transition-delay:.2s; } .anim.d3 { transition-delay:.3s; } .anim.d4 { transition-delay:.4s; }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .7s cubic-bezier(.22,.68,0,1.2),transform .7s cubic-bezier(.22,.68,0,1.2); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-32px); transition:opacity .7s cubic-bezier(.22,.68,0,1.2),transform .7s cubic-bezier(.22,.68,0,1.2); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(32px); transition:opacity .7s cubic-bezier(.22,.68,0,1.2),transform .7s cubic-bezier(.22,.68,0,1.2); }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-delay-1.visible { transition-delay:.1s; } .reveal-delay-2.visible { transition-delay:.2s; } .reveal-delay-3.visible { transition-delay:.3s; } .reveal-delay-4.visible { transition-delay:.4s; }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 28px; font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500; letter-spacing:.04em; border-radius:100px; border:none; transition:transform .2s ease,box-shadow .2s ease,background .2s; position:relative; overflow:hidden; }
.btn::after { content:''; position:absolute; inset:0; background:rgba(255,255,255,.15); transform:translateX(-100%); transition:transform .3s ease; }
.btn:hover::after { transform:translateX(0); }
.btn:hover { transform:translateY(-2px); }
.btn:active { transform:translateY(0); }
.btn-primary { background:var(--green-deep); color:var(--cream); box-shadow:0 4px 20px rgba(30,61,18,.25); }
.btn-primary:hover { box-shadow:0 8px 30px rgba(30,61,18,.35); }
.btn-outline { background:transparent; color:var(--green-deep); border:1.5px solid var(--green-deep); }
.btn-outline:hover { background:var(--green-deep); color:var(--cream); }
.btn-white { background:var(--white); color:var(--green-deep); box-shadow:0 4px 20px rgba(0,0,0,.1); }
.btn-amber { background:var(--amber); color:var(--white); box-shadow:0 4px 20px rgba(212,130,10,.3); }
.btn-amber:hover { box-shadow:0 8px 30px rgba(212,130,10,.4); }
.btn-ghost { background:rgba(30,61,18,.06); color:var(--ink); border:1px solid var(--border); }
.btn-ghost:hover { background:rgba(30,61,18,.1); }
.btn-lg { padding:18px 38px; font-size:16px; }
.btn-sm { padding:10px 20px; font-size:13px; }
.btn-arrow::after { display:none; }
.btn-arrow .arrow { display:inline-block; transition:transform .2s ease; }
.btn-arrow:hover .arrow { transform:translateX(5px); }

/* ─── HOMEPAGE NAVBAR ──────────────────────────────────────────── */
.navbar { position:fixed; top:auto; left:0; right:0; z-index:900; padding:0 48px; height:72px; display:flex; align-items:center; justify-content:flex-start; transition:background .3s,backdrop-filter .3s,box-shadow .3s; }
.navbar.scrolled { background:rgba(247,244,238,.92); backdrop-filter:blur(12px); box-shadow:0 1px 0 rgba(0,0,0,.07); }
.navbar-logo { font-family:'Playfair Display',serif; font-size:20px; font-weight:600; color:var(--white); display:flex; align-items:center; gap:12px; transition:color .3s; }
.navbar.scrolled .navbar-logo { color:var(--green-deep); }
.navbar-logo .logo-icon { width:34px; height:34px; background:var(--green-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.navbar .nav-links { display:flex; align-items:center; gap:36px; list-style:none; margin-left:auto; }
.navbar .nav-links a { font-size:14px; font-weight:400; color:rgba(255,255,255,.85); transition:color .2s; position:relative; }
.navbar .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1.5px; background:var(--green-light); transform:scaleX(0); transform-origin:left; transition:transform .25s ease; }
.navbar .nav-links a:hover { color:var(--white); }
.navbar .nav-links a:hover::after { transform:scaleX(1); }
.navbar.scrolled .nav-links a { color:var(--ink-soft); }
.navbar.scrolled .nav-links a:hover { color:var(--green-deep); }
.nav-cta { display:flex; align-items:center; gap:12px; margin-left:40px; }
.navbar .btn-nav { padding:10px 22px; font-size:13px; background:var(--white); color:var(--green-deep); box-shadow:0 2px 12px rgba(0,0,0,.12); border-radius:100px; }
.navbar.scrolled .btn-nav { background:var(--green-deep); color:var(--white); }
.nav-cart { width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; font-size:17px; transition:background .2s; position:relative; }
.nav-cart:hover { background:rgba(255,255,255,.25); }
.cart-badge { position:absolute; top:-4px; right:-4px; width:18px; height:18px; background:var(--amber); border-radius:50%; font-size:10px; font-weight:700; color:white; display:flex; align-items:center; justify-content:center; }
.navbar.scrolled .nav-cart { background:var(--cream-dark); }

/* ─── INNER PAGE NAVBAR (.nav) ─────────────────────────────────── */
.nav { position:fixed; top:auto; left:0; right:0; z-index:900; height:68px; display:flex; align-items:center; justify-content:space-between; padding:0 48px; background:rgba(247,244,238,.93); backdrop-filter:blur(14px); box-shadow:0 1px 0 rgba(0,0,0,.07); }
.nav-logo { font-family:'Playfair Display',serif; font-size:21px; font-weight:700; color:var(--ink); display:flex; align-items:center; gap:9px; }
.nav-logo-icon { width:32px; height:32px; background:var(--green-light); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; }
.nav .nav-links { display:flex; gap:32px; list-style:none; }
.nav .nav-links a { font-size:14px; color:var(--ink-soft); transition:color .2s; position:relative; }
.nav .nav-links a.active { color:var(--green-deep); }
.nav .nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1.5px; background:var(--green-light); transform:scaleX(0); transform-origin:left; transition:transform .25s; }
.nav .nav-links a:hover::after, .nav .nav-links a.active::after { transform:scaleX(1); }
.nav .nav-links a:hover { color:var(--green-deep); }
.nav-right { display:flex; align-items:center; gap:12px; }
.nav-cart-sm { width:40px; height:40px; border-radius:50%; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:16px; position:relative; transition:background .2s; }
.nav-cart-sm:hover { background:var(--cream-med); }
.cart-dot { position:absolute; top:-3px; right:-3px; width:16px; height:16px; background:var(--amber); border-radius:50%; font-size:9px; font-weight:700; color:#fff; display:flex; align-items:center; justify-content:center; }

/* ─── SECTION UTILITY ───────────────────────────────────────────── */
.section { padding:100px 64px; }
/* .section-inner { max-width:1280px; margin:0 auto; } */
.section-eyebrow { color:var(--green-mid); margin-bottom:14px; }
.section-title { color:var(--ink); margin-bottom:20px; }
.section-sub { color:var(--ink-soft); max-width:520px; }

/* ─── HOMEPAGE HERO ──────────────────────────────────────────────── */
.hero { min-height:100vh; background:url('images/Mashroomheader.png') center center / cover no-repeat; position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; padding:0 64px 80px; }
.hero-bg-orbs { position:absolute; inset:0; pointer-events:none; }
.orb { position:absolute; border-radius:50%; filter:blur(80px); }
.orb-1 { width:600px; height:600px; background:rgba(106,179,74,.18); top:-100px; right:-100px; }
.orb-2 { width:400px; height:400px; background:rgba(61,107,44,.25); bottom:100px; left:-80px; }
.orb-3 { width:300px; height:300px; background:rgba(212,130,10,.1); top:40%; left:40%; }
.mycelium-bg { position:absolute; inset:0; pointer-events:none; opacity:.08; }

/* .hero-shroom-1 { position:absolute; right:8%; top:12%; font-size:160px; line-height:1; animation:float 6s ease-in-out infinite; filter:drop-shadow(0 20px 40px rgba(0,0,0,.3)); user-select:none; } */

.hero-shroom-2 { position:absolute; right:24%; top:30%; font-size:72px; line-height:1; animation:float2 8s ease-in-out infinite 1s; filter:drop-shadow(0 10px 20px rgba(0,0,0,.2)); user-select:none; opacity:.7; }
.hero-shroom-3 { position:absolute; right:14%; bottom:28%; font-size:54px; line-height:1; animation:float 7s ease-in-out infinite 2s; opacity:.5; user-select:none; }
.spore { position:absolute; border-radius:50%; background:var(--green-light); pointer-events:none; animation:sporeFloat 6s ease-in-out infinite; }

.hero-content { position:relative; z-index:10; max-width:600px; background:rgba(14, 13, 13, 0.28); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); border-radius:var(--radius-lg); padding:40px 48px; border:1px solid rgba(49, 43, 43, 0.071); }

.hero-badge { display:inline-flex; align-items:center; gap:8px; padding:7px 16px; background:rgba(106,179,74,.18); border:1px solid rgba(106,179,74,.35); border-radius:100px; color:var(--green-pale); margin-bottom:28px; }
.badge-dot { width:7px; height:7px; background:var(--green-light); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
.hero-title { font-family:'Playfair Display',serif; font-size:clamp(60px,9vw,122px); line-height:.9; font-weight:900; color:var(--cream); letter-spacing:-.03em; margin-bottom:28px; }
.hero-title em { font-style:italic; color:var(--green-light); display:block; }
.hero-title .outline-text { -webkit-text-stroke:2px var(--green-pale); color:transparent; }
.hero-sub { font-size:clamp(16px,2vw,20px); color:rgba(247,244,238,.65); font-weight:300; max-width:520px; line-height:1.65; margin-bottom:44px; }
.hero-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.hero-trust { display:flex; align-items:center; gap:24px; margin-top:60px; padding-top:36px; border-top:1px solid rgba(247,244,238,.1); }
.trust-item { display:flex; align-items:center; gap:10px; color:rgba(247,244,238,.6); font-size:13px; }
.trust-item .ti { font-size:18px; }
.trust-divider { width:1px; height:28px; background:rgba(247,244,238,.15); }
.scroll-hint { position:absolute; bottom:32px; right:64px; display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(247,244,238,.4); font-size:11px; letter-spacing:.12em; text-transform:uppercase; animation:fadeIn 1s 1.5s both; z-index:10; }
.scroll-line { width:1.5px; height:48px; background:linear-gradient(to bottom,rgba(247,244,238,.4),transparent); animation:float 2s ease-in-out infinite; }

/* ─── MARQUEE STRIP ─────────────────────────────────────────────── */
.marquee-strip { background:var(--green-light); color:var(--green-deep); padding:14px 0; overflow:hidden; position:relative; z-index:10; }
.marquee-track { display:flex; white-space:nowrap; animation:marquee 22s linear infinite; gap:0; }
.marquee-item { display:inline-flex; align-items:center; gap:16px; font-size:13px; font-weight:500; letter-spacing:.06em; padding:0 28px; text-transform:uppercase; }
.marquee-dot { font-size:20px; }

/* ─── WHY SECTION ───────────────────────────────────────────────── */
.why-section { background:var(--cream); padding:100px 64px; }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; max-width:1280px; margin:0 auto; }
.why-visual { position:relative; }
.why-main-card { background:var(--green-deep); border-radius:var(--radius-lg); padding:56px 48px; color:var(--cream); position:relative; overflow:hidden; min-height:480px; display:flex; flex-direction:column; justify-content:flex-end; }
.why-main-card::before { content:'🍄'; position:absolute; top:-20px; right:-10px; font-size:200px; line-height:1; opacity:.12; animation:float 8s ease-in-out infinite; }
.why-main-stat { font-family:'Playfair Display',serif; font-size:80px; font-weight:900; line-height:1; color:var(--green-light); margin-bottom:8px; }
.why-main-label { font-size:15px; color:rgba(247,244,238,.7); margin-bottom:28px; }
.why-floating-card { position:absolute; background:var(--white); border-radius:var(--radius-md); padding:18px 22px; box-shadow:0 12px 40px var(--shadow); }
.why-floating-card-1 { top:-28px; right:-28px; min-width:170px; }
.why-floating-card-2 { bottom:40px; left:-36px; min-width:190px; }
.wfc-icon { font-size:28px; margin-bottom:8px; }
.wfc-val { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:var(--ink); line-height:1; }
.wfc-lbl { font-size:12px; color:var(--ink-muted); margin-top:3px; }
.why-content { padding-left:20px; }
.why-features { margin-top:44px; display:flex; flex-direction:column; gap:28px; }
.why-feature { display:flex; gap:20px; align-items:flex-start; }
.wf-icon { width:48px; height:48px; flex-shrink:0; background:var(--green-pale); border-radius:var(--radius-sm); display:flex; align-items:center; justify-content:center; font-size:22px; transition:transform .2s,background .2s; }
.why-feature:hover .wf-icon { transform:scale(1.1) rotate(-5deg); background:var(--green-mid); }
.wf-body h4 { font-size:16px; font-weight:500; margin-bottom:4px; }
.wf-body p { font-size:14px; color:var(--ink-soft); line-height:1.6; }

/* ─── PRODUCTS SECTION ──────────────────────────────────────────── */
.products-section { background:var(--cream-dark); }
.products-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:48px; }
.product-tabs { display:flex; gap:8px; margin-top:20px; }
.tab-btn { padding:9px 20px; background:transparent; border:1.5px solid var(--cream-dark); border-radius:100px; font-size:13px; font-weight:500; color:var(--ink-muted); transition:all .2s; }
.tab-btn.active, .tab-btn:hover { background:var(--green-deep); border-color:var(--green-deep); color:var(--white); }
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }

/* ── Horizontal scroll-snap slider (Medicinal & Culinary sections) ── */
.scroll-products-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* hide scrollbar everywhere */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  padding-bottom: 8px;
  cursor: grab;
}
.scroll-products-wrapper:active { cursor: grabbing; }
.scroll-products-wrapper::-webkit-scrollbar { display: none; }  /* Chrome/Safari */

/* Horizontal flex row with snap */
.scroll-products-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  scroll-snap-type: x mandatory;
  width: max-content;
}

/* Every card snaps and has a fixed width */
.scroll-products-grid .product-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  width: 280px;
}

/* Neutralise featured-card overrides so it looks the same as others */
.scroll-products-grid .product-card.featured {
  grid-column: unset !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 280px;
  width: 280px;
}
.scroll-products-grid .product-card.featured .product-img  { height: 220px; min-height: unset; }
.scroll-products-grid .product-card.featured .product-info { padding: 20px; }
.scroll-products-grid .product-card.featured .product-name { font-size: 16px; }

/* Tablet – slightly narrower cards */
@media (max-width: 900px) {
  .scroll-products-grid .product-card,
  .scroll-products-grid .product-card.featured {
    flex: 0 0 240px;
    width: 240px;
  }
}

/* Mobile – cards fill ~85 % of the viewport */
@media (max-width: 540px) {
  .scroll-products-grid .product-card,
  .scroll-products-grid .product-card.featured {
    flex: 0 0 75vw;
    width: 75vw;
  }
}
.product-card { background:var(--white); border-radius:var(--radius-md); overflow:hidden; transition:transform .3s cubic-bezier(.22,.68,0,1.2),box-shadow .3s; position:relative; border:1px solid var(--border); }
.product-card:hover { transform:translateY(-8px); box-shadow:0 20px 48px var(--shadow); }
.product-img { height:220px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:90px; position:relative; overflow:hidden; }
.product-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent 60%,rgba(0,0,0,.08)); }
.product-badge { position:absolute; top:12px; left:12px; padding:5px 12px; background:var(--amber); color:white; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; border-radius:100px; z-index:2; }
.product-badge.new { background:var(--green-mid); }
.product-badge.hot { background:#d4260a; }
.product-info { padding:20px; }
.product-name { font-size:15px; font-weight:500; color:var(--ink); margin-bottom:6px; line-height:1.3; }
.product-desc { font-size:12px; color:var(--ink-muted); margin-bottom:14px; line-height:1.5; }
.product-bottom { display:flex; align-items:center; justify-content:space-between; }
.product-price { display:flex; align-items:baseline; gap:6px; }
.price-current { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); }
.price-old { font-size:13px; color:var(--ink-muted); text-decoration:line-through; }
.add-btn { width:36px; height:36px; background:var(--green-deep); color:white; border:none; border-radius:50%; font-size:20px; line-height:1; display:flex; align-items:center; justify-content:center; transition:transform .2s,background .2s; }
.add-btn:hover { transform:scale(1.15) rotate(90deg); background:var(--green-light); }
.product-card.featured { grid-column:span 2; display:grid; grid-template-columns:1fr 1fr; }
.product-card.featured .product-img { height:auto; min-height:280px; font-size:140px; }
.product-card.featured .product-info { padding:32px; display:flex; flex-direction:column; justify-content:space-between; }
.product-card.featured .product-name { font-size:20px; margin-bottom:10px; }
.product-card.featured .product-desc { font-size:13.5px; margin-bottom:20px; }
.star-row { display:flex; align-items:center; gap:4px; margin-bottom:8px; }
.star { color:var(--amber); font-size:14px; }
.star-count { font-size:12px; color:var(--ink-muted); margin-left:4px; }

/* ─── HOW IT WORKS ──────────────────────────────────────────────── */
.how-section { background:var(--green-deep); color:var(--cream); overflow-x:hidden; }
.how-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; margin-top:64px; position:relative; }
.how-steps::before { content:''; position:absolute; top:44px; left:12%; right:12%; height:1.5px; background:linear-gradient(to right,transparent,rgba(106,179,74,.4) 20%,rgba(106,179,74,.4) 80%,transparent); }
.step-card { text-align:center; position:relative; transition:transform .3s; }
.step-card:hover { transform:translateY(-6px); }
.step-num { width:80px; height:80px; background:rgba(106,179,74,.12); border:1.5px solid rgba(106,179,74,.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; font-family:'Playfair Display',serif; font-size:32px; font-weight:700; color:var(--green-light); position:relative; z-index:2; transition:background .3s,border-color .3s; }
.step-card:hover .step-num { background:rgba(106,179,74,.25); border-color:var(--green-light); }
.step-icon { font-size:32px; margin-bottom:10px; }
.step-title { font-size:17px; font-weight:500; margin-bottom:10px; color:var(--cream); }
.step-desc { font-size:13px; color:rgba(247,244,238,.6); line-height:1.65; }

/* ─── MUSHROOM TYPES ─────────────────────────────────────────────── */
.types-section { background:var(--cream); }
.types-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.type-card { border-radius:var(--radius-lg); overflow:hidden; position:relative; min-height:320px; display:flex; flex-direction:column; justify-content:flex-end; padding:32px; transition:transform .3s cubic-bezier(.22,.68,0,1.2); }
.type-card:hover { transform:scale(1.02); }
.type-bg { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:120px; transition:transform .5s ease; }
.type-card:hover .type-bg { transform:scale(1.1); }
.type-card::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,rgba(0,0,0,.05) 0%,rgba(0,0,0,.65) 100%); }
.type-content { position:relative; z-index:2; }
.type-tag { display:inline-block; padding:4px 12px; border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:10px; }
.type-card-1 { background:#1e3d12; } .type-card-2 { background:#2d1a0e; } .type-card-3 { background:#0e2535; }
.type-tag-green { background:var(--green-light); color:var(--green-deep); }
.type-tag-amber { background:var(--amber); color:white; }
.type-tag-blue  { background:#3a8cc4; color:white; }
.type-title { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:white; margin-bottom:8px; }
.type-desc { font-size:13px; color:rgba(255,255,255,.7); line-height:1.6; margin-bottom:18px; }
.type-link { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:500; color:white; border-bottom:1px solid rgba(255,255,255,.4); padding-bottom:3px; transition:border-color .2s; }
.type-link:hover { border-color:white; }

/* ─── TESTIMONIALS ──────────────────────────────────────────────── */
.testimonials-section { background:var(--cream-dark); overflow:hidden; }
.testimonials-header { text-align:center; margin-bottom:60px; }
.testimonials-track { display:flex; gap:24px; animation:marquee 35s linear infinite; width:max-content; }
.testimonials-track:hover { animation-play-state:paused; }
.testi-card { background:var(--white); border-radius:var(--radius-md); padding:32px; width:340px; flex-shrink:0; box-shadow:0 4px 20px rgba(0,0,0,.06); border:1px solid rgba(0,0,0,.05); }
.testi-stars { display:flex; gap:3px; margin-bottom:16px; }
.testi-text { font-size:14px; line-height:1.7; color:var(--ink-soft); margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.testi-name { font-size:14px; font-weight:500; }
.testi-loc { font-size:12px; color:var(--ink-muted); }

/* ─── NEWSLETTER ────────────────────────────────────────────────── */
.newsletter-section { background:var(--green-deep); padding:100px 64px; position:relative; overflow:hidden; }
.newsletter-section::before { content:'🌿'; position:absolute; right:-40px; bottom:-60px; font-size:360px; line-height:1; opacity:.06; animation:float 10s ease-in-out infinite; pointer-events:none; }
.newsletter-inner { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.newsletter-content .section-eyebrow { color:var(--green-light); }
.newsletter-content .display-md { color:var(--cream); margin-bottom:16px; }
.newsletter-content p { color:rgba(247,244,238,.65); font-size:15px; line-height:1.7; margin-bottom:32px; }
.newsletter-perks { display:flex; flex-direction:column; gap:12px; }
.perk-item { display:flex; align-items:center; gap:12px; font-size:14px; color:rgba(247,244,238,.75); }
.perk-check { width:22px; height:22px; flex-shrink:0; background:rgba(106,179,74,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--green-light); font-size:12px; }
.newsletter-form-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-lg); padding:44px; backdrop-filter:blur(10px); }
.form-title { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:var(--cream); margin-bottom:8px; }
.form-sub { font-size:13px; color:rgba(247,244,238,.55); margin-bottom:28px; }
.form-group { margin-bottom:16px; }
.form-label { font-size:12px; font-weight:500; color:rgba(247,244,238,.6); margin-bottom:8px; display:block; }
.form-input { width:100%; padding:14px 18px; background:rgba(255,255,255,.07); border:1.5px solid rgba(255,255,255,.12); border-radius:var(--r-sm); font-family:'DM Sans',sans-serif; font-size:14px; color:var(--cream); outline:none; transition:border-color .2s,background .2s; }
.form-input::placeholder { color:rgba(247,244,238,.3); }
.form-input:focus { border-color:var(--green-light); background:rgba(255,255,255,.1); }
.form-select { width:100%; padding:14px 18px; background:rgba(255,255,255,.07); border:1.5px solid rgba(255,255,255,.12); border-radius:var(--r-sm); font-family:'DM Sans',sans-serif; font-size:14px; color:rgba(247,244,238,.7); outline:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(247,244,238,0.4)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; transition:border-color .2s; }
.form-select:focus { border-color:var(--green-light); }
.form-note { font-size:11px; color:rgba(247,244,238,.35); margin-top:14px; text-align:center; }
.free-guide-badge { display:inline-flex; align-items:center; gap:8px; padding:10px 18px; background:rgba(212,130,10,.2); border:1px solid rgba(212,130,10,.35); border-radius:var(--r-sm); color:#f4c56a; font-size:13px; margin-bottom:20px; width:100%; }

/* ─── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar { background:var(--ink); padding:56px 64px; }
.stats-inner { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; }
.stat-item { text-align:center; padding:0 32px; border-right:1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:'Playfair Display',serif; font-size:52px; font-weight:900; color:var(--green-light); line-height:1; margin-bottom:6px; }
.stat-label { font-size:13px; color:rgba(255,255,255,.45); letter-spacing:.06em; }

/* ─── BLOG PREVIEW ───────────────────────────────────────────────── */
.blog-section { background:var(--cream); }
.blog-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:24px; margin-top:52px; }
.blog-card { border-radius:var(--radius-md); overflow:hidden; background:var(--white); border:1px solid rgba(0,0,0,.06); transition:transform .3s,box-shadow .3s; }
.blog-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px var(--shadow); }
.blog-img { height:220px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:80px; overflow:hidden; position:relative; }
.blog-card.featured .blog-img { height:300px; font-size:120px; }
.blog-cat { display:inline-block; padding:5px 12px; background:var(--green-pale); color:var(--green-mid); border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:10px; }
.blog-info { padding:24px; }
.blog-title { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; line-height:1.3; color:var(--ink); margin-bottom:10px; transition:color .2s; }
.blog-card.featured .blog-title { font-size:24px; }
.blog-card:hover .blog-title { color:var(--green-mid); }
.blog-excerpt { font-size:13px; color:var(--ink-muted); line-height:1.6; margin-bottom:16px; }
.blog-meta { display:flex; align-items:center; gap:12px; font-size:12px; color:var(--ink-muted); }
.blog-meta-dot { width:3px; height:3px; background:var(--ink-muted); border-radius:50%; }

/* ─── HOMEPAGE FOOTER ────────────────────────────────────────────── */
.footer { background:var(--ink); color:rgba(247,244,238,.7); padding:80px 64px 40px; }
.footer-grid { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:64px; }
.footer-brand .footer-logo { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; color:var(--white); margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.footer-brand p { font-size:14px; line-height:1.7; color:rgba(247,244,238,.5); max-width:280px; margin-bottom:28px; }
.social-links { display:flex; gap:10px; }
.social-link { width:40px; height:40px; background:rgba(255,255,255,.07); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; transition:background .2s,transform .2s; }
.social-link:hover { background:var(--green-mid); transform:translateY(-3px); }
.footer-col h4 { font-size:13px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:rgba(247,244,238,.4); margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col li a { font-size:14px; color:rgba(247,244,238,.6); transition:color .2s; }
.footer-col li a:hover { color:var(--green-light); }
.footer-bottom { max-width:1280px; margin:0 auto; padding-top:28px; border-top:1px solid rgba(255,255,255,.07); display:flex; align-items:center; justify-content:space-between; font-size:13px; color:rgba(247,244,238,.3); }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { color:rgba(247,244,238,.3); transition:color .2s; }
.footer-bottom-links a:hover { color:rgba(247,244,238,.7); }

/* ─── MINIMAL FOOTER (product/blog) ─────────────────────────────── */
.footer-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; font-size:13px; color:rgba(247,244,238,.35); }
.footer-logo { font-family:'Playfair Display',serif; font-size:22px; color:var(--cream); }

/* ─── STICKY BAR (homepage) ─────────────────────────────────────── */
.sticky-bar { position:fixed; bottom:0; left:0; right:0; z-index:800; background:var(--green-deep); border-top:1px solid rgba(106,179,74,.3); padding:12px 64px; display:flex; align-items:center; justify-content:space-between; transform:translateY(100%); transition:transform .4s cubic-bezier(.22,.68,0,1.2); }
.sticky-bar.visible { transform:translateY(0); }
.sticky-bar-text { color:rgba(247,244,238,.75); font-size:14px; }
.sticky-bar-text strong { color:var(--green-light); }
.sticky-bar-actions { display:flex; gap:12px; align-items:center; }
.sticky-close { background:none; border:none; color:rgba(247,244,238,.4); font-size:20px; transition:color .2s; margin-left:16px; }
.sticky-close:hover { color:rgba(247,244,238,.8); }

/* ─── POPUP ──────────────────────────────────────────────────────── */
.popup-overlay { position:fixed; inset:0; z-index:1000; background:rgba(28,26,20,.7); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity .35s; }
.popup-overlay.open { opacity:1; pointer-events:auto; }
.popup-card { background:var(--white); border-radius:var(--radius-xl); width:580px; max-width:94vw; overflow:hidden; display:grid; grid-template-columns:1fr 1fr; transform:translateY(24px) scale(.96); transition:transform .35s cubic-bezier(.22,.68,0,1.2); box-shadow:0 32px 80px rgba(0,0,0,.25); }
.popup-overlay.open .popup-card { transform:translateY(0) scale(1); }
.popup-visual { background:var(--green-deep); display:flex; flex-direction:column; justify-content:center; align-items:center; padding:40px 28px; text-align:center; position:relative; overflow:hidden; }
.popup-visual::before { content:'🍄'; font-size:120px; opacity:.12; position:absolute; top:-20px; left:-20px; }
.popup-visual-icon { margin-bottom:16px; position:relative; z-index:1; }
.popup-visual-icon img { width:80px; height:auto; display:block; }
.popup-visual-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--cream); line-height:1.2; position:relative; z-index:1; }
.popup-visual-sub { font-size:12px; color:rgba(247,244,238,.55); margin-top:8px; position:relative; z-index:1; }
.popup-body { padding:36px 32px; }
.popup-close { position:absolute; top:16px; right:16px; background:var(--cream-dark); border:none; border-radius:50%; width:32px; height:32px; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--ink-muted); transition:background .2s; }
.popup-close:hover { background:var(--cream); }
.popup-body h3 { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; margin-bottom:6px; color:var(--ink); }
.popup-body .sub { font-size:13px; color:var(--ink-muted); margin-bottom:24px; }
.popup-body .form-input { background:var(--cream); border-color:var(--cream-dark); color:var(--ink); }
.popup-body .form-input::placeholder { color:var(--ink-muted); }
.popup-body .form-input:focus { border-color:var(--green-mid); background:var(--white); }
.popup-note { font-size:11px; color:var(--ink-muted); margin-top:12px; text-align:center; }
.popup-skip { text-align:center; margin-top:12px; }
.popup-skip a { font-size:12px; color:var(--ink-muted); border-bottom:1px solid transparent; }
.popup-skip a:hover { border-color:var(--ink-muted); }

/* ─── MISC ───────────────────────────────────────────────────────── */
.highlight { color:var(--green-mid); }
.text-amber { color:var(--amber); }
.pill { display:inline-flex; align-items:center; gap:6px; padding:5px 14px; background:var(--green-pale); color:var(--green-deep); border-radius:100px; font-size:12px; font-weight:500; }

/* ════════════════════════════════════════════════════════════════
   PRODUCT PAGE STYLES
   ════════════════════════════════════════════════════════════════ */

/* ─── BREADCRUMB ── */
.breadcrumb { padding:100px 64px 0; max-width:1320px; margin:0 auto; display:flex; align-items:center; gap:8px; font-size:13px; color:var(--ink-muted); }
.breadcrumb a { color:var(--ink-muted); transition:color .2s; }
.breadcrumb a:hover { color:var(--green-mid); }
.breadcrumb-sep { opacity:.4; }

/* ─── PRODUCT HERO GRID ── */
.product-hero { padding:32px 64px 80px; max-width:1320px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }

/* Gallery */
.gallery { position:sticky; top:88px; }
.gallery-main { background:var(--cream-dark); border-radius:var(--r-lg); aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:180px; line-height:1; position:relative; overflow:hidden; transition:background .3s; }
.gallery-main:hover .gallery-zoom { opacity:1; }
.gallery-main-img { transition:transform .4s cubic-bezier(.22,.68,0,1.2); }
.gallery-main:hover .gallery-main-img { transform:scale(1.04); }
.gallery-zoom { position:absolute; top:16px; right:16px; background:rgba(255,255,255,.85); backdrop-filter:blur(6px); border-radius:50%; width:40px; height:40px; display:flex; align-items:center; justify-content:center; font-size:16px; opacity:0; transition:opacity .2s; }
.gallery-badge { position:absolute; top:16px; left:16px; background:var(--amber); color:#fff; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:6px 14px; border-radius:100px; }
.gallery-thumbs { display:flex; gap:10px; margin-top:12px; }
.thumb { width:80px; height:80px; border-radius:var(--r-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:32px; border:2px solid transparent; transition:border-color .2s,transform .2s; }
.thumb:hover, .thumb.active { border-color:var(--green-mid); transform:scale(1.05); }
.gallery-share { display:flex; gap:8px; margin-top:16px; align-items:center; }
.gallery-share span { font-size:13px; color:var(--ink-muted); margin-right:4px; }
.share-btn { width:36px; height:36px; border-radius:50%; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:15px; transition:background .2s,transform .2s; }
.share-btn:hover { background:var(--cream-med); transform:scale(1.1); }

/* Product Info Panel */
.product-cats { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.cat-pill { display:inline-flex; align-items:center; gap:5px; padding:4px 12px; background:var(--green-pale); color:var(--green-deep); border-radius:100px; font-size:11px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }
.product-title { font-family:'Playfair Display',serif; font-size:clamp(28px,4vw,44px); font-weight:900; line-height:1.05; letter-spacing:-.02em; color:var(--ink); margin-bottom:16px; }
.product-tagline { font-size:17px; color:var(--ink-soft); line-height:1.6; margin-bottom:24px; font-weight:300; }
.rating-row { display:flex; align-items:center; gap:14px; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--border); }
.stars { display:flex; gap:3px; }
.star.half { opacity:.5; }
.rating-score { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); }
.rating-count { font-size:13px; color:var(--ink-muted); }
.rating-count a { color:var(--green-mid); border-bottom:1px solid transparent; }
.rating-count a:hover { border-color:var(--green-mid); }
.sold-badge { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--ink-muted); margin-left:auto; }
.sold-dot { width:7px; height:7px; background:var(--green-light); border-radius:50%; animation:pulse 2s infinite; }
.price-block { margin-bottom:28px; }
.price-row { display:flex; align-items:baseline; gap:12px; margin-bottom:8px; }
.price-current { font-family:'Playfair Display',serif; font-size:42px; font-weight:900; color:var(--ink); line-height:1; }
.price-old { font-size:20px; color:var(--ink-muted); text-decoration:line-through; }
.price-save { background:rgba(106,179,74,.15); color:var(--green-mid); font-size:13px; font-weight:600; padding:4px 10px; border-radius:100px; }
.price-note { font-size:12px; color:var(--ink-muted); }
.emi-note { font-size:13px; color:var(--green-mid); margin-top:6px; }
.option-group { margin-bottom:22px; }
.option-label { font-size:13px; font-weight:500; color:var(--ink-soft); margin-bottom:10px; display:flex; align-items:center; justify-content:space-between; }
.option-label span { color:var(--ink); font-weight:600; }
.option-pills { display:flex; gap:8px; flex-wrap:wrap; }
.option-pill { padding:9px 18px; border-radius:100px; border:1.5px solid var(--border); font-size:13px; font-weight:500; color:var(--ink-soft); transition:all .2s; background:var(--white); }
.option-pill:hover { border-color:var(--green-mid); color:var(--green-deep); }
.option-pill.selected { border-color:var(--green-deep); background:var(--green-deep); color:var(--cream); }
.option-pill.disabled { opacity:.35; pointer-events:none; text-decoration:line-through; }
.qty-cta { display:flex; gap:12px; align-items:center; margin-bottom:18px; }
.qty-control { display:flex; align-items:center; border:1.5px solid var(--border); border-radius:100px; overflow:hidden; background:var(--white); }
.qty-btn { width:44px; height:48px; display:flex; align-items:center; justify-content:center; font-size:20px; background:none; border:none; color:var(--ink); transition:background .2s; }
.qty-btn:hover { background:var(--cream-dark); }
.qty-num { width:44px; text-align:center; font-size:16px; font-weight:500; border:none; background:none; font-family:'DM Sans',sans-serif; color:var(--ink); }
.cta-main { flex:1; padding:16px; font-size:16px; justify-content:center; }
.wishlist-btn { width:52px; height:52px; border-radius:50%; background:var(--white); border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:20px; transition:all .2s; flex-shrink:0; }
.wishlist-btn:hover { border-color:#e05c4a; background:#fff5f5; transform:scale(1.08); }
.buy-now-row { display:flex; gap:12px; margin-bottom:24px; }
.buy-now-row .btn { flex:1; justify-content:center; padding:14px; }
.trust-pills { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid var(--border); }
.trust-pill { display:flex; align-items:center; gap:7px; padding:8px 14px; background:var(--cream-dark); border-radius:var(--r-sm); font-size:12px; color:var(--ink-soft); }
.trust-pill .ti { font-size:16px; }
.benefits-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:28px; }
.benefit-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); padding:16px; text-align:center; transition:border-color .2s,transform .2s; }
.benefit-card:hover { border-color:var(--green-pale); transform:translateY(-2px); }
.benefit-icon { font-size:26px; margin-bottom:8px; }
.benefit-title { font-size:13px; font-weight:600; color:var(--ink); margin-bottom:3px; }
.benefit-sub { font-size:11px; color:var(--ink-muted); line-height:1.4; }
.coupon-box { background:var(--amber-pale); border:1px dashed var(--amber); border-radius:var(--r-md); padding:14px 18px; display:flex; align-items:center; gap:12px; margin-bottom:28px; }
.coupon-code { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--amber); letter-spacing:.08em; }
.coupon-text { font-size:13px; color:var(--ink-soft); }
.coupon-copy { margin-left:auto; font-size:12px; font-weight:600; color:var(--amber); background:none; border:none; padding:6px 12px; border-radius:100px; background:rgba(212,130,10,.1); transition:background .2s; }
.coupon-copy:hover { background:rgba(212,130,10,.2); }
.delivery-row { display:flex; align-items:center; gap:12px; font-size:14px; color:var(--ink-soft); margin-bottom:10px; }
.delivery-row .icon { font-size:20px; }
.delivery-row strong { color:var(--ink); }
.pincode-input { display:flex; gap:8px; margin-bottom:28px; }
.pincode-field { flex:1; padding:11px 16px; border:1.5px solid var(--border); border-radius:var(--r-sm); font-family:'DM Sans',sans-serif; font-size:14px; color:var(--ink); background:var(--white); outline:none; transition:border-color .2s; }
.pincode-field:focus { border-color:var(--green-mid); }
.pincode-check { padding:11px 20px; background:var(--green-deep); color:var(--cream); border:none; border-radius:var(--r-sm); font-size:13px; font-weight:500; transition:background .2s; }
.pincode-check:hover { background:var(--green-mid); }

/* Product Tabs */
.product-tabs-section { max-width:1320px; margin:0 auto 80px; padding:0 64px; }
.tabs-header { display:flex; border-bottom:1px solid var(--border); gap:4px; overflow-x:auto; }
.tab { padding:14px 24px; font-size:14px; font-weight:500; color:var(--ink-muted); background:none; border:none; border-bottom:2.5px solid transparent; transition:color .2s,border-color .2s; white-space:nowrap; margin-bottom:-1px; }
.tab.active { color:var(--green-deep); border-color:var(--green-deep); }
.tab:hover { color:var(--ink); }
.tab-pane { display:none; padding:40px 0; animation:fadeUp .4s ease both; }
.tab-pane.active { display:block; }
.desc-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.desc-text h3 { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; margin-bottom:16px; color:var(--ink); }
.desc-text p { font-size:15px; color:var(--ink-soft); line-height:1.75; margin-bottom:16px; }
.desc-text ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.desc-text li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink-soft); line-height:1.6; }
.desc-text li::before { content:'✓'; color:var(--green-light); font-weight:700; flex-shrink:0; margin-top:1px; }
.desc-visual { background:var(--green-deep); border-radius:var(--r-lg); padding:40px; color:var(--cream); min-height:380px; display:flex; flex-direction:column; justify-content:flex-end; position:relative; overflow:hidden; }
.desc-visual::before { content:'🍄'; position:absolute; top:-20px; right:-20px; font-size:200px; opacity:.1; animation:float 8s ease-in-out infinite; }
.desc-visual h4 { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; margin-bottom:12px; }
.desc-visual p { font-size:14px; color:rgba(247,244,238,.65); line-height:1.65; }
.spec-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:24px; }
.spec-item { background:rgba(255,255,255,.07); border-radius:var(--r-sm); padding:14px 16px; }
.spec-label { font-size:11px; color:rgba(247,244,238,.45); text-transform:uppercase; letter-spacing:.08em; margin-bottom:4px; }
.spec-val { font-size:15px; font-weight:500; color:var(--cream); }
.how-steps-list { display:flex; flex-direction:column; gap:0; }
.how-step { display:grid; grid-template-columns:72px 1fr; gap:24px; padding:28px 0; border-bottom:1px solid var(--border); }
.how-step:last-child { border-bottom:none; }
.step-circle { width:56px; height:56px; background:var(--green-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-direction:column; flex-shrink:0; }
.step-n { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--green-deep); line-height:1; }
.step-body h4 { font-size:16px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.step-body p { font-size:14px; color:var(--ink-soft); line-height:1.65; }
.step-tip { display:inline-flex; align-items:center; gap:6px; margin-top:10px; padding:6px 12px; background:var(--amber-pale); border-radius:var(--r-sm); font-size:12px; color:var(--earth); }
.reviews-summary { display:grid; grid-template-columns:200px 1fr; gap:40px; align-items:center; margin-bottom:40px; padding:32px; background:var(--white); border:1px solid var(--border); border-radius:var(--r-lg); }
.reviews-big { text-align:center; }
.reviews-big .score { font-family:'Playfair Display',serif; font-size:72px; font-weight:900; color:var(--ink); line-height:1; }
.reviews-big .sub { font-size:13px; color:var(--ink-muted); margin-top:4px; }
.reviews-bars { display:flex; flex-direction:column; gap:10px; flex:1; }
.bar-row { display:flex; align-items:center; gap:12px; font-size:13px; color:var(--ink-muted); }
.bar-track { flex:1; height:8px; background:var(--cream-dark); border-radius:100px; overflow:hidden; }
.bar-fill { height:100%; background:var(--amber); border-radius:100px; transition:width .8s cubic-bezier(.22,.68,0,1.2); }
.bar-count { min-width:28px; text-align:right; }
.reviews-list { display:flex; flex-direction:column; gap:24px; }
.review-card { background:var(--white); border:1px solid var(--border); border-radius:var(--r-md); padding:28px; }
.review-header { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:14px; }
.reviewer-info { display:flex; align-items:center; gap:12px; }
.reviewer-avatar { width:44px; height:44px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.reviewer-name { font-size:15px; font-weight:600; color:var(--ink); }
.reviewer-meta { font-size:12px; color:var(--ink-muted); margin-top:2px; }
.review-verified { font-size:11px; font-weight:600; color:var(--green-mid); background:var(--green-pale); padding:3px 9px; border-radius:100px; }
.review-title { font-size:15px; font-weight:600; color:var(--ink); margin-bottom:8px; }
.review-body { font-size:14px; color:var(--ink-soft); line-height:1.7; }
.review-photos { display:flex; gap:8px; margin-top:14px; }
.review-photo { width:72px; height:72px; border-radius:var(--r-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:28px; }
.review-actions { display:flex; gap:16px; margin-top:14px; padding-top:14px; border-top:1px solid var(--border); }
.review-action-btn { font-size:12px; color:var(--ink-muted); background:none; border:none; display:flex; align-items:center; gap:5px; transition:color .2s; }
.review-action-btn:hover { color:var(--green-mid); }

/* Related Products */
.related-section { background:var(--cream-dark); padding:80px 64px; }
.related-inner { max-width:1320px; margin:0 auto; }
.related-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; }
.related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.pc-img { height:200px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:80px; position:relative; }
.pc-badge { position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.pc-info { padding:18px; }
.pc-name { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:6px; line-height:1.35; }
.pc-price-row { display:flex; align-items:baseline; gap:8px; margin-bottom:12px; }
.pc-price { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); }
.pc-old { font-size:13px; color:var(--ink-muted); text-decoration:line-through; }
.pc-add { width:100%; padding:10px; background:var(--green-deep); color:var(--cream); border:none; border-radius:var(--r-sm); font-size:13px; font-weight:500; transition:background .2s; }
.pc-add:hover { background:var(--green-mid); }

/* FAQ */
.faq-section { max-width:1320px; margin:0 auto; padding:80px 64px; }
.faq-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:72px; align-items:start; }
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:20px 0; gap:16px; }
.faq-q span { font-size:15px; font-weight:500; color:var(--ink); }
.faq-icon { width:28px; height:28px; border-radius:50%; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; transition:background .2s,transform .3s; color:var(--ink-muted); }
.faq-item.open .faq-icon { background:var(--green-pale); color:var(--green-deep); transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s cubic-bezier(.22,.68,0,1.2); }
.faq-a p { padding:0 0 20px; font-size:14px; color:var(--ink-soft); line-height:1.7; }
.faq-item.open .faq-a { max-height:300px; }

/* Sticky ATC */
.sticky-atc { position:fixed; bottom:0; left:0; right:0; z-index:800; background:rgba(247,244,238,.95); backdrop-filter:blur(12px); border-top:1px solid var(--border); padding:14px 64px; display:flex; align-items:center; gap:20px; transform:translateY(100%); transition:transform .4s cubic-bezier(.22,.68,0,1.2); }
.sticky-atc.visible { transform:translateY(0); }
.sticky-product { display:flex; align-items:center; gap:14px; }
.sticky-thumb { width:48px; height:48px; border-radius:var(--r-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:24px; }
.sticky-name { font-size:14px; font-weight:600; color:var(--ink); }
.sticky-price { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--ink); }
.sticky-actions { display:flex; gap:10px; align-items:center; margin-left:auto; }

/* ════════════════════════════════════════════════════════════════
   BLOG PAGE STYLES
   ════════════════════════════════════════════════════════════════ */

/* ─── BLOG HERO ── */
.blog-hero { background:var(--green-deep); padding:108px 64px 72px; position:relative; overflow:hidden; }
.blog-hero::before { content:'🍄'; position:absolute; right:-60px; top:-40px; font-size:400px; opacity:.06; animation:float 10s ease-in-out infinite; pointer-events:none; }
.blog-hero::after { content:'🌿'; position:absolute; left:-40px; bottom:-80px; font-size:280px; opacity:.05; animation:float 12s ease-in-out infinite 2s; pointer-events:none; }
.blog-hero-inner { max-width:1280px; margin:0 auto; position:relative; z-index:2; }
.blog-hero-eyebrow { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--green-light); font-weight:500; margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.hero-live-dot { width:7px; height:7px; background:var(--green-light); border-radius:50%; animation:pulse 2s infinite; }
.blog-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(42px,7vw,88px); font-weight:900; color:var(--cream); line-height:.95; letter-spacing:-.03em; margin-bottom:20px; }
.blog-hero h1 em { font-style:italic; color:var(--green-light); }
.blog-hero p { font-size:18px; color:rgba(247,244,238,.6); font-weight:300; max-width:520px; line-height:1.65; margin-bottom:40px; }
.hero-search { display:flex; align-items:center; background:rgba(255,255,255,.08); border:1.5px solid rgba(255,255,255,.15); border-radius:100px; padding:6px 6px 6px 24px; max-width:480px; gap:8px; transition:border-color .2s,background .2s; }
.hero-search:focus-within { border-color:rgba(106,179,74,.6); background:rgba(255,255,255,.12); }
.hero-search input { flex:1; background:none; border:none; outline:none; font-family:'DM Sans',sans-serif; font-size:15px; color:var(--cream); }
.hero-search input::placeholder { color:rgba(247,244,238,.35); }
.hero-search button { padding:11px 22px; background:var(--green-light); color:var(--green-deep); border:none; border-radius:100px; font-size:13px; font-weight:600; transition:background .2s; }
.hero-search button:hover { background:var(--green-pale); }
.hero-stats { display:flex; gap:40px; margin-top:48px; padding-top:40px; border-top:1px solid rgba(255,255,255,.1); }
.hs-item { text-align:left; }
.hs-num { font-family:'Playfair Display',serif; font-size:28px; font-weight:900; color:var(--green-light); line-height:1; }
.hs-label { font-size:12px; color:rgba(247,244,238,.45); margin-top:3px; letter-spacing:.04em; }

/* ─── FILTER BAR ── */
.filter-bar { background:var(--white); border-bottom:1px solid var(--border); position:sticky; top:68px; z-index:800; padding:0 64px; }
.filter-inner { max-width:1280px; margin:0 auto; display:flex; align-items:center; gap:4px; overflow-x:auto; padding:12px 0; }
.filter-btn { padding:8px 20px; border-radius:100px; border:1.5px solid transparent; font-size:13px; font-weight:500; color:var(--ink-muted); background:none; transition:all .2s; white-space:nowrap; display:flex; align-items:center; gap:6px; }
.filter-btn:hover { color:var(--ink); border-color:var(--border); }
.filter-btn.active { background:var(--green-deep); color:var(--cream); border-color:var(--green-deep); }
.filter-count { font-size:10px; background:rgba(0,0,0,.1); padding:2px 7px; border-radius:100px; }
.filter-btn.active .filter-count { background:rgba(255,255,255,.2); }

/* ─── BLOG MAIN LAYOUT ── */
.blog-main { max-width:1280px; margin:0 auto; padding:56px 64px 100px; display:grid; grid-template-columns:1fr 340px; gap:64px; align-items:start; }

/* Featured Post */
.featured-post { background:var(--green-deep); border-radius:var(--r-lg); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; margin-bottom:48px; min-height:460px; transition:transform .3s,box-shadow .3s; }
.featured-post:hover { transform:translateY(-4px); box-shadow:0 24px 60px rgba(30,61,18,.2); }
.fp-visual { background:linear-gradient(135deg,#1e3d12,#3d6b2c); display:flex; align-items:center; justify-content:center; font-size:160px; position:relative; overflow:hidden; }
.fp-visual::after { content:''; position:absolute; inset:0; background:linear-gradient(to right,transparent,rgba(30,61,18,.4)); }
.fp-badge { position:absolute; top:20px; left:20px; background:var(--amber); color:#fff; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 12px; border-radius:100px; z-index:2; }
.fp-content { padding:44px; display:flex; flex-direction:column; justify-content:flex-end; }
.fp-cat { display:inline-flex; align-items:center; gap:6px; padding:4px 12px; background:rgba(106,179,74,.2); color:var(--green-light); border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:16px; width:fit-content; }
.fp-title { font-family:'Playfair Display',serif; font-size:clamp(22px,2.5vw,30px); font-weight:700; color:var(--cream); line-height:1.15; margin-bottom:14px; }
.fp-excerpt { font-size:14px; color:rgba(247,244,238,.6); line-height:1.7; margin-bottom:24px; }
.fp-meta { display:flex; align-items:center; gap:14px; font-size:12px; color:rgba(247,244,238,.45); }
.fp-meta-dot { width:3px; height:3px; background:rgba(247,244,238,.3); border-radius:50%; }
.fp-author { display:flex; align-items:center; gap:8px; }
.fp-avatar { width:28px; height:28px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:14px; }
.fp-read-btn { display:inline-flex; align-items:center; gap:8px; color:var(--green-light); font-size:13px; font-weight:500; border-bottom:1px solid rgba(106,179,74,.4); padding-bottom:3px; transition:border-color .2s; width:fit-content; margin-top:20px; }
.fp-read-btn:hover { border-color:var(--green-light); }
.arrow-anim { display:inline-block; transition:transform .2s; }
.fp-read-btn:hover .arrow-anim { transform:translateX(5px); }

/* Post Grid */
.posts-section-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.posts-section-title { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--ink); }
.view-all { font-size:13px; color:var(--green-mid); font-weight:500; border-bottom:1px solid transparent; transition:border-color .2s; }
.view-all:hover { border-color:var(--green-mid); }
.posts-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-bottom:48px; }
.post-card { background:var(--white); border-radius:var(--r-md); overflow:hidden; border:1px solid var(--border); transition:transform .3s cubic-bezier(.22,.68,0,1.2),box-shadow .3s; }
.post-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px var(--shadow); }
.post-card .pc-img { height:200px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:72px; position:relative; overflow:hidden; }
.post-card:hover .pc-img span { transform:scale(1.08); }
.post-card .pc-img span { display:block; transition:transform .4s cubic-bezier(.22,.68,0,1.2); }
.pc-cat-pill { position:absolute; bottom:12px; left:12px; display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; }
.pill-med { background:rgba(30,61,18,.85); color:var(--green-pale); }
.pill-cul { background:rgba(139,104,67,.85); color:#f4e0c8; }
.pill-hlth { background:rgba(29,95,165,.85); color:#bddaf4; }
.pill-how { background:rgba(212,130,10,.85); color:#fdf0d8; }
.pc-body { padding:22px; }
.pc-read-time { font-size:11px; color:var(--ink-muted); margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.pc-read-time::before { content:''; width:16px; height:1.5px; background:var(--ink-muted); display:inline-block; }
.pc-title { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; line-height:1.3; color:var(--ink); margin-bottom:10px; transition:color .2s; }
.post-card:hover .pc-title { color:var(--green-mid); }
.pc-excerpt { font-size:13px; color:var(--ink-muted); line-height:1.65; margin-bottom:16px; }
.pc-footer { display:flex; align-items:center; justify-content:space-between; }
.pc-author { display:flex; align-items:center; gap:8px; }
.pc-avatar { width:30px; height:30px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; }
.pc-author-name { font-size:12px; font-weight:500; color:var(--ink-soft); }
.pc-date { font-size:11px; color:var(--ink-muted); }
.pc-arrow { width:32px; height:32px; border-radius:50%; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:13px; transition:background .2s,transform .2s; }
.post-card:hover .pc-arrow { background:var(--green-deep); color:var(--cream); transform:rotate(-45deg); }
.post-card.wide { grid-column:span 2; display:grid; grid-template-columns:340px 1fr; }
.post-card.wide .pc-img { height:100%; min-height:220px; }
.post-card.wide .pc-body { padding:32px; }
.post-card.wide .pc-title { font-size:22px; }

/* Sidebar */
.sidebar { position:sticky; top:136px; display:flex; flex-direction:column; gap:28px; }
.sidebar-widget { background:var(--white); border-radius:var(--r-md); border:1px solid var(--border); overflow:hidden; }
.sw-header { padding:18px 22px; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:10px; }
.sw-header h3 { font-size:14px; font-weight:600; color:var(--ink); }
.sw-icon { font-size:18px; }
.sw-body { padding:18px 22px; }
.nl-widget { background:var(--green-deep); }
.nl-widget .sw-header { border-color:rgba(255,255,255,.1); }
.nl-widget .sw-header h3 { color:var(--cream); }
.nl-widget .sw-body p { font-size:13px; color:rgba(247,244,238,.6); margin-bottom:16px; line-height:1.6; }
.nl-input { width:100%; padding:11px 14px; background:rgba(255,255,255,.08); border:1.5px solid rgba(255,255,255,.15); border-radius:var(--r-sm); font-family:'DM Sans',sans-serif; font-size:14px; color:var(--cream); outline:none; margin-bottom:10px; transition:border-color .2s; }
.nl-input::placeholder { color:rgba(247,244,238,.3); }
.nl-input:focus { border-color:rgba(106,179,74,.5); }
.nl-submit { width:100%; padding:12px; background:var(--green-light); color:var(--green-deep); border:none; border-radius:var(--r-sm); font-size:13px; font-weight:700; transition:background .2s; }
.nl-submit:hover { background:var(--green-pale); }
.nl-note { font-size:11px; color:rgba(247,244,238,.3); text-align:center; margin-top:10px; }
.popular-list { display:flex; flex-direction:column; gap:0; }
.popular-item { display:flex; gap:12px; align-items:flex-start; border-bottom:1px solid var(--border); transition:background .2s; margin:0 -22px; padding:14px 22px; }
.popular-item:last-child { border-bottom:none; }
.popular-item:hover { background:var(--cream); }
.pop-num { font-family:'Playfair Display',serif; font-size:20px; font-weight:900; color:var(--green-pale); line-height:1; min-width:24px; flex-shrink:0; margin-top:2px; }
.pop-title { font-size:13px; font-weight:600; color:var(--ink); line-height:1.4; margin-bottom:4px; transition:color .2s; }
.popular-item:hover .pop-title { color:var(--green-mid); }
.pop-meta { font-size:11px; color:var(--ink-muted); }
.cat-list { display:flex; flex-direction:column; gap:0; }
.cat-item { display:flex; align-items:center; justify-content:space-between; padding:11px 0; border-bottom:1px solid var(--border); }
.cat-item:last-child { border-bottom:none; }
.cat-name { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--ink-soft); transition:color .2s; }
.cat-name:hover { color:var(--green-mid); }
.cat-emoji { font-size:16px; }
.cat-count { font-size:12px; color:var(--ink-muted); background:var(--cream-dark); padding:2px 8px; border-radius:100px; }
.tags-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.tag { padding:6px 14px; background:var(--cream-dark); border-radius:100px; font-size:12px; color:var(--ink-soft); transition:all .2s; }
.tag:hover { background:var(--green-pale); color:var(--green-deep); }
.tag.active { background:var(--green-deep); color:var(--cream); }
.shop-widget { background:var(--amber-pale); border:1px solid rgba(212,130,10,.2); }
.shop-widget .sw-header { background:var(--amber); border-color:transparent; }
.shop-widget .sw-header h3 { color:#fff; }
.shop-product-item { display:flex; gap:12px; align-items:center; padding:12px 0; border-bottom:1px solid rgba(212,130,10,.15); }
.shop-product-item:last-child { border-bottom:none; }
.shop-thumb { width:52px; height:52px; border-radius:var(--r-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.shop-name { font-size:13px; font-weight:600; color:var(--ink); line-height:1.3; margin-bottom:3px; }
.shop-price { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--amber); }
.topic-divider { display:flex; align-items:center; gap:16px; margin:8px 0 28px; }
.topic-divider h2 { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); white-space:nowrap; }
.topic-divider::after { content:''; flex:1; height:1.5px; background:var(--border); }
.post-h { display:flex; gap:18px; padding:18px 0; border-bottom:1px solid var(--border); }
.post-h:last-child { border-bottom:none; }
.post-h:hover .ph-title { color:var(--green-mid); }
.ph-thumb { width:90px; height:72px; border-radius:var(--r-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:36px; flex-shrink:0; overflow:hidden; transition:transform .3s; }
.post-h:hover .ph-thumb { transform:scale(1.04); }
.ph-cat { font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--green-mid); margin-bottom:5px; display:block; }
.ph-title { font-size:14px; font-weight:600; color:var(--ink); line-height:1.4; margin-bottom:6px; transition:color .2s; }
.ph-meta { font-size:11px; color:var(--ink-muted); }
.pagination { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:56px; }
.page-btn { width:42px; height:42px; border-radius:var(--r-sm); border:1.5px solid var(--border); background:var(--white); display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:500; color:var(--ink-soft); transition:all .2s; }
.page-btn:hover { border-color:var(--green-mid); color:var(--green-mid); }
.page-btn.active { background:var(--green-deep); border-color:var(--green-deep); color:var(--cream); }
.page-dots { font-size:14px; color:var(--ink-muted); padding:0 4px; }

/* ════════════════════════════════════════════════════════════════
   SHOP PAGE — ARCHIVE-PRODUCT STYLES
   ════════════════════════════════════════════════════════════════ */

/* ─── BUTTON EXTRAS ── */
.btn-xs { padding:7px 14px; font-size:12px; }

/* ─── SHOP HEADER ── */
.shop-header { padding:104px 52px 0; max-width:1380px; margin:0 auto; }
.shop-header-top { display:flex; align-items:flex-end; justify-content:space-between; gap:32px; margin-bottom:28px; }
.shop-header-left .eyebrow { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--g-mid); font-weight:500; margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.live-dot { width:6px; height:6px; background:var(--g-light); border-radius:50%; animation:pulse 2s infinite; }
.shop-header-left h1 { font-family:'Playfair Display',serif; font-size:clamp(36px,4.5vw,58px); font-weight:900; line-height:.95; letter-spacing:-.025em; color:var(--ink); }
.shop-header-left h1 em { font-style:italic; color:var(--g-mid); }
.shop-header-right { flex-shrink:0; text-align:right; }
.product-count { font-family:'Playfair Display',serif; font-size:48px; font-weight:900; color:var(--g-light); line-height:1; }
.product-count-sub { font-size:13px; color:var(--ink-m); margin-top:2px; }

/* ─── SHOP MARQUEE (dark variant) ── */
.shop-marquee-strip { background:var(--g-deep); padding:11px 0; overflow:hidden; position:relative; z-index:10; margin:24px 0 0; }
.shop-marquee-track { display:flex; white-space:nowrap; animation:marquee 24s linear infinite; }
.shop-marquee-item { display:inline-flex; align-items:center; gap:14px; font-size:12px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:rgba(200,230,184,.65); padding:0 28px; }
.shop-marquee-dot { color:var(--g-light); font-size:14px; }

/* ─── CONTROLS BAR ── */
.controls-bar { position:sticky; top:68px; z-index:850; background:rgba(247,244,238,.96); backdrop-filter:blur(14px); border-bottom:1px solid var(--bd); padding:0 52px; }
.controls-inner { max-width:1380px; margin:0 auto; display:flex; align-items:center; gap:12px; padding:10px 0; overflow-x:auto; }
.filter-pill { display:inline-flex; align-items:center; gap:6px; padding:8px 18px; border-radius:100px; border:1.5px solid var(--bd); background:var(--white); font-size:13px; font-weight:500; color:var(--ink-s); white-space:nowrap; transition:all .2s; text-decoration:none; }
.filter-pill:hover { border-color:var(--g-mid); color:var(--g-deep); }
.filter-pill.active { background:var(--g-deep); border-color:var(--g-deep); color:var(--cream); }
.pill-count { font-size:10px; background:rgba(0,0,0,.1); padding:2px 6px; border-radius:100px; }
.filter-pill.active .pill-count { background:rgba(255,255,255,.2); }
.controls-sep { width:1px; height:28px; background:var(--bd); flex-shrink:0; margin:0 4px; }
.woocommerce-ordering,.sort-select-wrap { display:flex; align-items:center; }
.woocommerce-ordering select,.sort-select { padding:8px 14px; border:1.5px solid var(--bd); border-radius:100px; background:var(--white); font-size:13px; color:var(--ink-s); outline:none; -webkit-appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8070' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; padding-right:30px; transition:border-color .2s; font-family:'DM Sans',sans-serif; }
.woocommerce-ordering select:focus,.sort-select:focus { border-color:var(--g-mid); }
.woocommerce-ordering form,.woocommerce-ordering input[type="hidden"] { display:none; }
.view-toggle { display:flex; gap:4px; background:var(--cream-d); border-radius:100px; padding:4px; }
.view-btn { width:34px; height:30px; border-radius:100px; border:none; background:transparent; display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--ink-m); transition:all .2s; }
.view-btn.active { background:var(--white); color:var(--g-deep); box-shadow:0 1px 4px rgba(0,0,0,.1); }
.search-box { display:flex; align-items:center; gap:8px; padding:8px 16px; border:1.5px solid var(--bd); border-radius:100px; background:var(--white); transition:border-color .2s; margin-left:auto; }
.search-box:focus-within { border-color:var(--g-mid); }
.search-box input { border:none; background:none; outline:none; font-size:13px; color:var(--ink); width:160px; font-family:'DM Sans',sans-serif; }
.search-box input::placeholder { color:var(--ink-m); }
.search-icon { font-size:14px; color:var(--ink-m); }
.results-text { font-size:13px; color:var(--ink-m); white-space:nowrap; margin-left:8px; }
.results-text strong { color:var(--ink); font-weight:600; }

/* ─── SHOP MAIN LAYOUT ── */
.shop-main { max-width:1380px; margin:0 auto; padding:36px 52px 100px; display:grid; grid-template-columns:256px 1fr; gap:40px; align-items:start; }

/* ─── SIDEBAR FILTERS ── */
.filters-sidebar { position:sticky; top:126px; }
.filter-widget { background:var(--white); border:1px solid var(--bd); border-radius:var(--r-md); overflow:hidden; margin-bottom:16px; }
.fw-header { display:flex; align-items:center; justify-content:space-between; padding:15px 18px; border-bottom:1px solid var(--bd); }
.fw-header h3 { font-size:13px; font-weight:600; color:var(--ink); display:flex; align-items:center; gap:8px; }
.fw-toggle { font-size:11px; color:var(--g-mid); font-weight:500; transition:color .2s; background:none; border:none; font-family:'DM Sans',sans-serif; }
.fw-toggle:hover { color:var(--g-deep); }
.fw-body { padding:14px 18px; }
.fw-body.collapsed { display:none; }
.check-list { display:flex; flex-direction:column; gap:2px; }
.check-item { display:flex; align-items:center; gap:10px; padding:7px 0; border-radius:var(--r); }
.check-item:hover .check-label { color:var(--g-mid); }
.check-box { width:18px; height:18px; border:1.5px solid var(--bd); border-radius:4px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all .18s; background:var(--white); font-size:11px; }
.check-item.checked .check-box { background:var(--g-deep); border-color:var(--g-deep); color:#fff; }
.check-label { font-size:13px; color:var(--ink-s); flex:1; transition:color .2s; }
.check-count { font-size:11px; color:var(--ink-m); background:var(--cream-d); padding:2px 7px; border-radius:100px; }
.price-range { margin-top:8px; }
.price-inputs { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.price-inp { width:80px; padding:7px 10px; border:1.5px solid var(--bd); border-radius:var(--r); font-size:12px; color:var(--ink); outline:none; transition:border-color .2s; font-family:'DM Sans',sans-serif; }
.price-inp:focus { border-color:var(--g-mid); }
.price-sep { font-size:12px; color:var(--ink-m); }
.slider-track { height:4px; background:var(--cream-dd); border-radius:100px; position:relative; margin:10px 0; }
.slider-fill { position:absolute; height:100%; background:var(--g-mid); border-radius:100px; left:0; right:20%; }
.slider-thumb { position:absolute; width:16px; height:16px; background:var(--g-deep); border:2.5px solid var(--white); border-radius:50%; top:50%; transform:translateY(-50%); box-shadow:0 1px 6px rgba(0,0,0,.2); transition:transform .15s; }
.slider-thumb:hover { transform:translateY(-50%) scale(1.2); }
.slider-thumb.left { left:0; } .slider-thumb.right { right:20%; }
.active-filters-wrap { margin-bottom:16px; }
.active-filters-inner { display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.active-filter-chip { display:inline-flex; align-items:center; gap:6px; padding:5px 12px; background:var(--g-pale); border:1px solid rgba(106,179,74,.35); border-radius:100px; font-size:12px; font-weight:500; color:var(--g-deep); }
.chip-remove { font-size:14px; line-height:1; opacity:.6; transition:opacity .15s; background:none; border:none; color:inherit; }
.chip-remove:hover { opacity:1; }
.clear-all-filters { font-size:12px; color:var(--ink-m); margin-left:4px; transition:color .2s; background:none; border:none; font-family:'DM Sans',sans-serif; }
.clear-all-filters:hover { color:var(--g-mid); }

/* ─── PRODUCTS AREA ── */
.products-area {}
.products-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.products-top-left h2 { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); }
.products-top-left p { font-size:13px; color:var(--ink-m); margin-top:2px; }

/* ─── PROMO BANNER ── */
.promo-banner { background:var(--g-deep); border-radius:var(--r-lg); padding:22px 28px; display:flex; align-items:center; gap:20px; margin-bottom:28px; position:relative; overflow:hidden; }
.promo-banner::before { content:'🍄'; position:absolute; right:-20px; top:-30px; font-size:130px; opacity:.1; animation:float 8s ease-in-out infinite; pointer-events:none; }
.promo-text h3 { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--cream); }
.promo-text p { font-size:13px; color:rgba(247,244,238,.6); margin-top:3px; }
.promo-code { font-family:'Playfair Display',serif; font-size:20px; font-weight:900; color:var(--amber); letter-spacing:.08em; background:rgba(212,130,10,.15); padding:4px 14px; border-radius:var(--r); border:1px dashed rgba(212,130,10,.4); white-space:nowrap; }
.promo-actions { margin-left:auto; display:flex; gap:8px; align-items:center; flex-shrink:0; }

/* ─── PRODUCT GRID (SHOP) ── */
.grid-layout { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-layout.cols-4 { grid-template-columns:repeat(4,1fr); }
.grid-layout.cols-2 { grid-template-columns:repeat(2,1fr); }

/* ─── SHOP PRODUCT CARD ── */
.card { background:var(--white); border-radius:var(--r-md); overflow:hidden; border:1px solid var(--bd); transition:transform .3s cubic-bezier(.22,.68,0,1.2),box-shadow .3s,border-color .3s; position:relative; display:flex; flex-direction:column; }
.card:hover { transform:translateY(-7px); box-shadow:0 18px 44px var(--shadow); border-color:rgba(106,179,74,.2); }
.card-img { height:214px; background:var(--cream-d); display:flex; align-items:center; justify-content:center; font-size:80px; position:relative; overflow:hidden; transition:background .3s; }
.card:hover .card-img { background:var(--cream-dd); }
.card-img img,.card-product-img { width:100%; height:100%; object-fit:cover; display:block; }
.card-emoji { display:block; transition:transform .4s cubic-bezier(.22,.68,0,1.2); }
.card:hover .card-emoji { transform:scale(1.1) translateY(-4px); }
.card-badges { position:absolute; top:12px; left:12px; display:flex; flex-direction:column; gap:5px; z-index:2; }
.badge { display:inline-flex; align-items:center; gap:4px; padding:4px 10px; border-radius:100px; font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.badge-hot { background:var(--amber); color:#fff; }
.badge-new { background:var(--g-mid); color:#fff; }
.badge-sale { background:#e05c4a; color:#fff; }
.badge-rare { background:#7c3aed; color:#fff; }
.badge-limited { background:var(--ink); color:var(--cream-d); }
.card-wishlist { position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.88); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center; font-size:16px; opacity:0; transition:opacity .2s,transform .2s; z-index:2; border:none; }
.card:hover .card-wishlist { opacity:1; }
.card-wishlist:hover { transform:scale(1.12); }
.card-wishlist.liked { opacity:1; }
.card-quick-add { position:absolute; bottom:0; left:0; right:0; background:rgba(30,61,18,.9); backdrop-filter:blur(4px); padding:12px; text-align:center; transform:translateY(100%); transition:transform .28s cubic-bezier(.22,.68,0,1.2); z-index:3; }
.card:hover .card-quick-add { transform:translateY(0); }
.quick-add-btn { width:100%; padding:10px; background:var(--g-light); color:var(--g-deep); border:none; border-radius:var(--r); font-size:13px; font-weight:700; transition:background .2s,transform .15s; font-family:'DM Sans',sans-serif; }
.quick-add-btn:hover { background:var(--g-pale); }
.quick-add-btn:active { transform:scale(.97); }
.card-body { padding:18px; flex:1; display:flex; flex-direction:column; }
.card-cat { font-size:10px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--g-mid); margin-bottom:7px; display:flex; align-items:center; gap:5px; }
.card-name { font-size:14.5px; font-weight:600; color:var(--ink); line-height:1.35; margin-bottom:7px; transition:color .2s; }
.card:hover .card-name { color:var(--g-mid); }
.card-desc { font-size:12px; color:var(--ink-m); line-height:1.6; margin-bottom:12px; flex:1; }
.card-rating { display:flex; align-items:center; gap:6px; margin-bottom:12px; }
.card-rating .stars { color:var(--amber); font-size:12px; letter-spacing:1px; }
.rating-num { font-size:12px; font-weight:600; color:var(--ink); }
.rating-cnt { font-size:11px; color:var(--ink-m); }
.card-footer { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid var(--bd); }
.price-block {}
.price-now { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); line-height:1; }
.price-row { display:flex; align-items:baseline; gap:7px; flex-wrap:wrap; }
.price-off { font-size:10px; font-weight:700; color:var(--g-mid); background:var(--g-wash); padding:2px 6px; border-radius:100px; }
.card .add-btn,.card-add-btn { width:38px; height:38px; border-radius:50%; background:var(--g-deep); color:var(--cream); border:none; font-size:20px; display:flex; align-items:center; justify-content:center; transition:transform .2s,background .2s,rotate .3s; }
.card .add-btn:hover,.card-add-btn:hover { background:var(--g-light); color:var(--g-deep); transform:scale(1.1); rotate:90deg; }
.card .add-btn a,.card-add-btn a { display:flex; align-items:center; justify-content:center; width:100%; height:100%; color:inherit; font-size:16px; text-decoration:none; }

/* ─── WIDE / FEATURED CARD ── */
.card.wide { grid-column:span 2; flex-direction:row; }
.card.wide .card-img { width:340px; height:auto; min-height:260px; flex-shrink:0; font-size:130px; }
.card.wide .card-body { padding:28px; }
.card.wide .card-name { font-size:19px; font-weight:700; }
.card.wide .card-desc { font-size:13px; }
.card.wide .add-btn { width:44px; height:44px; font-size:22px; }
.card.wide .price-now { font-size:26px; }
.wide-features { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.wide-feature { display:flex; align-items:center; gap:8px; font-size:12px; color:var(--ink-s); }
.wide-feature::before { content:'✓'; color:var(--g-light); font-weight:700; font-size:12px; flex-shrink:0; }
.wide-cta { display:flex; gap:10px; margin-top:4px; }

/* ─── LIST LAYOUT ── */
.list-layout .card { flex-direction:row; height:140px; }
.list-layout .card-img { width:160px; height:100%; font-size:56px; flex-shrink:0; border-radius:0; }
.list-layout .card-emoji { font-size:56px; }
.list-layout .card-body { padding:16px 20px; display:grid; grid-template-columns:1fr auto; gap:8px 24px; align-items:center; }
.list-layout .card-name { font-size:15px; font-weight:600; grid-column:1; margin-bottom:0; }
.list-layout .card-cat { grid-column:1; order:-1; }
.list-layout .card-desc { font-size:12.5px; grid-column:1; margin:0; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.list-layout .card-rating { grid-column:1; margin:0; }
.list-layout .card-footer { grid-column:2; grid-row:1/5; border:none; padding:0; flex-direction:column; align-items:flex-end; justify-content:center; gap:12px; }
.list-layout .card-wishlist { position:static; opacity:1; }
.list-layout .card-quick-add { display:none; }
.list-layout .card.wide { flex-direction:row; height:auto; min-height:160px; }
.list-layout .card.wide .card-img { width:200px; height:auto; min-height:160px; font-size:80px; }

/* ─── EMPTY STATE ── */
.empty-state { text-align:center; padding:80px 40px; grid-column:1/-1; }
.empty-icon { font-size:72px; margin-bottom:20px; animation:float 4s ease-in-out infinite; }
.empty-title { font-family:'Playfair Display',serif; font-size:24px; font-weight:700; color:var(--ink); margin-bottom:10px; }
.empty-sub { font-size:14px; color:var(--ink-m); margin-bottom:24px; }

/* ─── SHOP PAGINATION ── */
.shop-pagination { display:flex; align-items:center; justify-content:center; gap:6px; margin-top:48px; padding-top:32px; border-top:1px solid var(--bd); }
.shop-pagination .page-numbers { min-width:40px; height:40px; border-radius:var(--r); border:1.5px solid var(--bd); background:var(--white); font-size:14px; font-weight:500; color:var(--ink-s); display:inline-flex; align-items:center; justify-content:center; transition:all .18s; padding:0 12px; text-decoration:none; }
.shop-pagination .page-numbers:hover { border-color:var(--g-mid); color:var(--g-mid); }
.shop-pagination .page-numbers.current { background:var(--g-deep); border-color:var(--g-deep); color:var(--cream); font-weight:600; }
.shop-pagination .page-numbers.dots { border:none; background:none; cursor:default; }
.shop-pagination .prev,.shop-pagination .next { padding:0 16px; gap:6px; font-size:13px; }

/* ─── SHOP TOAST ── */
.shop-toast { position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(80px); background:var(--g-deep); color:var(--cream); padding:13px 22px; border-radius:100px; font-size:14px; font-weight:500; z-index:1000; opacity:0; transition:opacity .3s,transform .35s cubic-bezier(.22,.68,0,1.2); display:flex; align-items:center; gap:10px; white-space:nowrap; box-shadow:0 8px 24px rgba(30,61,18,.35); pointer-events:none; }
.shop-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ─── WOOCOMMERCE OVERRIDES (shop page) ── */
.woocommerce-page .woocommerce-result-count { display:none; }
.woocommerce-page .woocommerce-ordering { margin:0; }
.woocommerce-page .woocommerce-ordering select { margin:0; }
.woocommerce-loop-product__link { display:block; }
.woocommerce-page .wc-forward { display:none; }

/* ─── SIDEBAR CTA WIDGET ── */
.sidebar-cta-widget { background:var(--g-deep); border-radius:var(--r-md); padding:22px; margin-top:4px; position:relative; overflow:hidden; }
.sidebar-cta-widget .cta-emoji { font-size:64px; text-align:center; margin-bottom:14px; animation:float 6s ease-in-out infinite; }
.sidebar-cta-widget h3 { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--cream); text-align:center; margin-bottom:8px; }
.sidebar-cta-widget p { font-size:12px; color:rgba(247,244,238,.55); text-align:center; line-height:1.6; margin-bottom:14px; }

/* ════════════════════════════════════════════════════════════════
   PRODUCT PAGE — single-product / template-product styles
   ════════════════════════════════════════════════════════════════ */

/* ─── BREADCRUMB ── */
.breadcrumb { padding:14px 52px; font-size:13px; color:var(--ink-muted); display:flex; align-items:center; gap:6px; flex-wrap:wrap; padding-top:86px; max-width:1380px; margin:0 auto; }
.breadcrumb a { color:var(--ink-muted); transition:color .2s; }
.breadcrumb a:hover { color:var(--green-mid); }
.breadcrumb-sep { color:var(--border); }
.woocommerce-breadcrumb { display:flex; align-items:center; gap:6px; flex-wrap:wrap; font-size:13px; color:var(--ink-muted); padding-top:86px; padding-left:52px; padding-right:52px; }
.woocommerce-breadcrumb a { color:var(--ink-muted); transition:color .2s; }
.woocommerce-breadcrumb a:hover { color:var(--green-mid); }

/* ─── PRODUCT HERO ── */
.product-hero { max-width:1380px; margin:0 auto; padding:36px 52px 64px; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }

/* ─── GALLERY ── */
.gallery { display:flex; flex-direction:column; gap:16px; position:sticky; top:88px; }
.gallery-main { height:460px; background:var(--cream-dark); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; cursor:zoom-in; }
.gallery-main-img { display:block; max-width:100%; max-height:100%; object-fit:contain; transition:transform .4s cubic-bezier(.22,.68,0,1.2); }
.gallery-main:hover .gallery-main-img { transform:scale(1.06); }
.gallery-zoom { position:absolute; bottom:14px; right:14px; width:36px; height:36px; background:rgba(255,255,255,.8); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; opacity:0; transition:opacity .2s; }
.gallery-main:hover .gallery-zoom { opacity:1; }
.gallery-badge { position:absolute; top:16px; left:16px; background:var(--amber); color:#fff; font-size:11px; font-weight:700; letter-spacing:.07em; text-transform:uppercase; padding:5px 12px; border-radius:100px; }
.gallery-thumbs { display:flex; gap:10px; }
.thumb { width:72px; height:72px; border-radius:var(--radius-sm); background:var(--cream-dark); border:2px solid transparent; display:flex; align-items:center; justify-content:center; font-size:28px; cursor:pointer; transition:border-color .18s,transform .18s; overflow:hidden; flex-shrink:0; }
.thumb:hover { border-color:var(--green-light); transform:translateY(-2px); }
.thumb.active { border-color:var(--green-mid); }
.gallery-share { display:flex; align-items:center; gap:10px; padding-top:4px; }
.gallery-share span { font-size:12px; color:var(--ink-muted); }
.share-btn { width:34px; height:34px; border-radius:50%; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:16px; transition:background .18s,transform .18s; }
.share-btn:hover { background:var(--cream-med); transform:translateY(-2px); }

/* ─── PRODUCT INFO PANEL ── */
.product-info-panel { display:flex; flex-direction:column; gap:20px; }
.product-cats { display:flex; gap:8px; flex-wrap:wrap; }
.cat-pill { padding:5px 14px; background:var(--green-pale); color:var(--green-deep); border-radius:100px; font-size:11px; font-weight:600; letter-spacing:.06em; }
.product-title { font-family:'Playfair Display',serif; font-size:clamp(28px,3.5vw,44px); font-weight:900; line-height:1.08; color:var(--ink); letter-spacing:-.02em; }
.product-tagline { font-size:15px; color:var(--ink-soft); line-height:1.7; }

/* ─── RATING ROW ── */
.rating-row { display:flex; align-items:center; gap:12px; flex-wrap:wrap; padding-bottom:20px; border-bottom:1px solid var(--border); }
.rating-row .stars { font-size:18px; letter-spacing:1px; }
.rating-score { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); }
.rating-count { font-size:13px; color:var(--ink-muted); }
.rating-count a { color:var(--green-mid); border-bottom:1px solid rgba(61,107,44,.3); }
.sold-badge { display:flex; align-items:center; gap:6px; font-size:12px; font-weight:500; color:var(--green-mid); background:var(--green-pale); padding:5px 12px; border-radius:100px; margin-left:auto; }
.sold-dot { width:6px; height:6px; background:var(--green-light); border-radius:50%; animation:pulse 2s infinite; }

/* ─── PRICE BLOCK (product) ── */
.price-block { background:var(--cream-dark); border-radius:var(--radius-md); padding:18px 22px; }
.price-block .price-row { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; margin-bottom:6px; }
.price-current { font-family:'Playfair Display',serif; font-size:36px; font-weight:900; color:var(--ink); line-height:1; }
.price-old { font-size:18px; color:var(--ink-muted); text-decoration:line-through; font-weight:400; }
.price-save { font-size:13px; font-weight:700; color:var(--green-mid); background:var(--green-pale); padding:3px 10px; border-radius:100px; }
.price-note { font-size:12px; color:var(--ink-muted); margin-bottom:4px; }
.emi-note { font-size:13px; color:var(--ink-soft); }

/* ─── OPTION GROUP ── */
.option-group { border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 20px; }
.option-label { font-size:13px; font-weight:600; color:var(--ink); margin-bottom:12px; }
.option-label span { font-weight:400; color:var(--green-mid); margin-left:6px; }
.option-pills { display:flex; gap:8px; flex-wrap:wrap; }
.option-pill { padding:8px 18px; border-radius:100px; border:1.5px solid var(--border); background:var(--white); font-size:13px; color:var(--ink-soft); transition:all .18s; cursor:pointer; font-family:'DM Sans',sans-serif; }
.option-pill:hover { border-color:var(--green-mid); color:var(--green-deep); }
.option-pill.selected { background:var(--green-deep); border-color:var(--green-deep); color:var(--cream); }
.option-pill.disabled { opacity:.45; cursor:not-allowed; pointer-events:none; }

/* ─── QTY + CTA ── */
.qty-cta { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.qty-control { display:flex; align-items:center; border:1.5px solid var(--border); border-radius:100px; overflow:hidden; background:var(--white); }
.qty-btn { width:40px; height:44px; background:none; border:none; font-size:20px; color:var(--ink); transition:background .15s; display:flex; align-items:center; justify-content:center; }
.qty-btn:hover { background:var(--cream-dark); }
.qty-num { width:44px; text-align:center; border:none; background:none; font-size:16px; font-weight:600; color:var(--ink); outline:none; font-family:'DM Sans',sans-serif; -moz-appearance:textfield; }
.qty-num::-webkit-outer-spin-button,.qty-num::-webkit-inner-spin-button { -webkit-appearance:none; }
.wishlist-btn { width:44px; height:44px; border-radius:50%; border:1.5px solid var(--border); background:var(--white); font-size:22px; display:flex; align-items:center; justify-content:center; transition:all .2s; cursor:pointer; flex-shrink:0; }
.wishlist-btn:hover { border-color:var(--green-mid); transform:scale(1.1); }

/* ─── BUY NOW ROW ── */
.buy-now-row { display:flex; gap:10px; flex-wrap:wrap; }

/* ─── TRUST PILLS ── */
.trust-pills { display:flex; gap:8px; flex-wrap:wrap; }
.trust-pill { display:inline-flex; align-items:center; gap:5px; padding:6px 12px; background:var(--white); border:1px solid var(--border); border-radius:100px; font-size:11.5px; font-weight:500; color:var(--ink-soft); }
.ti { font-size:13px; }

/* ─── BENEFITS STRIP ── */
.benefits-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.benefit-card { background:var(--cream-dark); border-radius:var(--radius-md); padding:16px; text-align:center; }
.benefit-icon { font-size:28px; margin-bottom:8px; }
.benefit-title { font-size:13px; font-weight:600; color:var(--ink); margin-bottom:3px; }
.benefit-sub { font-size:11px; color:var(--ink-muted); }

/* ─── COUPON BOX ── */
.coupon-box { display:flex; align-items:center; gap:14px; padding:14px 18px; background:var(--amber-pale); border:1.5px dashed rgba(212,130,10,.45); border-radius:var(--radius-md); }
.coupon-code { font-family:'Playfair Display',serif; font-size:18px; font-weight:900; color:var(--amber); letter-spacing:.08em; }
.coupon-text { font-size:12px; color:var(--ink-soft); margin-top:2px; }
.coupon-copy { margin-left:auto; padding:7px 16px; background:var(--amber); color:#fff; border:none; border-radius:100px; font-size:12px; font-weight:600; cursor:pointer; transition:background .2s; font-family:'DM Sans',sans-serif; flex-shrink:0; }
.coupon-copy:hover { background:#b86d06; }

/* ─── DELIVERY / PIN ── */
.delivery-row { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--ink-soft); }
.delivery-row .icon { font-size:18px; flex-shrink:0; }
.pincode-input { display:flex; gap:0; border:1.5px solid var(--border); border-radius:100px; overflow:hidden; background:var(--white); }
.pincode-field { flex:1; padding:10px 18px; border:none; outline:none; font-size:13px; color:var(--ink); background:none; font-family:'DM Sans',sans-serif; }
.pincode-check { padding:10px 20px; background:var(--green-deep); color:var(--cream); border:none; font-size:13px; font-weight:600; cursor:pointer; transition:background .18s; font-family:'DM Sans',sans-serif; }
.pincode-check:hover { background:var(--green-mid); }

/* ─── PRODUCT TABS ── */
.product-tabs-section { max-width:1380px; margin:0 auto; padding:0 52px 64px; }
.tabs-header { display:flex; gap:0; border-bottom:2px solid var(--border); margin-bottom:36px; overflow-x:auto; }
.tab { padding:14px 24px; font-size:14px; font-weight:500; color:var(--ink-muted); background:none; border:none; border-bottom:2.5px solid transparent; margin-bottom:-2px; cursor:pointer; white-space:nowrap; transition:color .2s,border-color .2s; font-family:'DM Sans',sans-serif; }
.tab:hover { color:var(--green-mid); }
.tab.active { color:var(--green-deep); border-color:var(--green-deep); font-weight:600; }
.tab-pane { display:none; animation:fadeUp .4s ease both; }
.tab-pane.active { display:block; }

/* ─── DESCRIPTION TAB ── */
.desc-grid { display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start; }
.desc-text h3 { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--ink); margin-bottom:16px; }
.desc-text p { font-size:15px; color:var(--ink-soft); line-height:1.75; margin-bottom:16px; }
.desc-text ul { padding-left:20px; display:flex; flex-direction:column; gap:8px; }
.desc-text ul li { font-size:14px; color:var(--ink-soft); line-height:1.65; }
.desc-visual { background:var(--cream-dark); border-radius:var(--radius-lg); padding:28px; }
.desc-visual h4 { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.desc-visual p { font-size:14px; color:var(--ink-soft); line-height:1.65; margin-bottom:18px; }
.spec-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.spec-item { background:var(--white); border-radius:var(--radius-sm); padding:14px; }
.spec-label { font-size:11px; color:var(--ink-muted); text-transform:uppercase; letter-spacing:.08em; margin-bottom:4px; }
.spec-val { font-size:14px; font-weight:600; color:var(--ink); }

/* ─── HOW-TO STEPS ── */
.how-steps-list { display:flex; flex-direction:column; gap:0; max-width:780px; }
.how-step { display:flex; gap:28px; padding:28px 0; border-bottom:1px solid var(--border); }
.how-step:last-child { border-bottom:none; }
.step-circle { width:52px; height:52px; border-radius:50%; background:var(--green-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.step-n { font-family:'Playfair Display',serif; font-size:16px; font-weight:900; color:var(--cream); }
.step-body h4 { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--ink); margin-bottom:10px; }
.step-body p { font-size:14px; color:var(--ink-soft); line-height:1.75; margin-bottom:10px; }
.step-tip { display:block; font-size:12px; color:var(--green-mid); background:var(--green-pale); padding:8px 14px; border-radius:var(--radius-sm); }

/* ─── REVIEWS ── */
.reviews-summary { display:flex; gap:40px; align-items:flex-start; margin-bottom:36px; padding-bottom:36px; border-bottom:1px solid var(--border); flex-wrap:wrap; }
.reviews-big { text-align:center; min-width:120px; }
.reviews-big .score { font-family:'Playfair Display',serif; font-size:64px; font-weight:900; color:var(--ink); line-height:1; }
.reviews-big .sub { font-size:12px; color:var(--ink-muted); margin-top:6px; }
.reviews-bars { flex:1; display:flex; flex-direction:column; gap:8px; min-width:200px; }
.bar-row { display:flex; align-items:center; gap:12px; font-size:13px; color:var(--ink-soft); }
.bar-row span:first-child { white-space:nowrap; min-width:36px; }
.bar-track { flex:1; height:8px; background:var(--cream-dark); border-radius:100px; overflow:hidden; }
.bar-fill { height:100%; background:var(--amber); border-radius:100px; transition:width .6s ease; }
.bar-count { min-width:32px; text-align:right; color:var(--ink-muted); font-size:12px; }
.reviews-list { display:flex; flex-direction:column; gap:24px; }
.review-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; }
.review-header { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:14px; flex-wrap:wrap; gap:12px; }
.reviewer-info { display:flex; gap:12px; align-items:center; }
.reviewer-avatar { width:40px; height:40px; border-radius:50%; background:var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.reviewer-name { font-size:14px; font-weight:600; color:var(--ink); }
.reviewer-meta { font-size:12px; color:var(--ink-muted); margin-top:2px; }
.review-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.review-body { font-size:14px; color:var(--ink-soft); line-height:1.75; margin-bottom:14px; }
.review-photos { display:flex; gap:8px; margin-bottom:14px; }
.review-photo { width:64px; height:64px; border-radius:var(--radius-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:28px; }
.review-actions { display:flex; gap:8px; flex-wrap:wrap; }
.review-action-btn { padding:6px 14px; background:var(--white); border:1px solid var(--border); border-radius:100px; font-size:12px; color:var(--ink-muted); cursor:pointer; transition:all .18s; font-family:'DM Sans',sans-serif; }
.review-action-btn:hover { border-color:var(--green-mid); color:var(--green-mid); }

/* ─── RELATED PRODUCTS ── */
.related-section { background:var(--cream-dark); padding:64px 52px; }
.related-inner { max-width:1380px; margin:0 auto; }
.related-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:36px; flex-wrap:wrap; gap:16px; }
.related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.product-card { background:var(--white); border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border); transition:transform .3s cubic-bezier(.22,.68,0,1.2),box-shadow .3s; cursor:pointer; display:flex; flex-direction:column; }
.product-card:hover { transform:translateY(-6px); box-shadow:0 16px 42px var(--shadow); }
.pc-img { height:200px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:72px; position:relative; overflow:hidden; }
.pc-img img { width:100%; height:100%; object-fit:cover; }
.pc-badge { position:absolute; top:10px; left:10px; padding:4px 10px; border-radius:100px; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.pc-info { padding:18px; flex:1; display:flex; flex-direction:column; }
.pc-name { font-size:14.5px; font-weight:600; color:var(--ink); line-height:1.35; margin-bottom:8px; }
.star-row { display:flex; align-items:center; gap:3px; }
.star { font-size:12px; }
.star-count { font-size:12px; color:var(--ink-muted); margin-left:4px; }
.pc-price-row { display:flex; align-items:baseline; gap:8px; margin-top:auto; padding-top:12px; }
.pc-price { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); }
.pc-old { font-size:13px; color:var(--ink-muted); text-decoration:line-through; }
.pc-add { margin-top:10px; width:100%; padding:10px; background:var(--green-deep); color:var(--cream); border:none; border-radius:var(--radius-sm); font-size:13px; font-weight:600; cursor:pointer; transition:background .18s; font-family:'DM Sans',sans-serif; }
.pc-add:hover { background:var(--green-mid); }

/* ─── FAQ ── */
.faq-section { padding:80px 52px; background:var(--white); }
.faq-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1.5fr; gap:80px; align-items:start; }
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:18px 0; cursor:pointer; font-size:15px; font-weight:500; color:var(--ink); gap:16px; transition:color .2s; }
.faq-q:hover { color:var(--green-mid); }
.faq-icon { width:24px; height:24px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--ink-muted); flex-shrink:0; transition:all .25s; }
.faq-item.open .faq-icon { background:var(--green-mid); border-color:var(--green-mid); color:#fff; rotate:45deg; }
.faq-a { display:none; padding-bottom:18px; }
.faq-item.open .faq-a { display:block; }
.faq-a p { font-size:14px; color:var(--ink-soft); line-height:1.75; }

/* ─── STICKY ADD-TO-CART ── */
.sticky-atc { position:fixed; bottom:-80px; left:0; right:0; background:var(--white); border-top:1px solid var(--border); padding:14px 52px; display:flex; align-items:center; justify-content:space-between; gap:20px; z-index:800; transition:bottom .35s cubic-bezier(.22,.68,0,1.2); box-shadow:0 -4px 24px rgba(0,0,0,.08); }
.sticky-atc.visible { bottom:0; }
.sticky-product { display:flex; align-items:center; gap:16px; }
.sticky-thumb { width:52px; height:52px; border-radius:var(--radius-sm); background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:26px; flex-shrink:0; }
.sticky-name { font-size:15px; font-weight:600; color:var(--ink); }
.sticky-price { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--ink); margin-top:2px; }
.sticky-actions { display:flex; gap:10px; }

/* ─── NAV—CART FOR INNER PAGES ── */
.nav-cart-sm { position:relative; width:40px; height:40px; border-radius:50%; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; font-size:17px; transition:background .18s; }
.nav-cart-sm:hover { background:var(--cream-med); }
.cart-dot { position:absolute; top:-3px; right:-3px; width:16px; height:16px; background:var(--amber); border-radius:50%; font-size:9px; font-weight:700; color:#fff; display:flex; align-items:center; justify-content:center; }

/* ─── BLOG PAGE (template-blog.php) ── */
/* Blog uses its own inline CSS — these ensure no conflicts with theme styles */
.blog-hero { background:var(--green-deep); padding:108px 64px 72px; position:relative; overflow:hidden; }
.blog-hero::before { content:'🍄'; position:absolute; right:-60px; top:-40px; font-size:400px; opacity:.06; animation:float 10s ease-in-out infinite; pointer-events:none; }
.filter-bar { background:var(--white); border-bottom:1px solid var(--border); position:sticky; top:68px; z-index:800; padding:0 64px; }
.blog-main { max-width:1280px; margin:0 auto; padding:56px 64px 100px; display:grid; grid-template-columns:1fr 340px; gap:64px; align-items:start; }
.featured-post { background:var(--green-deep); border-radius:var(--radius-lg); overflow:hidden; display:grid; grid-template-columns:1fr 1fr; margin-bottom:48px; min-height:460px; cursor:pointer; transition:transform .3s,box-shadow .3s; }
.featured-post:hover { transform:translateY(-4px); box-shadow:0 24px 60px rgba(30,61,18,.2); }
.posts-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-bottom:48px; }
.post-card { background:var(--white); border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--border); transition:transform .3s cubic-bezier(.22,.68,0,1.2),box-shadow .3s; cursor:pointer; display:flex; flex-direction:column; text-decoration:none; }
.post-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px var(--shadow); }
.post-card.wide { grid-column:span 2; display:grid; grid-template-columns:340px 1fr; }

/* ════════════════════════════════════════════════════════════════
   SHOP PAGE — WooCommerce resets, z-index fixes & responsive layout
   All rules scoped to body.woocommerce-shop to avoid side-effects
   ════════════════════════════════════════════════════════════════ */

/* ── 1. Background & wrapper reset ── */
body.woocommerce-shop { background: var(--cream); }
body.woocommerce-shop .woocommerce-notices-wrapper,
body.woocommerce-shop #wc-notices-wrapper { padding: 0 52px; margin: 0; max-width: 1380px; box-sizing: border-box; }

/* ── 2. Remove any default WooCommerce front-end block outputs
        (our archive-product.php replaces them with custom markup) ── */
body.woocommerce-shop .woocommerce > ul.products,
body.woocommerce-shop .woocommerce > .woocommerce-result-count { display: none !important; }

/* ── 3. Fix z-index: hovered card elements must sit ABOVE the
        body::after grain overlay (z-index:100) ── */
body.woocommerce-shop .card:hover { position: relative; z-index: 200; }

/* ════════════ RESPONSIVE BREAKPOINTS ════════════════════════════ */

/* ── 1280px — narrow desktop ── */
@media (max-width: 1280px) {
  .shop-header { padding-left: 32px; padding-right: 32px; }
  .controls-bar { padding-left: 32px; padding-right: 32px; }
  .shop-main { padding-left: 32px; padding-right: 32px; grid-template-columns: 220px 1fr; }
}

/* ── 1024px — tablet landscape ── */
@media (max-width: 1024px) {
  .shop-header { padding: 100px 24px 0; }
  .controls-bar { padding: 0 24px; }
  .shop-main { padding: 28px 24px 80px; grid-template-columns: 196px 1fr; gap: 22px; }
  .grid-layout { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .grid-layout.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .card.wide { grid-column: span 2; }
  .card.wide .card-img { width: 260px; font-size: 108px; }
}

/* ── 768px — tablet portrait / large mobile ── */
@media (max-width: 768px) {
  .shop-header { padding: 90px 20px 0; }
  .shop-header-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .shop-header-right { align-self: flex-start; }
  .product-count { font-size: 36px; }
  .controls-bar { padding: 0 20px; top: 64px; }
  .controls-inner { gap: 7px; }
  .controls-inner .controls-sep { display: none; }
  .results-text { display: none; }
  .search-box input { width: 110px; }
  /* Collapse sidebar — stacks below on mobile */
  .shop-main { padding: 20px 20px 60px; grid-template-columns: 1fr !important; gap: 0; }
  .filters-sidebar { position: static !important; order: 1; margin-bottom: 20px; display: none; }
  .products-area { order: 0; }
  /* 2-col grid on tablets */
  .grid-layout,
  .grid-layout.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-layout.cols-2 { grid-template-columns: repeat(2, 1fr); }
  /* Wide card spans both columns, stacks vertically */
  .card.wide { grid-column: span 2; flex-direction: column; }
  .card.wide .card-img { width: 100%; height: 220px; min-height: 0; font-size: 100px; }
  .card.wide .card-body { padding: 16px; }
  .wide-features { display: none; }
  /* List layout on mobile */
  .list-layout .card { flex-direction: column; height: auto; }
  .list-layout .card-img { width: 100%; height: 160px; flex-shrink: unset; }
  .list-layout .card-body { grid-template-columns: 1fr; }
  .list-layout .card-footer { grid-column: 1; grid-row: auto; flex-direction: row; justify-content: space-between; border-top: 1px solid var(--bd); padding-top: 12px; }
  .list-layout .card.wide .card-img { width: 100%; height: 200px; }
  /* Promo banner wraps on mobile */
  .promo-banner { flex-wrap: wrap; gap: 12px; }
  .promo-code { width: 100%; text-align: center; order: 3; }
  .promo-actions { margin-left: 0; width: 100%; justify-content: center; }
  /* Toast full-width */
  .shop-toast { width: calc(100% - 40px); justify-content: center; }
}

/* ── 480px — phone ── */
@media (max-width: 480px) {
  .shop-header { padding: 82px 16px 0; }
  .controls-bar { padding: 0 16px; }
  .shop-main { padding: 14px 16px 48px; }
  /* Single-column on phone */
  .grid-layout,
  .grid-layout.cols-2,
  .grid-layout.cols-4 { grid-template-columns: 1fr; gap: 12px; }
  .card.wide { grid-column: span 1; }
  .card-img { height: 200px; }
  .card-desc { display: none; }
  .view-toggle { display: none; }
  .filter-pill { padding: 7px 12px; font-size: 12px; }
  .shop-header-left h1 { font-size: clamp(24px, 8vw, 36px); }
}

/* ── Product page responsive ── */
@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; padding: 32px 20px 48px; gap: 28px; }
  .gallery { position: static; }
  .gallery-main { height: 320px; }
  .product-tabs-section { padding-left: 20px; padding-right: 20px; }
  .desc-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce-breadcrumb { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .product-hero { padding: 24px 14px 40px; }
  .gallery-main { height: 260px; }
  .gallery-thumbs { gap: 6px; }
  .thumb { width: 58px; height: 58px; }
  .related-grid { grid-template-columns: 1fr; }
  .sticky-atc { padding: 12px 16px; }
  .sticky-actions { gap: 8px; }
  .sticky-actions .btn { font-size: 13px; padding: 10px 16px; }
}

/* ════════════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Covers: global, homepage, product page, blog page, shop page
   Breakpoints: 1400 / 1200 / 992 / 768 / 576
   ════════════════════════════════════════════════════════════════ */

/* ── Fix: anchor fixed navbars to viewport top ── */
.navbar { top: auto; }
.nav    { top: 0; }

/* ─── HAMBURGER BUTTON ──────────────────────────────────────────── */
/* Hidden on desktop; shown via media query below */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), opacity .2s;
  transform-origin: center;
}
/* Homepage nav — white lines (dark when scrolled) */
.navbar .nav-hamburger span          { background: var(--white); }
.navbar.scrolled .nav-hamburger span { background: var(--ink); }
/* Inner-page nav — dark lines */
.nav .nav-hamburger span             { background: var(--ink); }

/* Hamburger → X animation when menu is open */
.navbar.nav-open .nav-hamburger span:nth-child(1),
.nav.nav-open    .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .nav-hamburger span:nth-child(2),
.nav.nav-open    .nav-hamburger span:nth-child(2) { opacity: 0; }
.navbar.nav-open .nav-hamburger span:nth-child(3),
.nav.nav-open    .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Prevent body scroll while mobile menu is open */
body.menu-open { overflow: hidden; }

/* ─── MOBILE NAV PANEL ─────────────────────────────────────────── */
/* Triggered when JS adds .nav-open to the <nav> element */
.navbar.nav-open .nav-links,
.nav.nav-open    .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  left: 0; right: 0;
  background: var(--green-deep);
  padding: 8px 24px 28px;
  gap: 0;
  z-index: 898;
  border-top: 1px solid rgba(106,179,74,.25);
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  animation: slideDown .22s ease;
}
.navbar.nav-open .nav-links { top: 72px; }
.nav.nav-open    .nav-links { top: 68px; }

.navbar.nav-open .nav-links li,
.nav.nav-open    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
.navbar.nav-open .nav-links li:last-child,
.nav.nav-open    .nav-links li:last-child { border-bottom: none; }

.navbar.nav-open .nav-links a,
.nav.nav-open    .nav-links a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 400;
  color: rgba(247,244,238,.82) !important;
  position: static;
}
.navbar.nav-open .nav-links a::after,
.nav.nav-open    .nav-links a::after { display: none; }
.navbar.nav-open .nav-links a:hover,
.nav.nav-open    .nav-links a:hover,
.nav.nav-open    .nav-links a.active { color: var(--green-light) !important; }

/* ══════════════════════════════════════════════════════════════
   Grid overflow fix — prevent min-width:auto from expanding
   grid tracks beyond their allocated fraction/column width
   ══════════════════════════════════════════════════════════════ */
.newsletter-inner > *,
.blog-grid > *,
.why-grid > *,
.products-grid > *,
.how-steps > *,
.types-grid > *,
.stats-inner > *,
.footer-grid > * { min-width: 0; }

/* ══════════════════════════════════════════════════════════════
   @media (max-width: 1400px) — Narrow desktop
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  /* Global section padding */
  .section             { padding: 88px 52px; }
  .hero                { padding: 0 52px 72px; }
  .why-section         { padding: 88px 52px; }
  .newsletter-section  { padding: 88px 52px; }
  .stats-bar           { padding: 52px 52px; }
  .footer              { padding: 72px 52px 36px; }
  .sticky-bar          { padding: 12px 52px; }
  /* Blog page */
  .blog-hero           { padding: 100px 52px 64px; }
  .filter-bar          { padding: 0 52px; }
  .blog-main           { padding: 48px 52px 88px; }
  /* Product page */
  .breadcrumb          { padding: 100px 52px 0; }
  .product-hero        { padding: 28px 52px 72px; }
  .product-tabs-section { padding: 0 52px 64px; }
  .faq-section         { padding: 72px 52px; }
  .related-section     { padding: 72px 52px; }
  .sticky-atc          { padding: 14px 52px; }
}

/* ══════════════════════════════════════════════════════════════
   @media (max-width: 1200px) — Small laptop
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  /* Global padding */
  .section             { padding: 72px 40px; }
  .hero                { padding: 0 40px 64px; }
  .why-section         { padding: 72px 40px; }
  .newsletter-section  { padding: 72px 40px; }
  .stats-bar           { padding: 48px 40px; }
  .footer              { padding: 64px 40px 32px; }
  .sticky-bar          { padding: 12px 40px; }

  /* Why section — tighten gaps */
  .why-grid          { gap: 52px; }
  .why-main-card     { min-height: 420px; }

  /* How section — still 4-col but tighter */
  .how-steps { gap: 20px; }
  .step-num  { width: 68px; height: 68px; font-size: 26px; }

  /* Newsletter */
  .newsletter-inner    { gap: 52px; }
  .newsletter-form-card { padding: 36px 32px; }

  /* Stats */
  .stat-num  { font-size: 44px; }
  .stat-item { padding: 0 20px; }

  /* Footer */
  .footer-grid { gap: 40px; }

  /* Blog page */
  .blog-hero  { padding: 96px 40px 56px; }
  .filter-bar { padding: 0 40px; }
  .blog-main  { padding: 40px 40px 72px; grid-template-columns: 1fr 300px; gap: 40px; }
  .sidebar    { top: 120px; }

  /* Product page */
  .breadcrumb           { padding: 96px 40px 0; }
  .product-hero         { padding: 28px 40px 64px; gap: 48px; }
  .gallery-main         { height: 420px; }
  .product-tabs-section { padding: 0 40px 56px; }
  .faq-section          { padding: 64px 40px; }
  .faq-grid             { gap: 52px; }
  .related-section      { padding: 64px 40px; }
  .related-grid         { grid-template-columns: repeat(3,1fr); }
  .sticky-atc           { padding: 14px 40px; }
}

/* ══════════════════════════════════════════════════════════════
   @media (max-width: 992px) — Tablet landscape
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  /* ── Navigation: show hamburger, hide links ── */
  .nav-hamburger           { display: flex; }
  .navbar .nav-links       { display: none; }
  .navbar .nav-cta .btn-nav { display: none; }   /* hide "Free Guide" btn; keep cart */
  .nav .nav-links          { display: none; }
  .nav .nav-right .btn     { display: none; }    /* hide "Free Guide" btn; keep cart */

  /* ── Global padding ── */
  .section            { padding: 64px 32px; }
  .hero               { padding: 0 32px 56px; }
  .why-section        { padding: 64px 32px; }
  .newsletter-section { padding: 64px 32px; }
  .stats-bar          { padding: 44px 32px; }
  .footer             { padding: 60px 32px 28px; }
  .sticky-bar         { padding: 10px 32px; }
  .navbar             { padding: 0 32px; }
  .nav                { padding: 0 32px; }

  /* ── Why section — stack vertically ── */
  .why-grid           { grid-template-columns: 1fr; gap: 48px; }
  .why-content        { padding-left: 0; }
  .why-main-card      { min-height: 380px; }
  .why-floating-card-1 { right: -10px; min-width: 150px; }
  .why-floating-card-2 { left: -14px; min-width: 158px; }

  /* ── Products — 2 columns ── */
  .products-grid                          { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .product-card.featured                  { grid-column: span 2; }
  .product-card.featured .product-img     { min-height: 240px; font-size: 100px; }

  /* ── How It Works — 2×2 grid ── */
  .how-steps        { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .how-steps::before { display: none; }

  /* ── Mushroom Types — 2 columns ── */
  .types-grid { grid-template-columns: repeat(2,1fr); }

  /* ── Newsletter — single column ── */
  .newsletter-inner    { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-form-card { max-width: 560px; }

  /* ── Stats — 2×2 grid ── */
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 20px; }
  .stat-item:nth-child(odd)              { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-num    { font-size: 40px; }

  /* ── Blog preview — 2 columns ── */
  .blog-grid              { grid-template-columns: 1fr 1fr; }
  .blog-card.featured     { grid-column: span 2; }

  /* ── Footer — 2-column grid ── */
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 36px 48px; margin-bottom: 48px; }
  .footer-bottom        { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links  { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* ── Popup — single column ── */
  .popup-card   { grid-template-columns: 1fr; max-width: 440px; }
  .popup-visual { padding: 24px 28px; min-height: 120px; flex-direction: row;
                  justify-content: flex-start; gap: 20px; text-align: left; }
  .popup-visual-title { font-size: 18px; }

  /* ── Blog page — sidebar collapses ── */
  .blog-hero      { padding: 88px 32px 56px; }
  .filter-bar     { padding: 0 32px; }
  .blog-main      { padding: 36px 32px 60px; grid-template-columns: 1fr; gap: 0; }
  .sidebar        { position: static; top: auto; display: none; }
  .featured-post  { grid-template-columns: 1fr; min-height: auto; }
  .fp-visual      { min-height: 220px; font-size: 100px; }
  .fp-content     { padding: 32px; }

  /* ── Product page — still 2-col but tighter; stack at 768 ── */
  .breadcrumb           { padding: 88px 32px 0; }
  .product-hero         { padding: 24px 32px 52px; gap: 36px; }
  .gallery-main         { height: 380px; }
  .desc-grid            { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid             { grid-template-columns: 1fr; gap: 48px; }
  .faq-section          { padding: 60px 32px; }
  .product-tabs-section { padding: 0 32px 52px; }
  .related-section      { padding: 60px 32px; }
  .sticky-atc           { padding: 14px 32px; }
  .benefits-strip       { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════════════════════════
   @media (max-width: 768px) — Tablet portrait / large phone
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Global padding ── */
  .section            { padding: 52px 20px; }
  .hero               { padding: 0 20px 52px; }
  .why-section        { padding: 52px 20px; }
  .newsletter-section { padding: 52px 20px; }
  .stats-bar          { padding: 36px 20px; }
  .footer             { padding: 52px 20px 24px; }

  /* ── Navbars ── */
  .navbar             { padding: 0 20px; height: 64px; }
  .nav                { padding: 0 20px; height: 64px; }
  .filter-bar         { top: 64px; }
  .controls-bar       { top: 64px; }

  /* ── Adjust mobile panel top offset to new nav height ── */
  .navbar.nav-open .nav-links { top: 64px; }
  .nav.nav-open    .nav-links { top: 64px; }

  /* ── Hero decorations — simplify for mobile ── */
  /* .hero-shroom-1 { font-size: 72px; right: 2%; top: 10%; } */
  .hero-shroom-2 { display: none; }
  .hero-shroom-3 { display: none; }
  .scroll-hint   { display: none; }

  /* ── Hero trust row — wrap instead of stack ── */
  .hero-trust     { flex-wrap: wrap; flex-direction: row; gap: 10px 20px; margin-top: 32px; padding-top: 24px; }
  .trust-item     { font-size: 13px; }
  .trust-divider  { display: none; }

  /* ── Why section ── */
  .why-floating-card-1 { top: -14px; right: -6px; min-width: 126px; padding: 12px 14px; }
  .why-floating-card-2 { display: none; }
  .why-main-stat       { font-size: 60px; }

  /* ── Products ── */
  .products-header    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .products-grid      { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .product-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
  .product-card.featured .product-img { height: 200px; min-height: auto; font-size: 80px; }

  /* ── How section ── */
  .how-steps { grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
  .step-card  { max-width: 420px; margin-left: auto; margin-right: auto; }
  .step-num   { width: 60px; height: 60px; font-size: 24px; }

  /* ── Types — single column ── */
  .types-grid { grid-template-columns: 1fr; }
  .type-card  { min-height: 260px; }

  /* ── Newsletter ── */
  .newsletter-form-card { padding: 24px 20px; }

  /* ── Stats ── */
  .stat-num  { font-size: 36px; }
  .stat-item { padding: 20px 12px; }

  /* ── Blog preview section ── */
  .blog-grid              { grid-template-columns: 1fr; }
  .blog-card.featured     { grid-column: span 1; }
  .blog-card.featured .blog-img { height: 240px; }

  /* ── Homepage footer ── */
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
  .sticky-bar          { padding: 10px 20px; flex-wrap: wrap; gap: 8px; }
  .sticky-bar-text     { font-size: 12px; }

  /* ── Popup ── */
  .popup-card   { grid-template-columns: 1fr; max-width: 92vw; border-radius: 24px; }
  .popup-visual { display: none; }
  .popup-body   { padding: 28px 24px; }
  .popup-close  { top: 14px; right: 14px; }

  /* ── Blog page ── */
  .blog-hero   { padding: 84px 20px 48px; }
  .filter-bar  { padding: 0 20px; }
  .blog-main   { padding: 28px 20px 52px; }
  .featured-post               { grid-template-columns: 1fr !important; min-height: auto; }
  .fp-visual                   { min-height: 200px; font-size: 90px; }
  .fp-content                  { padding: 24px; }
  .fp-title                    { font-size: clamp(18px,5vw,26px); }
  .posts-grid                  { grid-template-columns: 1fr; gap: 16px; }
  .post-card.wide              { grid-column: span 1; grid-template-columns: 1fr; }
  .post-card.wide .pc-img      { height: 200px; min-height: auto; }
  .post-card.wide .pc-body     { padding: 20px; }
  .pagination                  { flex-wrap: wrap; gap: 6px; }

  /* ── Product page ── */
  .product-hero         { grid-template-columns: 1fr !important; padding: 20px 20px 40px; gap: 28px; }
  .gallery              { position: static; top: auto; }
  .gallery-main         { height: 300px; }
  .gallery-thumbs .thumb { width: 60px; height: 60px; font-size: 24px; }
  .benefits-strip       { grid-template-columns: 1fr 1fr; }
  .coupon-box           { flex-wrap: wrap; gap: 8px; }
  .coupon-copy          { margin-left: 0; }
  .reviews-summary      { flex-direction: column; gap: 24px; }
  .reviews-big .score   { font-size: 48px; }
  .review-header        { flex-direction: column; gap: 8px; }
  .breadcrumb           { padding: 84px 20px 0; }
  .product-tabs-section { padding: 0 20px 40px; }
  .tab                  { padding: 12px 16px; font-size: 13px; }
  .faq-grid             { grid-template-columns: 1fr; gap: 36px; }
  .faq-section          { padding: 48px 20px; }
  .related-section      { padding: 48px 20px; }
  .related-grid         { grid-template-columns: repeat(2,1fr); }
  .sticky-atc           { padding: 12px 20px; gap: 12px; }
  .sticky-thumb         { width: 40px; height: 40px; font-size: 20px; }
  .sticky-name          { font-size: 13px; }
}

/* ══════════════════════════════════════════════════════════════
   @media (max-width: 576px) — Phone
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 576px) {
  /* ── Global padding ── */
  .section            { padding: 44px 16px; }
  .hero               { padding: 0 16px 44px; }
  .why-section        { padding: 44px 16px; }
  .newsletter-section { padding: 44px 16px; }
  .stats-bar          { padding: 32px 16px; }
  .footer             { padding: 44px 16px 20px; }

  /* ── Navbars ── */
  .navbar { padding: 0 16px; }
  .nav    { padding: 0 16px; }
  .navbar-logo    { font-size: 17px; gap: 8px; }
  .nav-logo       { font-size: 17px; gap: 8px; }

  /* ── Hero ── */
  /* .hero-shroom-1 { font-size: 56px; right: 1%; top: 7%; } */
  .hero-badge    { padding: 5px 12px; font-size: 10px; }
  .hero-actions  { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Products — single column ── */
  .products-grid                 { grid-template-columns: 1fr; gap: 12px; }
  .product-card.featured         { grid-column: span 1; grid-template-columns: 1fr; }

  /* ── How section — already 1-col from 768px rule; tighten padding ── */
  .step-card  { padding: 16px 18px; gap: 14px; }
  .step-num   { width: 44px; height: 44px; font-size: 17px; }

  /* ── Stats ── */
  .stat-num   { font-size: 32px; }
  .stat-label { font-size: 11px; }

  /* ── Footer — single column ── */
  .footer-grid         { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p      { max-width: 100%; }
  .footer-bottom       { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 8px; align-items: center; }
  .footer-inner        { flex-direction: column; gap: 12px; text-align: center; }

  /* ── Sticky bar ── */
  .sticky-bar         { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px; }
  .sticky-bar-actions { align-self: stretch; justify-content: center; }

  /* ── Popup ── */
  .popup-body { padding: 24px 16px; }
  .popup-card { border-radius: 20px; }

  /* ── Blog page ── */
  .blog-hero   { padding: 80px 16px 44px; }
  .filter-bar  { padding: 0 16px; }
  .blog-main   { padding: 24px 16px 44px; }
  .hero-search { max-width: 100%; }
  .hero-stats  { gap: 20px; flex-wrap: wrap; }
  .hs-num      { font-size: 22px; }

  /* ── Product page ── */
  .breadcrumb           { padding: 80px 16px 0; }
  .product-hero         { padding: 16px 16px 36px; gap: 24px; }
  .gallery-main         { height: 260px; }
  .gallery-thumbs       { gap: 6px; }
  .gallery-thumbs .thumb { width: 52px; height: 52px; font-size: 20px; }
  .price-current        { font-size: 28px; }
  .qty-cta              { flex-wrap: wrap; gap: 10px; }
  .cta-main             { width: 100%; }
  .buy-now-row          { flex-direction: column; }
  .buy-now-row .btn     { width: 100%; justify-content: center; }
  .benefits-strip       { grid-template-columns: 1fr; }
  .product-tabs-section { padding: 0 16px 36px; }
  .faq-section          { padding: 40px 16px; }
  .faq-grid             { gap: 28px; }
  .related-section      { padding: 40px 16px; }
  .related-grid         { grid-template-columns: 1fr; }
  .sticky-atc           { flex-direction: column; padding: 12px 16px; gap: 10px; }
  .sticky-actions       { width: 100%; }
  .sticky-actions .btn  { flex: 1; justify-content: center; }

  /* ── WooCommerce breadcrumb ── */
  .woocommerce-breadcrumb { padding-left: 16px; padding-right: 16px; padding-top: 80px; }
}

/* ══════════════════════════════════════════════════════════════
   Touch-device improvements (coarse pointer = touchscreen)
   ══════════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  /* Always-visible interactive elements (no hover dependency) */
  .card-quick-add  { transform: translateY(0); background: rgba(30,61,18,.82); }
  .card-wishlist   { opacity: 1; }
  .gallery-zoom    { opacity: 1; }

  /* Minimum 44px tap targets (WCAG 2.5.5) */
  .btn         { min-height: 44px; }
  .tab         { padding: 14px 20px; }
  .filter-btn  { padding: 10px 22px; }
  .option-pill { padding: 12px 20px; }
  .qty-btn     { width: 48px; height: 48px; }
  .thumb       { width: 64px; height: 64px; }
  .share-btn   { width: 44px; height: 44px; }
  .page-btn    { width: 48px; height: 48px; }

  /* Disable translate hover animations (no hover on touch) */
  .product-card:hover,
  .blog-card:hover,
  .type-card:hover,
  .post-card:hover { transform: none; box-shadow: none; }
}

