/* ============================================================
   CANA FLOW — Design System
   Colour palette extracted from Landing Page.png
   ============================================================ */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Surface / Background */
  --bg:            #f8f9fa;
  --surface:       #ffffff;
  --surface-2:     #edeeef;
  --surface-3:     #f3f4f5;
  --surface-high:  #e7e8e9;

  /* Text */
  --text:          #191c1d;
  --text-2:        #44474a;
  --text-3:        #75777a;

  /* Border */
  --border:        #c5c6ca;
  --border-light:  #e1e3e4;

  /* Accent — amber/brown */
  --accent:        #835500;
  --accent-light:  #fcb64f;
  --accent-dark:   #704800;
  --accent-bg:     rgba(131, 85, 0, 0.08);
  --accent-bg2:    rgba(131, 85, 0, 0.14);

  /* Dark surfaces (nav, footer, sections) */
  --dark:          #18181b;
  --dark-2:        #27272a;
  --dark-3:        #3f3f46;
  --dark-text:     #f4f4f5;
  --dark-text-2:   #a1a1aa;
  --dark-border:   #3f3f46;

  /* Forest green (hero featured card) */
  --forest:        #1c3a22;

  /* Error */
  --error:         #ba1a1a;

  /* Radius */
  --r-xs:    2px;
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    12px;
  --r-full:  9999px;

  /* Transitions */
  --ease: 0.2s ease;
}

/* ── DARK MODE OVERRIDES ─────────────────────────────────── */
html.dark {
  --bg:           #18181b;
  --surface:      #27272a;
  --surface-2:    #3f3f46;
  --surface-3:    #2e2e31;
  --surface-high: #52525b;
  --text:         #f4f4f5;
  --text-2:       #d4d4d8;
  --text-3:       #a1a1aa;
  --border:       #52525b;
  --border-light: #3f3f46;
}

/* ── THEME FAB ───────────────────────────────────────────── */
.theme-fab-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18181b;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.theme-fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
html.dark .theme-fab-btn {
  background: #ffffff;
  color: #18181b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.theme-fab-btn .icon {
  font-size: 1.35rem;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 0.65rem 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color var(--ease);
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(131,85,0,0.12); }

/* ── MATERIAL SYMBOLS ────────────────────────────────────── */
.icon {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  user-select: none;
  display: inline-block;
}
.icon--sm  { font-size: 18px; }
.icon--lg  { font-size: 32px; }
.icon--xl  { font-size: 48px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.t-display {
  font-family: 'Noto Serif', serif;
  font-size: clamp(36px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.t-headline-lg {
  font-family: 'Noto Serif', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  line-height: 1.2;
  font-weight: 500;
}
.t-headline-md {
  font-family: 'Noto Serif', serif;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
  font-weight: 500;
}
.t-body-lg  { font-size: 18px; line-height: 1.6; }
.t-body-md  { font-size: 16px; line-height: 1.6; }
.t-body-sm  { font-size: 14px; line-height: 1.5; }
.t-label {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}
.t-muted  { color: var(--text-2); }
.t-faint  { color: var(--text-3); }
.t-accent { color: var(--accent); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section      { padding: 5rem 0; }
.section--sm  { padding: 3.5rem 0; }
.section--lg  { padding: 6rem 0; }
.section--dark {
  background: var(--dark);
  color: var(--dark-text);
}
.section--surface { background: var(--surface-3); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }

.divider { height: 2px; width: 3rem; background: var(--accent); margin: 0.75rem 0 2rem; }
.divider--center { margin-left: auto; margin-right: auto; }

/* ── GRID HELPERS ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn--dark:hover { background: #27272a; }
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-dark); }
.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline-accent:hover { background: var(--accent); color: #fff; }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }
.btn--white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn--white:hover { background: var(--surface-3); }
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--whatsapp:hover { background: #1ebe5d; }
.btn--full { width: 100%; }
.btn--pill { border-radius: var(--r-full); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 11px; }
.btn--lg { padding: 0.875rem 2.5rem; }
.btn[disabled] {
  background: var(--surface-high);
  color: var(--text-3);
  border-color: transparent;
  cursor: not-allowed;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--ease);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.navbar__logo img { height: 36px; width: auto; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  transition: color var(--ease);
}
.navbar__links a:hover { color: var(--text); }
.navbar__links a.is-active {
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.navbar__login {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--ease);
}
.navbar__login:hover { color: var(--text); }
.navbar__cart {
  position: relative;
  color: var(--text);
  transition: opacity var(--ease);
}
.navbar__cart:hover { opacity: 0.7; }
.navbar__cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.navbar__hamburger {
  display: none;
  color: var(--text-2);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.25rem 0;
}
.mobile-nav a.is-active { color: var(--text); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52));
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}
.hero__eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__title {
  color: #fff;
  font-family: 'Noto Serif', serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__desc {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 2.25rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
  margin-top: 72px;
}
.page-header h1 { margin-bottom: 0.375rem; }
.page-header p { color: var(--text-2); }

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 260px;
  margin-top: 72px;
  text-align: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827 0%, #1c1c1e 100%);
}
.page-hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
}
.page-hero__eyebrow {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero__desc { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 480px; margin: 0 auto; }

/* ── WELCOME BAND ────────────────────────────────────────── */
.welcome {
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.welcome h2 { margin-bottom: 1rem; }
.welcome p { color: var(--text-2); max-width: 700px; margin: 0 auto; }

/* ── FEATURED PROMO CARD ─────────────────────────────────── */
.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  min-height: 460px;
  border-radius: var(--r-xs);
  background: var(--forest);
  color: #fff;
}
.promo-card__title  { font-family: 'Noto Serif', serif; font-size: 22px; font-weight: 500; line-height: 1.3; margin-bottom: 1rem; }
.promo-card__desc   { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }
.promo-card__cta    { border-bottom: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 2px; transition: color var(--ease), border-color var(--ease); display: inline-block; margin-top: 2.5rem; }
.promo-card__cta:hover { color: var(--accent-light); border-color: var(--accent-light); }
.promo-card__icon   { position: absolute; bottom: -2rem; right: -2rem; opacity: 0.12; pointer-events: none; font-size: 180px; font-family: 'Material Symbols Outlined'; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* ── BEST SELLERS LAYOUT ─────────────────────────────────── */
.bestsellers-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1.25rem;
}
.bestsellers-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-head__view-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-head__view-all:hover { text-decoration: underline; }

/* ── FILTER PILLS ────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.filter-pill {
  padding: 0.45rem 1.25rem;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  transition: all var(--ease);
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── PRODUCT CARD ────────────────────────────────────────── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease);
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.product-card.is-oos { opacity: 0.9; }

.product-card__media { position: relative; }
.product-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-3);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--text-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-xs);
  z-index: 2;
}
.product-badge--accent {
  left: auto;
  right: 0.75rem;
  background: var(--accent);
  color: #fff;
}

.product-card__oos {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.product-card__oos-label {
  background: var(--dark);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-xs);
}

.product-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}
.stars { color: #f59e0b; font-size: 12px; line-height: 1; }
.rating-text { font-size: 11px; color: var(--text-3); }

.product-card__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 0.5rem;
  flex: 1;
}
.product-card__name.is-oos { color: var(--text-3); }

.product-card__prices {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.price-current  { font-size: 14px; font-weight: 700; color: var(--text); }
.price-original { font-size: 12px; color: var(--text-3); text-decoration: line-through; }
.price-current.is-oos { color: var(--text-3); }

.product-tag {
  display: inline-block;
  font-size: 10px;
  background: var(--surface-3);
  color: var(--text-2);
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-xs);
  margin-bottom: 0.75rem;
  width: fit-content;
}

.weight-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.weight-pill {
  padding: 0.2rem 0.6rem;
  font-size: 10px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  color: var(--text-2);
  transition: all var(--ease);
}
.weight-pill:hover { border-color: var(--accent); color: var(--accent); }
.weight-pill.is-active { border-color: var(--accent); background: var(--accent-bg); color: var(--accent); }
.weight-pill[disabled] { border-color: var(--border-light); color: var(--border); cursor: not-allowed; }

.atc-btn {
  width: 100%;
  background: var(--dark);
  color: #fff;
  padding: 0.625rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
  transition: background var(--ease);
}
.atc-btn:hover { background: #27272a; }
.atc-btn[disabled] { background: var(--surface-high); color: var(--text-3); cursor: not-allowed; }

/* ── PRODUCT GRID ────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── TRUST SECTION ───────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.trust-item { display: flex; align-items: flex-start; gap: 1.25rem; }
.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.trust-item h3 { font-family: 'Noto Serif', serif; font-size: 16px; font-weight: 500; margin-bottom: 0.5rem; }
.trust-item p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── HOW TO ORDER ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  text-align: center;
}
.how-step { position: relative; display: flex; flex-direction: column; align-items: center; }
.how-step__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--dark-text-2);
}
.how-step__connector {
  display: none;
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  right: 0;
  border-top: 1px dashed var(--dark-border);
}
.how-step:not(:last-child) .how-step__connector { display: block; }
.how-step h4 { font-family: 'Noto Serif', serif; font-size: 16px; font-weight: 500; margin-bottom: 0.5rem; color: var(--dark-text); }
.how-step p  { font-size: 14px; color: var(--dark-text-2); line-height: 1.6; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: border-color var(--ease);
}
.why-card:hover { border-color: var(--accent); }
.why-card .icon { font-size: 32px; color: var(--border); margin-bottom: 1.25rem; transition: color var(--ease); }
.why-card:hover .icon { color: var(--accent); }
.why-card h4 { font-family: 'Noto Serif', serif; font-size: 16px; font-weight: 500; margin-bottom: 0.75rem; }
.why-card p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--dark-text);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
}
.footer__brand img { height: 36px; width: auto; margin-bottom: 1.25rem; }
.footer__brand p { font-size: 14px; color: var(--dark-text-2); line-height: 1.7; margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: 0.75rem; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-text-2);
  transition: all var(--ease);
}
.footer__social:hover { border-color: var(--accent); color: var(--accent); }
.footer__col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a { font-size: 14px; color: var(--dark-text-2); transition: color var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 14px; color: var(--dark-text-2); }
.footer__contact-item .icon { color: var(--accent); font-size: 18px; }
.footer__payments { margin-top: 2rem; }
.footer__payments p { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-3); margin-bottom: 0.75rem; }
.footer__payment-logos { display: flex; gap: 0.75rem; }
.footer__payment-logos img { height: 24px; filter: grayscale(1); opacity: 0.4; transition: opacity var(--ease); }
.footer__payment-logos img:hover { opacity: 0.7; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--dark-2);
  font-size: 14px;
  color: var(--dark-text-2);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: var(--dark-text-2); transition: color var(--ease); }
.footer__bottom-links a:hover { color: #fff; }

/* ── SHOP LAYOUT ─────────────────────────────────────────── */
.shop-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
}
.shop-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  padding: 1.25rem;
  position: sticky;
  top: 88px;
}
.sidebar-section { margin-bottom: 1.75rem; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}
.sidebar-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 13px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  color: var(--text-2);
  transition: all var(--ease);
  margin-bottom: 0.25rem;
}
.sidebar-cat-btn:hover { border-color: var(--border); }
.sidebar-cat-btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.sidebar-check { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-check label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
}
.sidebar-check input { width: 14px; height: 14px; cursor: pointer; accent-color: var(--accent); flex-shrink: 0; }
.shop-main { flex: 1; min-width: 0; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-count { font-size: 14px; color: var(--text-2); }
.shop-sort { display: flex; align-items: center; gap: 0.75rem; }
.shop-sort select { width: auto; font-size: 13px; padding: 0.45rem 0.75rem; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  background: var(--surface);
  font-size: 13px;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.page-btn:hover, .page-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.about-img {
  aspect-ratio: 4/3;
  border-radius: var(--r-xs);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-xs);
}
.about-accent-badge strong { display: block; font-size: 22px; font-family: 'Noto Serif', serif; font-weight: 600; line-height: 1; }
.about-accent-badge span  { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }
.about-content p { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 1rem; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  overflow: hidden;
  margin: 4rem 0;
}
.stat-item {
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.stat-num { font-family: 'Noto Serif', serif; font-size: 2.5rem; font-weight: 600; color: var(--accent); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-2); margin-top: 0.35rem; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.mission-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  padding: 2rem;
  text-align: center;
}
.mission-card .icon { font-size: 40px; color: var(--text-3); margin-bottom: 1rem; }
.mission-card h3 { font-family: 'Noto Serif', serif; font-size: 17px; font-weight: 500; margin-bottom: 0.5rem; }
.mission-card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  overflow: hidden;
  text-align: center;
  padding: 1.75rem 1.25rem;
  transition: box-shadow var(--ease);
}
.team-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto 1rem;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar--initials {
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Noto Serif', serif;
}
.team-name { font-weight: 600; font-size: 15px; margin-bottom: 0.2rem; }
.team-role { font-size: 13px; color: var(--accent); margin-bottom: 0.75rem; }
.team-bio  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── BLOG PAGE ───────────────────────────────────────────── */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--surface);
}
.featured-post__img {
  min-height: 320px;
  background: linear-gradient(135deg, #1c3a22, #2d4a2d);
  overflow: hidden;
}
.featured-post__img img { width: 100%; height: 100%; object-fit: cover; }
.featured-post__body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease);
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.blog-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--surface-3);
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.625rem; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.blog-date { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 12px; color: var(--text-3); }
.blog-title {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--text);
  transition: color var(--ease);
  flex: 1;
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.blog-author { display: flex; align-items: center; gap: 0.5rem; font-size: 12px; color: var(--text-3); }
.blog-author__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.blog-read-more { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.04em; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: flex-start;
  padding: 4rem 0;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  padding: 2rem;
  position: sticky;
  top: 88px;
}
.contact-info-card h3 { font-family: 'Noto Serif', serif; font-size: 22px; font-weight: 500; margin-bottom: 0.5rem; }
.contact-info-card > p { font-size: 14px; color: var(--text-2); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-xs);
  background: var(--accent-bg);
  border: 1px solid rgba(131,85,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.2rem; }
.contact-item p  { font-size: 14px; color: var(--text); }
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  padding: 2.5rem;
}
.contact-form-card h2 { margin-bottom: 0.375rem; }
.contact-form-card > p { font-size: 15px; color: var(--text-2); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 0.45rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; text-align: center; padding: 2rem; background: rgba(131,85,0,0.06); border: 1px solid rgba(131,85,0,0.25); border-radius: var(--r-xs); margin-top: 1rem; }
.form-success.is-visible { display: block; }
.form-success__icon { font-size: 40px; margin-bottom: 0.75rem; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--ease);
}
.faq-question:hover { background: var(--surface-3); }
.faq-icon { font-size: 12px; color: var(--text-3); transition: transform var(--ease); flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.25rem 1rem; font-size: 14px; color: var(--text-2); line-height: 1.7; }
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-item.is-open .faq-question { background: var(--surface-3); }

/* ── QUICK LINKS ─────────────────────────────────────────── */
.quick-links { display: flex; flex-direction: column; gap: 0.5rem; }
.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  background: var(--surface-3);
  font-size: 14px;
  color: var(--text-2);
  transition: all var(--ease);
}
.quick-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
}
.newsletter h2 { color: #fff; margin-bottom: 0.75rem; }
.newsletter p  { color: var(--dark-text-2); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.newsletter-form input { max-width: 320px; background: var(--dark-2); border-color: var(--dark-3); color: var(--dark-text); }
.newsletter-form input:focus { border-color: var(--accent); }

/* ── MAP PLACEHOLDER ─────────────────────────────────────── */
.map-placeholder {
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-2);
}
.map-placeholder .icon { font-size: 40px; color: var(--text-3); }

/* ── TOAST ───────────────────────────────────────────────── */
.toast-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: var(--dark);
  color: var(--dark-text);
  border: 1px solid var(--dark-3);
  border-radius: var(--r-xs);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  max-width: 320px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  animation: toastIn 0.3s ease;
  pointer-events: auto;
}
.toast--success { border-left: 3px solid #22c55e; }
@keyframes toastIn { from { transform: translateX(110%); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── AGE GATE ────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.age-gate.is-hidden { display: none; }
.age-gate__box {
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.age-gate__icon { font-size: 3rem; margin-bottom: 1.25rem; }
.age-gate__box h2 { margin-bottom: 0.75rem; }
.age-gate__box p { color: var(--text-2); font-size: 15px; margin-bottom: 2rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.age-gate__disclaimer { font-size: 12px; color: var(--text-3); margin-top: 1.5rem; line-height: 1.6; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.page-body { margin-top: 72px; }

/* ── ADDITIONAL UTILITIES ────────────────────────────────── */
.hidden       { display: none !important; }
.text-center  { text-align: center; }
.t-dark-muted { color: var(--dark-text-2); }
.text-warning { color: var(--error) !important; }

/* ── PAGE HERO VARIANTS ──────────────────────────────────── */
.page-hero--forest .page-hero__bg {
  background: linear-gradient(135deg, #0f1c11 0%, #1c3a22 50%, #111827 100%);
}

/* ── SECTION FOREST ──────────────────────────────────────── */
.section--forest {
  background: var(--forest);
  color: #fff;
  padding: 3.5rem 0;
}

/* ── STICKY FILTER BAR ───────────────────────────────────── */
.sticky-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.875rem 0;
}

/* ── NARROW WRAP (prose / article) ──────────────────────── */
.wrap--prose { max-width: 768px; }

/* ── FORM INPUT ──────────────────────────────────────────── */
.cf-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.cf-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(131,85,0,0.12); }
.cf-input.error { border-color: var(--error); }
.cf-input.error:focus { box-shadow: 0 0 0 3px rgba(186,26,26,0.12); }
textarea.cf-input { resize: vertical; }

/* ── FORM BANNERS ────────────────────────────────────────── */
.form-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-xs);
  margin-bottom: 1.5rem;
  font-size: 14px;
}
.form-banner--success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  color: #15803d;
}
.form-banner--error {
  background: rgba(186,26,26,0.06);
  border: 1px solid rgba(186,26,26,0.25);
  color: var(--error);
}
.form-banner .icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.form-banner__title { font-weight: 600; font-size: 14px; margin-bottom: 0.2rem; }
.form-banner__desc  { font-size: 12px; opacity: 0.9; }

/* ── FIELD ERROR ─────────────────────────────────────────── */
.field-error {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 12px;
  color: var(--error);
  margin-top: 0.375rem;
}

/* ── CHAR COUNT ──────────────────────────────────────────── */
.char-count { font-size: 12px; color: var(--text-3); text-align: right; margin-top: 0.375rem; }
.char-count.is-warning { color: var(--error); }

/* ── SPINNER ─────────────────────────────────────────────── */
.spin { animation: spin 0.8s linear infinite; display: inline-block; vertical-align: middle; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── CATEGORY BADGES ─────────────────────────────────────── */
.cat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-xs);
}
.cat-badge--education { background: #d1fae5; color: #065f46; }
.cat-badge--products  { background: var(--accent-bg2); color: var(--accent); }
.cat-badge--wellness  { background: #dbeafe; color: #1e40af; }
.cat-badge--lifestyle { background: #ede9fe; color: #5b21b6; }
.cat-badge--default   { background: var(--surface-3); color: var(--text-2); }

/* ── BLOG POST PROSE ─────────────────────────────────────── */
.post-body h2 { font-family: 'Noto Serif', serif; font-size: 1.5rem; font-weight: 500; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--text); }
.post-body h3 { font-family: 'Noto Serif', serif; font-size: 1.2rem; font-weight: 500; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--text); }
.post-body p  { margin-bottom: 1.1rem; line-height: 1.75; color: var(--text-2); }
.post-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.post-body li { margin-bottom: 0.4rem; color: var(--text-2); }
.post-body a  { color: var(--accent); text-decoration: underline; }
.post-body em { font-style: italic; }
.post-body strong { font-weight: 600; }

/* ── BLOG POST FIGURE / HERO IMAGE ──────────────────────── */
.post-figure {
  margin-bottom: 2rem;
  border-radius: var(--r-xs);
  overflow: hidden;
}
.post-hero-img { width: 100%; max-height: 480px; object-fit: cover; display: block; }

/* ── BLOG CARD SMALL VARIANT ─────────────────────────────── */
.blog-card__img--sm { height: 160px; }

/* ── BACK LINK ───────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: var(--text-3);
  transition: color var(--ease);
  margin-bottom: 2.5rem;
}
.back-link:hover { color: var(--accent); }

/* ── RELATED POSTS ───────────────────────────────────────── */
.related-section { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border-light); }
.related-section h3 { font-family: 'Noto Serif', serif; font-size: 22px; font-weight: 500; margin-bottom: 2rem; }

/* ── POSTS EMPTY STATE ───────────────────────────────────── */
.posts-empty { text-align: center; padding: 6rem 0; }
.posts-empty .icon { display: block; margin: 0 auto 1rem; }

/* ── MISSION CARD ICON ───────────────────────────────────── */
.mission-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-full);
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  transition: background var(--ease);
}
.mission-card:hover .mission-card__icon { background: var(--accent-bg2); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: block; }
  .bestsellers-grid { grid-template-columns: 1fr; }
  .bestsellers-products { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-sidebar { display: none; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-step__connector { display: none; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero { height: auto; min-height: 520px; padding-top: 72px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { max-width: 100%; width: 100%; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .bestsellers-products { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .age-gate__box { padding: 2rem 1.25rem; }
  .filter-bar { gap: 0.375rem; }
}
