/* ===== INADI GADGETS - STYLES v2 ===== */
:root {
  --green-dark: #3b5a2a;
  --green-darker: #2c4520;
  --green: #92c84a;
  --green-soft: #cfe5a8;
  --cream: #fff5ed;
  --cream-2: #fdebdc;
  --ink: #1c2415;
  --ink-2: #4a5340;
  --muted: #8a8f82;
  --line: #e9e4dd;
  --white: #ffffff;
  --danger: #d24a3a;
  --warning: #f5b342;
  --glass-bg: rgba(255,245,237,.72);
  --glass-border: rgba(255,255,255,.5);
  --shadow-sm: 0 1px 2px rgba(28,36,21,.06), 0 1px 3px rgba(28,36,21,.04);
  --shadow: 0 4px 14px rgba(28,36,21,.07), 0 2px 6px rgba(28,36,21,.04);
  --shadow-lg: 0 20px 50px rgba(28,36,21,.12);
  --shadow-glass: 0 8px 32px rgba(28,36,21,.12), inset 0 1px 0 rgba(255,255,255,.6);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1280px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-bounce: cubic-bezier(.68,-0.55,.27,1.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-feature-settings: 'cv11','ss01';
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

h1,h2,h3,h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.4rem); font-weight: 750; }
h3 { font-size: 1.2rem; }
.eyebrow { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green-dark); }

/* ===== TOP STRIP ===== */
.topstrip { background: var(--green-dark); color: #f5fbe9; font-size: 0.8rem; padding: 9px 0; position: relative; z-index: 60; }
.topstrip .container { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.topstrip .ts-item { display: inline-flex; align-items: center; gap: 6px; }
.topstrip strong { color: var(--green); font-weight: 600; }
.topstrip a { color: inherit; opacity: .9; transition: opacity .2s; }
.topstrip a:hover { opacity: 1; color: var(--green); }
.topstrip svg { color: var(--green); }
@media (max-width: 720px) { .ts-hide-sm { display: none !important; } .topstrip .container { justify-content: center; } }

/* ===== GLASS FLOATING HEADER ===== */
.header {
  position: sticky; top: 12px; z-index: 50;
  margin: 12px auto 0;
  max-width: calc(var(--container) - 8px);
  background: rgba(255,245,237,.72);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 18px;
  box-shadow: 0 14px 40px -16px rgba(28,36,21,.22), inset 0 1px 0 rgba(255,255,255,.7);
  padding: 0 6px;
}
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 14px 0; }
.header-inner .logo { justify-self: start; }
.header-inner .nav { justify-self: center; }
.header-inner .header-actions { justify-self: end; }
.header-inner .menu-toggle { display: none; }
.logo { display: inline-flex; align-items: center; transition: transform .25s var(--ease); }
.logo:hover { transform: scale(1.04); }
.logo img { height: 44px; width: auto; display: block; }

/* Nav with dropdowns */
.nav { display: flex; gap: 4px; justify-content: center; align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-2);
  padding: 10px 14px; border-radius: 10px;
  transition: all .2s var(--ease); white-space: nowrap; cursor: pointer;
}
.nav-item > a:hover, .nav-item > button:hover, .nav-item.active > a, .nav-item.active > button { background: rgba(146,200,74,.18); color: var(--green-dark); }
.nav-item > a.nav-flash, .nav-item > button.nav-flash { color: var(--green-dark); font-weight: 700; }
.nav-caret { transition: transform .2s; }
.nav-item:hover .nav-caret, .nav-item.open .nav-caret { transform: rotate(180deg); }

/* Mega-menu dropdown */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -16px rgba(28,36,21,.22), 0 4px 12px rgba(28,36,21,.06);
  border-radius: var(--radius-lg);
  padding: 22px;
  min-width: 560px;
  opacity: 0; visibility: hidden; transition: all .25s var(--ease);
  z-index: 60;
}
.nav-item:hover .mega-menu, .nav-item.open .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.mega-menu.mega-single { min-width: 280px; }
.mega-menu.mega-single .mega-grid { grid-template-columns: 1fr; }
.mega-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 12px;
  transition: all .2s var(--ease);
}
.mega-item:hover { background: var(--cream); transform: translateX(4px); }
.mega-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  transition: all .25s var(--ease);
  flex-shrink: 0;
}
.mega-item:hover .mega-icon { background: var(--green-dark); color: #fff; transform: rotate(-6deg) scale(1.08); }
.mega-item strong { display: block; font-size: 0.93rem; color: var(--ink); }
.mega-item span { font-size: 0.78rem; color: var(--muted); }
.mega-footer {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.mega-footer a { color: var(--green-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.mega-footer a:hover { gap: 10px; }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: all .2s var(--ease); position: relative; flex-shrink: 0; }
.icon-btn:hover { background: rgba(146,200,74,.18); color: var(--green-dark); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--danger); color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(210,74,58,.4);
}
.cart-badge[data-count="0"] { display: none; }
.menu-toggle { display: none; }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; background: rgba(28,36,21,.55); backdrop-filter: blur(8px); z-index: 100; opacity: 0; visibility: hidden; transition: all .25s; }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-modal { position: absolute; top: 80px; left: 50%; transform: translateX(-50%) translateY(-20px); width: min(680px, 92%); background: #fff; border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-lg); transition: transform .25s; }
.search-overlay.open .search-modal { transform: translateX(-50%) translateY(0); }
.search-modal input { width: 100%; padding: 18px 20px; font-size: 1.05rem; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-results { max-height: 60vh; overflow-y: auto; padding: 4px; }
.search-result { display: flex; gap: 14px; align-items: center; padding: 10px; border-radius: var(--radius-sm); transition: background .15s; }
.search-result:hover { background: var(--cream); }
.search-result img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; background: var(--cream); }
.search-result h4 { font-size: 0.95rem; font-weight: 600; }
.search-result p { font-size: 0.85rem; color: var(--muted); }
.search-result .price { color: var(--green-dark); font-weight: 700; font-size: 0.9rem; }

/* ===== HERO (matches Black-Friday: pure black bg + green radial accent) ===== */
.hero-main {
  background: #000;
  color: #fff;
  padding: 70px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.hero-main::before { content:''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(146,200,74,.22) 0%, transparent 60%); }
.hero-main::after { content:''; position: absolute; bottom: -160px; right: -80px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(146,200,74,.12) 0%, transparent 70%); filter: blur(40px); }
.hero-main .container { position: relative; z-index: 1; }
.hero-main .eyebrow {
  display: inline-flex; align-items: center;
  padding: 6px 14px; background: rgba(146,200,74,.16);
  border-radius: 999px; margin-bottom: 18px;
  color: var(--green); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-main h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3.4rem); letter-spacing: -0.035em; max-width: 800px; margin: 0 auto 14px; line-height: 1.1; }
.hero-main h1 em { font-style: normal; color: var(--green); position: relative; }
.hero-main p.lead { color: rgba(255,255,255,.82); font-size: 0.98rem; max-width: 560px; margin: 0 auto 24px; }
.hero-main .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-main .btn-secondary { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); }
.hero-main .btn-secondary:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); }

/* Hero offer carousel below hero */
.offer-carousel-wrap { background: var(--cream); padding: 40px 0; }
.offer-carousel { position: relative; max-width: 1100px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/1; box-shadow: var(--shadow-lg); }
.offer-track { display: flex; width: 100%; height: 100%; transition: transform .7s var(--ease); }
.offer-slide { flex: 0 0 100%; height: 100%; position: relative; }
.offer-slide img { width: 100%; height: 100%; object-fit: cover; }
.offer-slide-overlay { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 60px; background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, transparent 60%); color: #fff; }
.offer-slide-overlay h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 10px; }
.offer-slide-overlay p { color: rgba(255,255,255,.88); margin-bottom: 16px; max-width: 380px; font-size: 0.95rem; }
.offer-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.offer-dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); border: 0; padding: 0; transition: all .25s; cursor: pointer; }
.offer-dots button.active { background: #fff; width: 22px; border-radius: 4px; }
.offer-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); display: flex; align-items: center; justify-content: center; z-index: 2; transition: all .2s; }
.offer-nav:hover { background: #fff; }
.offer-prev { left: 16px; } .offer-next { right: 16px; }
@media (max-width: 720px) { .offer-carousel { aspect-ratio: 16/10; } .offer-slide-overlay { padding: 0 24px; } }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head .eyebrow { margin-bottom: 8px; }
.section-head p { color: var(--ink-2); max-width: 520px; margin-top: 6px; }
.see-all { font-weight: 600; font-size: 0.9rem; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.see-all:hover { gap: 10px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; transition: all .25s var(--ease); white-space: nowrap; cursor: pointer; position: relative; overflow: hidden; }
.btn::before { content:''; position: absolute; inset: 0; background: rgba(255,255,255,.15); transform: translateX(-100%); transition: transform .4s var(--ease); }
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: 0 4px 12px -2px rgba(59,90,42,.4); }
.btn-primary:hover { background: var(--ink); transform: translateY(-3px); box-shadow: 0 8px 20px -4px rgba(59,90,42,.5); }
.btn-secondary { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--green-dark); color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-green { background: var(--green); color: var(--green-dark); }
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-danger { background: var(--danger); color: #fff; box-shadow: 0 4px 12px -2px rgba(210,74,58,.4); }
.btn-danger:hover { opacity: .92; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn[disabled] { opacity: .5; pointer-events: none; transform: none; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-card {
  background: #fff; border-radius: var(--radius); padding: 22px 16px; text-align: center;
  transition: all .35s var(--ease); border: 1px solid var(--line); display: block;
  position: relative; overflow: hidden;
}
.cat-card::before { content:''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 40%, rgba(146,200,74,.15)); opacity: 0; transition: opacity .3s; }
.cat-card:hover { transform: translateY(-6px) scale(1.02); border-color: var(--green); box-shadow: 0 18px 40px -16px rgba(59,90,42,.25); }
.cat-card:hover::before { opacity: 1; }
.cat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: var(--green-dark);
  transition: all .35s var(--ease);
  position: relative; z-index: 1;
}
.cat-card:hover .cat-icon { background: var(--green); color: var(--green-dark); transform: scale(1.1) rotate(-6deg); }
.cat-card h4 { font-size: 0.92rem; margin-bottom: 4px; position: relative; z-index: 1; }
.cat-card span { font-size: 0.78rem; color: var(--muted); position: relative; z-index: 1; }
@media (max-width:1024px) { .categories-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:720px)  { .categories-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== PRODUCTS ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  transition: all .35s var(--ease);
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -16px rgba(28,36,21,.18); border-color: transparent; }
.product-media { position: relative; aspect-ratio: 1/1; background: var(--cream); overflow: hidden; }
.product-media .img-primary, .product-media .img-hover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.product-media .img-hover { opacity: 0; transform: scale(1.04); }
.product-card:hover .img-primary { opacity: 0; transform: scale(1.04); }
.product-card:hover .img-hover { opacity: 1; transform: scale(1); }
.product-card:hover .product-media .img-primary:only-child { opacity: 1; transform: scale(1.06); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--green-dark); color: #fff;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .05em;
  z-index: 2;
}
.product-badge.sale { background: var(--danger); }
.product-badge.new  { background: var(--green); color: var(--green-dark); }
.product-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(28,36,21,.12);
  color: var(--ink-2);
  transition: all .25s var(--ease);
  z-index: 2;
}
.product-wishlist:hover, .product-wishlist.active { background: var(--green-dark); color: #fff; transform: scale(1.1); box-shadow: 0 4px 14px rgba(59,90,42,.4); }
.product-wishlist.active { color: #fff; }
.product-wishlist svg { width: 16px; height: 16px; }
.product-actions-overlay {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  display: flex; gap: 6px;
  opacity: 0; transform: translateY(12px); transition: all .3s var(--ease);
  z-index: 2;
}
.product-card:hover .product-actions-overlay { opacity: 1; transform: translateY(0); }
.product-actions-overlay .btn { flex: 1; padding: 11px 12px; font-size: 0.82rem; }
.product-actions-overlay .btn-add-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.product-actions-overlay .btn-add-icon .lbl { margin-left: 6px; }
/* Mobile-only inline action row - hidden on desktop */
.product-actions-mobile { display: none; }
.product-info { padding: 16px 16px 20px; flex: 1; display: flex; flex-direction: column; }
.product-info .cat { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.product-info h3 { font-size: 0.96rem; font-weight: 600; margin-bottom: 8px; min-height: 2.4em; line-height: 1.35; }
.product-info h3 a { transition: color .15s; }
.product-info h3 a:hover { color: var(--green-dark); }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.product-rating .stars { color: #fbbf24; letter-spacing: 1px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.product-price .current { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); }
.product-price .old { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }

/* ===== FEATURES STRIP ===== */
.features { background: var(--white); border-radius: var(--radius-lg); padding: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: -50px; position: relative; z-index: 2; box-shadow: var(--shadow); }
.feature { display: flex; gap: 14px; align-items: flex-start; transition: transform .25s var(--ease); padding: 8px; border-radius: 12px; }
.feature:hover { transform: translateY(-3px); background: var(--cream); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--cream-2), var(--cream)); display: flex; align-items: center; justify-content: center; color: var(--green-dark); flex-shrink: 0; transition: all .25s var(--ease); }
.feature:hover .feature-icon { background: var(--green); transform: rotate(-6deg) scale(1.06); }
.feature h4 { font-size: 0.98rem; margin-bottom: 4px; }
.feature p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ===== FLASH SALES STRIP (green gradient with blink + hover) ===== */
.flash-section {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 45%, #4a6f37 75%, var(--green) 130%);
  background-size: 200% 200%;
  border-radius: var(--radius-lg); padding: 36px; color: #fff;
  position: relative; overflow: hidden;
  animation: flash-shift 8s ease-in-out infinite, flash-pulse 3s ease-in-out infinite;
  box-shadow: 0 10px 30px -10px rgba(59,90,42,.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.flash-section:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -16px rgba(59,90,42,.55); }
.flash-section::before {
  content:''; position: absolute; top:-150px; right:-100px; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146,200,74,.35), transparent 60%);
  animation: flash-blink 2.4s ease-in-out infinite;
}
.flash-section::after {
  content:''; position: absolute; bottom:-120px; left:-80px; width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146,200,74,.25), transparent 60%);
  animation: flash-blink 2.4s ease-in-out infinite 1.2s;
}
@keyframes flash-shift { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } }
@keyframes flash-pulse { 0%,100% { box-shadow: 0 10px 30px -10px rgba(59,90,42,.4); } 50% { box-shadow: 0 10px 40px -8px rgba(146,200,74,.55); } }
@keyframes flash-blink { 0%,100% { opacity: .9; transform: scale(1); } 50% { opacity: .5; transform: scale(1.1); } }
.flash-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.flash-section-head h2 { color: #fff; margin-bottom: 4px; }
.flash-section-head .eyebrow { color: var(--green); opacity: 1; }
.flash-section-head p { color: rgba(255,255,255,.9); margin-top: 4px; }
.flash-ticker { background: rgba(0,0,0,.32); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; display: inline-flex; gap: 10px; align-items: center; backdrop-filter: blur(8px); border: 1px solid rgba(146,200,74,.3); }
.flash-ticker strong { font-variant-numeric: tabular-nums; color: var(--green); }
.flash-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; z-index: 1; }
.flash-products .product-card { border: 0; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.flash-products .product-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px -12px rgba(0,0,0,.3); }
@media (max-width:1024px) { .flash-products { grid-template-columns: repeat(3,1fr); } }
@media (max-width:720px)  { .flash-products { grid-template-columns: repeat(2,1fr); } .flash-section { padding: 24px; } }

/* ===== AD MARQUEE (auto-scrolling 2-image strip) ===== */
.ad-marquee { padding: 30px 0; overflow: hidden; background: var(--cream); }
.ad-track {
  display: flex; gap: 20px;
  animation: scroll-x 36s linear infinite;
  width: max-content;
}
.ad-marquee:hover .ad-track { animation-play-state: paused; }
.ad-slot {
  flex: 0 0 calc((100vw - 60px) / 2);
  max-width: 620px;
  min-width: 380px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease);
  position: relative;
}
.ad-slot:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.ad-slot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ad-slot:hover img { transform: scale(1.04); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width:720px) { .ad-slot { min-width: 280px; flex-basis: 80vw; } }

/* ===== BANNER ===== */
.banner { background: linear-gradient(135deg, var(--green-dark) 0%, #4a6f37 100%); color: #fff; border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; overflow: hidden; position: relative; }
.banner::before { content:''; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%; background: radial-gradient(circle, rgba(146,200,74,.3) 0%, transparent 60%); }
.banner-content { position: relative; z-index: 1; }
.banner h2 { color: #fff; margin-bottom: 12px; }
.banner h2 em { font-style: normal; color: var(--green); }
.banner p { color: rgba(255,255,255,.85); margin-bottom: 22px; max-width: 460px; }
.banner-visual { position: relative; z-index: 1; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.banner-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.banner:hover .banner-visual img { transform: scale(1.05); }

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--cream-2); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; }
.newsletter h2 { margin-bottom: 10px; }
.newsletter p { color: var(--ink-2); margin-bottom: 26px; max-width: 480px; margin-inline: auto; }
.newsletter-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; background: #fff; padding: 6px; border-radius: 999px; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.newsletter-form:focus-within { box-shadow: 0 8px 24px -8px rgba(59,90,42,.3); }
.newsletter-form input { flex: 1; border: 0; outline: 0; padding: 0 18px; background: transparent; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: var(--green-dark); color: #d9e6c2; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.7); margin: 14px 0 20px; max-width: 320px; line-height: 1.7; }
.footer h5 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { font-size: 0.88rem; opacity: .75; transition: all .2s; }
.footer a:hover { opacity: 1; color: var(--green); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; opacity: .85; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--green); }
.socials { display: flex; gap: 8px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; opacity: 1; transition: all .25s var(--ease); }
.socials a:hover { background: var(--green); color: var(--green-dark); transform: translateY(-3px) rotate(-6deg); }
.socials svg { width: 15px; height: 15px; }
.payments-strip { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 0.82rem; opacity: .8; }
.pay-chip { background: rgba(255,255,255,.08); padding: 5px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 0.82rem; opacity: .65; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .25s var(--ease); animation: float-pulse 2.6s infinite; }
.whatsapp-float:hover { transform: scale(1.12) rotate(-8deg); }
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes float-pulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); } 50% { box-shadow: 0 8px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); } }

/* ===== MOBILE BOTTOM NAV (solid, smaller, never overlaps content) ===== */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 4px 2px calc(4px + env(safe-area-inset-bottom));
  justify-content: space-around;
  box-shadow: 0 -8px 24px rgba(28,36,21,.10);
}
.bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 5px 2px; color: var(--muted); font-size: 0.6rem; font-weight: 500; position: relative; transition: color .15s; line-height: 1; }
.bottom-nav a svg { width: 18px; height: 18px; }
.bottom-nav a.active { color: var(--green-dark); }
.bottom-nav .bottom-cart .cart-badge { position: absolute; top: 0; right: calc(50% - 16px); min-width: 16px; height: 16px; font-size: 9px; }
@media (max-width: 720px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 56px; }
  .whatsapp-float { bottom: 70px; right: 14px; }
}

/* ===== PAGE HEADER ===== */
.page-header { background: var(--cream-2); padding: 60px 0 44px; text-align: center; }
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 { margin-bottom: 10px; }
.page-header p { color: var(--ink-2); max-width: 580px; margin-inline: auto; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 14px; font-size: 0.84rem; color: var(--muted); flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--green-dark); }

/* ===== SHOP ===== */
.shop-layout { display: grid; grid-template-columns: 270px 1fr; gap: 30px; padding: 40px 0 70px; }
.filters {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--line); align-self: start;
  position: sticky; top: 100px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--cream);
}
.filters::-webkit-scrollbar { width: 8px; }
.filters::-webkit-scrollbar-track { background: var(--cream); border-radius: 4px; }
.filters::-webkit-scrollbar-thumb { background: var(--green-soft); border-radius: 4px; }
.filters::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* Mobile drawer chrome (sticky header X + sticky "Show results" footer + backdrop) - hidden on desktop */
.filters-mhead, .filters-mfoot, .filters-backdrop { display: none; }
.filters-mhead h4 { font-size: 1.05rem; }
.filters-close { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: background .15s; }
.filters-close:hover { background: var(--cream); color: var(--ink); }
.filters-close svg { width: 20px; height: 20px; }
.filter-group { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.filter-group h5 { font-size: 0.83rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.filter-group label { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: 0.9rem; color: var(--ink-2); transition: color .15s; }
.filter-group label:hover { color: var(--green-dark); }
.filter-group input[type=checkbox], .filter-group input[type=radio] { accent-color: var(--green-dark); width: 16px; height: 16px; }

/* Premium price range slider */
.price-slider-wrap { padding: 4px 6px 0; }
.price-slider-track { position: relative; height: 6px; background: var(--line); border-radius: 3px; margin: 18px 0 30px; }
.price-slider-range { position: absolute; height: 100%; background: linear-gradient(90deg, var(--green-dark), var(--green)); border-radius: 3px; }
.price-slider-track input[type=range] {
  position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0;
  width: 100%; height: 18px; -webkit-appearance: none; appearance: none;
  background: transparent; pointer-events: none; outline: none;
}
.price-slider-track input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-dark); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(59,90,42,.4);
  cursor: pointer; pointer-events: all; transition: transform .2s;
}
.price-slider-track input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.18); }
.price-slider-track input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-dark); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(59,90,42,.4);
  cursor: pointer; pointer-events: all;
}
.price-slider-labels { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted); margin-top: 4px; font-variant-numeric: tabular-nums; }
.price-slider-labels strong { color: var(--ink); font-weight: 600; }

.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; background: #fff; padding: 13px 18px; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 20px; flex-wrap: wrap; }
.shop-count { font-size: 0.88rem; color: var(--ink-2); }
.shop-count strong { color: var(--ink); }
.sort-select { padding: 9px 36px 9px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 0.86rem; background: #fff; outline: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231c2415' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; -webkit-appearance: none; appearance: none; }
.shop-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.empty-state { padding: 60px; text-align: center; background: #fff; border-radius: var(--radius); border: 1px dashed var(--line); }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--muted); }
.filter-toggle { display: none; }

/* ===== PRODUCT PAGE ===== */
.product-page { padding: 40px 0 70px; }
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; }
.product-gallery .main-img { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--cream); margin-bottom: 12px; position: relative; }
.product-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product-gallery .main-img:hover img { transform: scale(1.04); }
.product-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.product-thumbs img { aspect-ratio: 1/1; border-radius: 10px; cursor: pointer; border: 2px solid transparent; background: var(--cream); object-fit: cover; transition: all .2s; }
.product-thumbs img.active, .product-thumbs img:hover { border-color: var(--green-dark); transform: translateY(-2px); }
.product-detail-info .cat { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.product-detail-info h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }
.product-detail-info .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 0.86rem; color: var(--muted); flex-wrap: wrap; }
.product-detail-info .rating-row .stars { color: #fbbf24; letter-spacing: 2px; }
.product-detail-info .price-row { display: flex; align-items: baseline; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 20px; flex-wrap: wrap; }
.product-detail-info .price-row .current { font-size: 1.9rem; font-weight: 800; color: var(--green-dark); letter-spacing: -0.02em; }
.product-detail-info .price-row .old { font-size: 1.05rem; color: var(--muted); text-decoration: line-through; }
.product-detail-info .price-row .save { background: rgba(210,74,58,.12); color: var(--danger); font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.product-detail-info .desc { color: var(--ink-2); margin-bottom: 22px; line-height: 1.7; }

/* Variants */
.variant-group { margin-bottom: 18px; }
.variant-group .vg-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-2); margin-bottom: 10px; }
.variant-group .vg-label span { color: var(--green-dark); font-weight: 600; margin-left: 6px; }
.variant-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-color { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; position: relative; transition: all .2s var(--ease); box-shadow: inset 0 0 0 2px #fff; }
.variant-color.active { border-color: var(--green-dark); transform: scale(1.1); }
.variant-color:hover { transform: scale(1.12); }
.variant-size, .variant-chip {
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink-2);
  cursor: pointer; transition: all .2s var(--ease); background: #fff;
}
.variant-size:hover, .variant-chip:hover { border-color: var(--green-dark); color: var(--green-dark); transform: translateY(-2px); }
.variant-size.active, .variant-chip.active { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

.product-meta-list { list-style: none; margin-bottom: 24px; }
.product-meta-list li { display: flex; gap: 10px; align-items: center; font-size: 0.92rem; color: var(--ink-2); padding: 5px 0; }
.product-meta-list svg { width: 18px; height: 18px; color: var(--green-dark); flex-shrink: 0; }
.qty-row { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 4px; background: #fff; }
.qty-control button { width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem; font-weight: 600; color: var(--ink-2); transition: all .15s; }
.qty-control button:hover { background: var(--cream); color: var(--green-dark); }
.qty-control input { width: 40px; text-align: center; border: 0; outline: 0; background: transparent; font-weight: 600; }
.product-actions { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 140px; padding: 15px 22px; }
.icon-square { width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; transition: all .25s; flex-shrink: 0; }
.icon-square:hover { border-color: var(--green-dark); color: var(--green-dark); transform: translateY(-2px); }
.product-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; background: var(--cream); border-radius: var(--radius); }
.product-trust > div { display: flex; gap: 10px; align-items: flex-start; font-size: 0.84rem; color: var(--ink-2); padding: 4px; border-radius: 8px; transition: background .15s; }
.product-trust > div:hover { background: rgba(255,255,255,.6); }
.product-trust svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; }
.product-tabs { margin-top: 60px; }
.tab-list { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; overflow-x: auto; }
.tab-list button { padding: 11px 20px; font-weight: 600; color: var(--muted); font-size: 0.92rem; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .15s; white-space: nowrap; }
.tab-list button.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.tab-content { display: none; max-width: 840px; }
.tab-content.active { display: block; }
.tab-content p { color: var(--ink-2); line-height: 1.8; margin-bottom: 14px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 600; width: 30%; color: var(--ink-2); }

/* Reviews on product page */
.review-card { padding: 22px 0; border-bottom: 1px solid var(--line); }
.review-card:last-child { border-bottom: 0; }
.review-card .review-head { display: flex; gap: 14px; align-items: center; margin-bottom: 10px; }
.review-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.review-card strong { display: block; font-size: 0.95rem; }
.review-card .review-meta { font-size: 0.78rem; color: var(--muted); }
.review-card .stars { color: #fbbf24; letter-spacing: 1px; font-size: 0.92rem; }

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; padding: 40px 0 70px; }
.cart-items { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 16px; align-items: center; padding: 18px; border-bottom: 1px solid var(--line); transition: background .15s; }
.cart-item:hover { background: var(--cream); }
.cart-item:last-child { border-bottom: 0; }
.cart-item img { width: 90px; height: 90px; border-radius: 10px; object-fit: cover; background: var(--cream); }
.cart-item-info h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-info .cat { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.cart-item-info .unit-price { color: var(--green-dark); font-weight: 600; font-size: 0.88rem; }
.cart-item-total { font-weight: 700; color: var(--ink); font-size: 1rem; white-space: nowrap; }
.cart-item-remove { color: var(--muted); width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: all .15s; }
.cart-item-remove:hover { background: rgba(210,74,58,.1); color: var(--danger); }
.cart-item-remove svg { width: 18px; height: 18px; }
.summary { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 24px; align-self: start; position: sticky; top: 100px; }
.summary h3 { margin-bottom: 18px; font-size: 1.15rem; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; color: var(--ink-2); gap: 10px; }
.summary-row.total { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 10px; font-size: 1.08rem; font-weight: 700; color: var(--ink); }
.summary .btn { width: 100%; margin-top: 18px; }
.summary-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.coupon-row { display: flex; gap: 8px; margin: 14px 0; }
.coupon-row input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; outline: none; font-size: 0.88rem; }
.coupon-row button { padding: 0 18px; border-radius: 8px; background: var(--ink); color: #fff; font-size: 0.84rem; font-weight: 600; }

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 30px; padding: 40px 0 70px; }
.checkout-form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; margin-bottom: 18px; }
.checkout-form-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.checkout-form-card .help { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-2); }
.form-field input, .form-field select, .form-field textarea { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; outline: none; font-size: 0.95rem; transition: all .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(146,200,74,.18); }
.form-field textarea { resize: vertical; min-height: 84px; }
.form-error { background: rgba(210,74,58,.08); border-left: 3px solid var(--danger); color: var(--danger); padding: 12px 14px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 14px; display: none; }
.form-error.show { display: flex; gap: 10px; align-items: flex-start; }
.form-success { background: rgba(146,200,74,.14); border-left: 3px solid var(--green-dark); color: var(--green-dark); padding: 12px 14px; border-radius: 10px; font-size: 0.88rem; margin-bottom: 14px; display: none; }
.form-success.show { display: flex; gap: 10px; align-items: flex-start; }
.zone-info { background: var(--cream); border-left: 3px solid var(--green-dark); padding: 14px 16px; border-radius: 10px; margin-top: 14px; font-size: 0.86rem; color: var(--ink-2); display: none; }
.zone-info.show { display: block; }
.order-summary-item { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); align-items: center; }
.order-summary-item:last-of-type { border-bottom: 0; }
.order-summary-item img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: var(--cream); }
.order-summary-item .info { flex: 1; min-width: 0; }
.order-summary-item h5 { font-size: 0.9rem; font-weight: 600; }
.order-summary-item .qty { font-size: 0.78rem; color: var(--muted); }
.order-summary-item .price { font-weight: 700; color: var(--ink); font-size: 0.88rem; white-space: nowrap; }
.pay-method { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.pay-method label { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: all .2s; background: #fff; }
.pay-method label:hover { border-color: var(--green); }
.pay-method label:has(input:checked) { border-color: var(--green-dark); background: rgba(146,200,74,.06); box-shadow: 0 0 0 3px rgba(146,200,74,.12); }
.pay-method input { accent-color: var(--green-dark); width: 18px; height: 18px; margin-top: 2px; }
.pay-method strong { display: block; font-size: 0.95rem; }
.pay-method span { font-size: 0.82rem; color: var(--muted); }
.pay-logos { display: inline-flex; gap: 4px; margin-left: 8px; }
.pay-logos .pay-chip { background: var(--cream); color: var(--green-dark); font-size: 0.7rem; padding: 2px 8px; border-radius: 6px; }

/* ===== ABOUT / CONTACT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 60px 0; }
.about-grid img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }
.about-grid h2 em { font-style: normal; color: var(--green-dark); }
.about-grid p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { padding: 28px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); transition: all .3s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card .feature-icon { margin-bottom: 16px; width: 56px; height: 56px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 40px 0 70px; }
.contact-info-card { padding: 32px; background: var(--green-dark); color: #fff; border-radius: var(--radius); }
.contact-info-card h3 { color: #fff; margin-bottom: 12px; }
.contact-info-card p { color: rgba(255,255,255,.8); margin-bottom: 26px; }
.contact-info-card ul { list-style: none; }
.contact-info-card li { display: flex; gap: 14px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-card li:last-child { border-bottom: 0; }
.contact-info-card li svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.contact-info-card strong { color: #fff; display: block; font-size: 0.95rem; }
.contact-info-card span { color: rgba(255,255,255,.7); font-size: 0.85rem; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }

/* ===== DOC PAGE ===== */
.doc-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; padding: 40px 0 70px; }
.doc-nav { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; align-self: start; position: sticky; top: 100px; }
.doc-nav h6 { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; padding-left: 10px; }
.doc-nav a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 0.88rem; color: var(--ink-2); transition: all .15s; margin-bottom: 2px; }
.doc-nav a:hover { background: var(--cream); color: var(--green-dark); padding-left: 16px; }
.doc-nav a.active { background: var(--green-dark); color: #fff; }
.doc-content { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 42px 48px; }
.doc-content h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 6px; }
.doc-content .last-updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }
.doc-content h2 { font-size: 1.25rem; font-weight: 700; margin: 32px 0 10px; color: var(--green-dark); }
.doc-content h3 { font-size: 1.05rem; font-weight: 600; margin: 22px 0 8px; }
.doc-content p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.75; font-size: 0.95rem; }
.doc-content ul, .doc-content ol { padding-left: 22px; color: var(--ink-2); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.doc-content li { margin-bottom: 4px; }
.doc-content strong { color: var(--ink); }
.doc-content .callout { background: var(--cream); border-left: 3px solid var(--green-dark); padding: 16px 18px; border-radius: 10px; margin: 18px 0; font-size: 0.9rem; }

/* ===== AUTH ===== */
.auth-page { min-height: 75vh; display: flex; align-items: center; padding: 40px 0 60px; background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); }
.auth-card {
  width: 100%; max-width: 460px; margin: 0 auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-glass);
  overflow: hidden; /* keep children inside the rounded corners */
  box-sizing: border-box;
}
.auth-card .logo { display: flex; justify-content: center; margin-bottom: 18px; }
.auth-card h1 { font-size: 1.55rem; text-align: center; margin-bottom: 6px; }
.auth-card .sub { color: var(--muted); text-align: center; font-size: 0.9rem; margin-bottom: 22px; }
.auth-card form { width: 100%; }
.auth-card .form-grid { gap: 12px; width: 100%; box-sizing: border-box; }
.auth-card .form-grid.full { display: grid; grid-template-columns: 1fr; }
.auth-card .form-field { width: 100%; min-width: 0; box-sizing: border-box; }
.auth-card .form-field input,
.auth-card .form-field select,
.auth-card .form-field textarea {
  width: 100%; max-width: 100%; box-sizing: border-box;
  padding: 11px 14px; font-size: 0.92rem;
}
.auth-card .form-field label { font-size: 0.78rem; }
.auth-card .btn { margin-top: 16px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content:''; flex: 1; height: 1px; background: var(--line); }
.auth-foot { text-align: center; margin-top: 18px; font-size: 0.88rem; color: var(--ink-2); }
.auth-foot a { color: var(--green-dark); font-weight: 600; }

/* ===== ACCOUNT DASHBOARD ===== */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding: 40px 0 70px; }
.account-sidebar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; align-self: start; position: sticky; top: 100px; }
.account-user { display: flex; gap: 12px; align-items: center; padding-bottom: 18px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.account-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--green-dark), #4a6f37); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; box-shadow: 0 4px 10px -2px rgba(59,90,42,.4); }
.account-user strong { display: block; font-size: 0.95rem; }
.account-user span { font-size: 0.8rem; color: var(--muted); }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: 0.9rem; color: var(--ink-2); margin-bottom: 2px; transition: all .15s; }
.account-nav a svg { width: 17px; height: 17px; }
.account-nav a:hover { background: var(--cream); color: var(--green-dark); padding-left: 16px; }
.account-nav a.active { background: var(--green-dark); color: #fff; }
.account-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.account-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: all .3s var(--ease); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green); }
.stat-card .label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.stat-card .value { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.stat-card .meta { font-size: 0.78rem; color: var(--green-dark); margin-top: 4px; }
.order-list { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.order-list th { text-align: left; padding: 12px 14px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--line); }
.order-list td { padding: 14px; border-bottom: 1px solid var(--line); }
.order-list tr { transition: background .15s; }
.order-list tbody tr:hover { background: var(--cream); }
.order-list tr:last-child td { border-bottom: 0; }
.status-chip { display: inline-flex; padding: 4px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.status-pending  { background: rgba(245,179,66,.15); color: #b07e16; }
.status-paid     { background: rgba(146,200,74,.2); color: var(--green-dark); }
.status-shipped  { background: rgba(59,130,200,.15); color: #2d5b8e; }
.status-delivered{ background: rgba(59,90,42,.12); color: var(--green-dark); }
.status-cancelled{ background: rgba(210,74,58,.12); color: var(--danger); }

/* ===== ADMIN ===== */
.admin-body { background: #f4f1eb; }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--green-dark); color: #d9e6c2; padding: 22px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-brand { padding: 4px 22px 24px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 18px; }
.admin-brand img { height: 38px; }
.admin-section { padding: 6px 12px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin: 14px 12px 6px; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 22px; font-size: 0.9rem; color: rgba(255,255,255,.75); transition: all .15s; }
.admin-nav a svg { width: 18px; height: 18px; opacity: .8; }
.admin-nav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.admin-nav a.active { background: rgba(146,200,74,.15); color: var(--green); border-left: 3px solid var(--green); padding-left: 19px; }
.admin-main { padding: 28px 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.admin-header h1 { font-size: 1.5rem; }
.admin-user { display: flex; align-items: center; gap: 12px; padding: 8px 16px; background: #fff; border-radius: 999px; border: 1px solid var(--line); font-size: 0.88rem; }
.admin-user .account-avatar { width: 30px; height: 30px; font-size: 0.8rem; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 26px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.admin-card-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.admin-card-head h3 { font-size: 1.05rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th { text-align: left; padding: 12px 14px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--cream); border-bottom: 1px solid var(--line); }
.admin-table td { padding: 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,245,237,.5); }
.admin-table img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; }
.admin-actions { display: inline-flex; gap: 4px; }
.admin-action-btn { width: 32px; height: 32px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: all .15s; }
.admin-action-btn:hover { background: var(--cream); color: var(--green-dark); }
.admin-action-btn.delete:hover { background: rgba(210,74,58,.12); color: var(--danger); }
.admin-action-btn svg { width: 16px; height: 16px; }
.admin-toolbar { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; align-items: center; }
.admin-toolbar input, .admin-toolbar select { padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 0.9rem; outline: none; background: #fff; }
.admin-toolbar .grow { flex: 1; }
.admin-modal-overlay { position: fixed; inset: 0; background: rgba(28,36,21,.55); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.admin-modal-overlay.open { display: flex; }
.admin-modal { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; }
.admin-modal-head { padding: 22px 26px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.admin-modal-body { padding: 26px; }
.admin-modal-foot { padding: 18px 26px; border-top: 1px solid var(--line); display: flex; gap: 10px; justify-content: flex-end; }

/* ===== CAREERS / BLACK FRIDAY ===== */
.cta-block { background: linear-gradient(135deg, var(--ink) 0%, #2a2616 100%); color: #fff; border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; }
.cta-block h2 { color: #fff; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,.85); margin-bottom: 22px; max-width: 540px; margin-inline: auto; }
.bf-hero { background: #000; color: #fff; padding: 70px 0; text-align: center; border-radius: var(--radius-lg); margin: 24px 0; position: relative; overflow: hidden; }
.bf-hero::before { content:''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(146,200,74,.25) 0%, transparent 60%); }
.bf-hero h1 { color: #fff; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.04em; position: relative; }
.bf-hero h1 em { font-style: normal; color: var(--green); }
.bf-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; position: relative; margin: 16px 0 22px; }
.countdown { display: inline-flex; gap: 12px; position: relative; margin-bottom: 24px; }
.countdown div { background: rgba(255,255,255,.1); border-radius: 12px; padding: 14px 16px; min-width: 70px; backdrop-filter: blur(6px); }
.countdown strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--green); font-variant-numeric: tabular-nums; }
.countdown span { font-size: 0.74rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.career-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 12px; display: flex; gap: 16px; justify-content: space-between; align-items: center; flex-wrap: wrap; transition: all .25s var(--ease); }
.career-item:hover { transform: translateX(4px); border-color: var(--green-dark); box-shadow: var(--shadow); }
.career-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.career-item .meta { font-size: 0.85rem; color: var(--muted); }
.career-item .tag { display: inline-block; padding: 3px 10px; background: var(--cream); border-radius: 999px; font-size: 0.74rem; font-weight: 600; color: var(--green-dark); margin-right: 4px; }

/* ===== CART DRAWER (slide-in after Add to cart) ===== */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(28,36,21,.55); backdrop-filter: blur(6px); z-index: 110; opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 420px; background: #fff; z-index: 120; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(28,36,21,.2); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.cart-drawer-head h3 svg { color: var(--green-dark); width: 22px; height: 22px; }
.cart-drawer-close { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); transition: all .15s; }
.cart-drawer-close:hover { background: var(--cream); color: var(--ink); }
.cart-drawer-close svg { width: 18px; height: 18px; }
.cart-drawer-just-added { padding: 16px 24px; background: linear-gradient(135deg, rgba(146,200,74,.18), rgba(146,200,74,.06)); border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: center; }
.cart-drawer-just-added .check { width: 32px; height: 32px; border-radius: 50%; background: var(--green-dark); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-drawer-just-added .check svg { width: 16px; height: 16px; }
.cart-drawer-just-added strong { display: block; font-size: 0.9rem; color: var(--green-dark); }
.cart-drawer-just-added span { font-size: 0.78rem; color: var(--ink-2); }
.cart-drawer-list { flex: 1; overflow-y: auto; padding: 8px 0; }
.cart-drawer-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 24px; align-items: center; border-bottom: 1px solid var(--line); transition: background .15s; }
.cart-drawer-item:hover { background: var(--cream); }
.cart-drawer-item:last-child { border-bottom: 0; }
.cart-drawer-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--cream); }
.cart-drawer-item h5 { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; line-height: 1.3; }
.cart-drawer-item .qty { font-size: 0.74rem; color: var(--muted); }
.cart-drawer-item .price { font-weight: 700; font-size: 0.88rem; color: var(--green-dark); white-space: nowrap; }
.cart-drawer-empty { text-align: center; padding: 50px 24px; color: var(--muted); }
.cart-drawer-empty svg { width: 48px; height: 48px; color: var(--cream-2); margin: 0 auto 14px; display: block; }
.cart-drawer-foot { padding: 18px 24px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.cart-drawer-foot .summary-row { font-size: 0.95rem; padding: 6px 0; }
.cart-drawer-foot .summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--ink); padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--line); }
.cart-drawer-foot .btn-group { display: flex; gap: 8px; margin-top: 14px; }
.cart-drawer-foot .btn { flex: 1; padding: 13px 16px; font-size: 0.92rem; }
@media (max-width: 720px) {
  .cart-drawer { max-width: 100%; }
  .cart-drawer-foot .btn-group { flex-direction: column-reverse; }
}

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 100px; right: 24px; z-index: 200; background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; box-shadow: var(--shadow-lg); transform: translateY(120%); opacity: 0; transition: all .3s var(--ease); display: flex; align-items: center; gap: 10px; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: var(--danger); }
.toast svg { width: 18px; height: 18px; color: var(--green); }
.toast.error svg { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .banner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .product-grid, .shop-products { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .shop-layout, .cart-layout, .checkout-layout, .account-layout, .doc-layout { grid-template-columns: 1fr; }
  .filters, .summary, .doc-nav, .account-sidebar { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 26px; }
  .doc-content { padding: 30px 28px; }
  .account-stats, .admin-stats { grid-template-columns: repeat(2,1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { height: auto; position: relative; }
  .admin-nav { display: flex; overflow-x: auto; gap: 4px; padding: 0 12px; }
  .admin-nav a { padding: 9px 14px; white-space: nowrap; border-left: 0 !important; border-bottom: 2px solid transparent; }
  .admin-nav a.active { border-left: 0; border-bottom-color: var(--green); padding-left: 14px; }
  .admin-section, .admin-brand { display: none; }
  .nav { display: none; }
}
@media (max-width: 720px) {
  /* Global mobile font scaling */
  html { font-size: 14px; }
  section { padding: 36px 0; }
  /* Consistent gutter so nothing ever touches the device edge */
  .container { padding-inline: 16px; }
  body { padding-left: 0; padding-right: 0; }
  .hero-main, .page-header { padding-left: 16px; padding-right: 16px; }
  .product-page, .shop-layout, .cart-layout, .checkout-layout,
  .account-layout, .doc-layout { padding-left: 0; padding-right: 0; }
  /* Cards that sometimes sit flush at the edges */
  .checkout-form-card, .summary, .account-card, .admin-card,
  .contact-info-card, .contact-form-card { margin-left: 0; margin-right: 0; }
  /* The bottom-sheet filter drawer should still go edge-to-edge inside its own container,
     but its content is padded via its inner rules. */
  h1 { font-size: clamp(1.5rem, 6vw, 2.1rem); }
  h2 { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
  h3 { font-size: 1rem; }
  p { font-size: 0.88rem; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.1em; }
  .btn { font-size: 0.84rem; padding: 11px 18px; }
  .btn-lg { font-size: 0.9rem; padding: 13px 22px; }

  /* Header: hamburger on left, logo center, actions right */
  .header { margin: 6px 8px 0; border-radius: 14px; top: 6px; padding: 0; }
  .header-inner { grid-template-columns: auto 1fr auto; padding: 8px 10px; gap: 8px; }
  .header-inner .logo { justify-self: center; }
  .header-inner .menu-toggle { display: inline-flex !important; width: 38px; height: 38px; }
  .header-inner .nav { display: none; }
  .logo img { height: 36px; }
  .header-actions { gap: 0; }
  .header-actions .icon-account { display: none; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 18px; height: 18px; }
  .topstrip { font-size: .72rem; padding: 6px 0; }

  /* Mobile slide-in menu */
  .nav.open {
    display: flex !important;
    position: fixed; top: 90px; left: 8px; right: 8px; bottom: 70px;
    flex-direction: column; gap: 2px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: 10px; z-index: 99;
    box-shadow: 0 20px 50px -16px rgba(28,36,21,.25);
    overflow-y: auto;
    overscroll-behavior: contain;
    animation: navFadeIn .2s var(--ease);
  }
  @keyframes navFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
  .nav.open .nav-item { width: 100%; border-bottom: 1px solid var(--line); }
  .nav.open .nav-item:last-child { border-bottom: 0; }
  .nav.open .nav-item > a,
  .nav.open .nav-item > button {
    width: 100%; padding: 14px 14px; font-size: 0.95rem;
    justify-content: space-between;
  }
  /* Dropdowns collapsed by default on mobile; open only when nav-item is .open */
  .nav.open .mega-menu {
    position: static; transform: none; min-width: 0;
    opacity: 1; visibility: visible;
    padding: 0 0 8px; margin: 0;
    box-shadow: none; border: 0; border-radius: 0; background: transparent;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.open .nav-item.open .mega-menu {
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav.open .nav-item.open > button .nav-caret { transform: rotate(180deg); }
  .nav.open .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  .nav.open .mega-item { padding: 10px 8px; }
  .nav.open .mega-footer { display: none; }

  .product-grid, .shop-products { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .categories-grid, .values-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .features { grid-template-columns: 1fr 1fr; padding: 18px; gap: 14px; margin-top: -30px; }
  .features .feature { gap: 10px; }
  .features .feature h4 { font-size: 0.85rem; }
  .features .feature p { font-size: 0.74rem; }
  .features .feature-icon { width: 38px; height: 38px; }

  /* Footer hidden on mobile - only bottom nav */
  .footer { display: none; }
  .payments-strip, .footer-bottom { display: none; }

  .hero-main { padding: 36px 0 44px; }
  .hero-main h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-main p.lead { font-size: 0.92rem; }
  .banner, .newsletter, .cta-block { padding: 28px 18px; border-radius: var(--radius); }
  .banner { gap: 18px; grid-template-columns: 1fr; }
  .newsletter h2 { font-size: 1.3rem; }
  .newsletter-form input { font-size: 0.88rem; }

  .form-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 64px 1fr; gap: 10px; }
  .cart-item img { width: 64px; height: 64px; }
  .cart-item h4 { font-size: 0.85rem; }
  .cart-item-total, .cart-item-remove { grid-column: 2; justify-self: start; }

  .whatsapp-float { width: 48px; height: 48px; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  .auth-card { padding: 22px 18px; box-shadow: none; border: 0; background: transparent; backdrop-filter: none; }
  .auth-card h1 { font-size: 1.3rem; }
  .doc-content { padding: 22px 16px; }
  .doc-content h2 { font-size: 1.05rem; }

  /* Product page mobile - balanced gutters, never flush against device edges */
  .product-detail-info h1 { font-size: 1.2rem; }
  .product-detail-info .price-row .current { font-size: 1.3rem; }
  .product-detail-info .desc { font-size: 0.86rem; }
  .product-detail { gap: 22px; padding: 0 14px; }
  .product-page { padding: 18px 0 90px; }
  .product-page > .container { padding-inline: 0; }
  .product-page .product-tabs { padding: 0 14px; }
  .product-trust { grid-template-columns: 1fr; padding: 14px; gap: 8px; }
  .product-trust > div { font-size: 0.78rem; }
  .product-tabs { margin-top: 28px; }
  .tab-list button { padding: 9px 14px; font-size: 0.82rem; }
  .tab-content p { font-size: 0.86rem; line-height: 1.65; }

  /* Sticky Add/Buy bar on single product page */
  .product-actions { display: none; }
  .product-sticky-actions {
    position: fixed; left: 0; right: 0; bottom: 56px; z-index: 88;
    display: flex; gap: 8px; padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(28,36,21,.10);
  }
  .product-sticky-actions .btn { padding: 11px 16px; font-size: 0.85rem; }

  /* Filter drawer (bottom-sheet style, closeable) */
  .filter-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--green-dark); color: #fff; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
  .filters { display: none; }
  .filters.show {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; top: 10vh;
    z-index: 110; overflow-y: auto;
    border-radius: 22px 22px 0 0;
    padding: 70px 18px 100px;
    background: #fff;
    max-height: none;
    box-shadow: 0 -20px 50px -20px rgba(28,36,21,.35);
    animation: filtersUp .25s var(--ease);
  }
  @keyframes filtersUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  /* Mobile sticky header (X) and footer (Show results) */
  .filters.show .filters-mhead {
    display: flex; align-items: center; justify-content: space-between;
    position: fixed; top: 10vh; left: 0; right: 0;
    padding: 12px 18px;
    background: #fff; border-bottom: 1px solid var(--line);
    border-radius: 22px 22px 0 0;
    z-index: 2;
  }
  .filters.show .filters-mfoot {
    display: block; position: fixed; bottom: 0; left: 0; right: 0;
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    background: #fff; border-top: 1px solid var(--line);
    z-index: 2;
  }
  /* Full-screen backdrop behind the bottom-sheet drawer; taps on it close the drawer */
  body.filters-open::before {
    content: ''; position: fixed; inset: 0;
    background: rgba(28,36,21,.45); backdrop-filter: blur(4px);
    z-index: 105;
  }
  body.filters-open { overflow: hidden; }
  body.filters-open .bottom-nav { z-index: 80; }

  /* Hide the desktop hover overlay on mobile entirely; use the inline mobile row instead */
  .product-card .product-actions-hover { display: none !important; }

  /* Inline mobile action row sits OUTSIDE the image area, after product-info,
     so it never competes with the wishlist heart in the top-right of the image. */
  .product-card .product-actions-mobile {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 6px;
    padding: 0 10px 12px;
    margin-top: 4px;
  }
  .product-card .product-actions-mobile .btn-add-icon {
    width: 40px; height: 38px; padding: 0; border-radius: 10px;
    background: var(--cream); color: var(--green-dark);
    border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0;
  }
  .product-card .product-actions-mobile .btn-add-icon svg { width: 18px; height: 18px; }
  .product-card .product-actions-mobile .btn-add-icon:active { background: var(--green-dark); color: #fff; }
  .product-card .product-actions-mobile .btn-buy {
    padding: 9px 8px; font-size: 0.78rem; border-radius: 10px;
  }
  .product-info { padding: 12px 12px 10px; }
  .product-info h3 { font-size: 0.84rem; min-height: 2.4em; line-height: 1.3; }
  .product-info .cat { font-size: 0.62rem; }
  .product-rating { font-size: 0.7rem; margin-bottom: 6px; }
  /* Prices never break across lines */
  .product-price { flex-wrap: nowrap; white-space: nowrap; overflow: hidden; }
  .product-price .current { font-size: 0.92rem; }
  .product-price .old { font-size: 0.74rem; }
  .product-badge { font-size: 0.6rem; padding: 3px 7px; }
  .product-wishlist { width: 30px; height: 30px; }
  .product-wishlist svg { width: 14px; height: 14px; }

  .account-stats, .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-main { padding: 14px 12px; }
  .admin-table { font-size: 0.78rem; }
  .admin-table th, .admin-table td { padding: 8px 6px; }
  .order-list th, .order-list td { padding: 8px 6px; }

  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: 1.25rem; }
  .section-head p { font-size: 0.82rem; }
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(16px); transition: all .55s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.skeleton { background: linear-gradient(90deg, var(--cream) 25%, var(--cream-2) 50%, var(--cream) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.tilt { transition: transform .25s var(--ease); }
.tilt:hover { transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-2px); }
