/* ==========================================================================
   Dia Healthy Life — Main Stylesheet
   Primary #2D6A4F | Accent #74C69D | Dark #1B4332 | BG #F8F9F6
   Fonts: Noto Serif Georgian · Noto Sans Georgian
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700&family=Noto+Serif+Georgian:wght@400;600;700;900&display=swap');

/* ── Variables ── */
:root {
  --primary:       #2D6A4F;
  --primary-hover: #245c43;
  --accent:        #74C69D;
  --accent-light:  #B7E4C7;
  --dark:          #1B4332;
  --bg:            #F8F9F6;
  --bg-alt:        #EFF5F1;
  --text:          #1A1F19;
  --muted:         #5A6B58;
  --white:         #ffffff;
  --border:        #D8E6DF;
  --border-light:  #EBF3ED;

  --shadow-xs: 0 1px 4px rgba(27,67,50,.05);
  --shadow-sm: 0 2px 10px rgba(27,67,50,.08);
  --shadow:    0 6px 28px rgba(27,67,50,.11);
  --shadow-lg: 0 16px 56px rgba(27,67,50,.16);
  --shadow-xl: 0 28px 80px rgba(27,67,50,.22);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --nav-h: 72px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     all .3s var(--ease);
  --tf:    all .15s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans Georgian', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem);   font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }
p  { line-height: 1.75; }

/* ── Layout ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 96px 0; }
.section--alt  { background: var(--white); }
.section--dark { background: var(--dark); color: var(--white); }

.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section--dark .section-label { color: var(--accent); }
.text-center { text-align: center; }
.section-title    { margin-bottom: 16px; }
.section-subtitle { font-size: 1.0625rem; color: var(--muted); max-width: 600px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9375rem;
  font-family: inherit;
  transition: var(--t);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(45,106,79,.32);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,106,79,.42);
}
.btn--secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
@media (hover: hover) {
  .btn--secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
  }
}
.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.btn--white:hover { background: var(--bg-alt); transform: translateY(-2px); }
.btn--accent {
  background: var(--accent);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(116,198,157,.4);
}
.btn--accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(116,198,157,.5);
}
.btn--sm  { padding: 10px 20px; font-size: .875rem; }
.btn--lg  { padding: 18px 36px; font-size: 1rem; }
.btn--full{ width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav > .container { height: 100%; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* Transparent-state overrides (white text on dark hero) */
.nav:not(.scrolled) .nav__logo-text { color: var(--white); }
.nav:not(.scrolled) .nav__logo-sub  { color: rgba(255,255,255,.65); }
.nav:not(.scrolled) .nav__link      { color: rgba(255,255,255,.8); }
.nav:not(.scrolled) .nav__link:hover,
.nav:not(.scrolled) .nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.nav:not(.scrolled) .nav__burger span { background: var(--white); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo img { height: 44px; object-fit: contain; }

/* Logo swap: full logo on transparent nav, round logo on white nav */
.nav__logo-transparent { display: block;  width: auto; }
.nav__logo-scrolled    { display: none; }
.nav.scrolled .nav__logo-transparent { display: none; }
.nav.scrolled .nav__logo-scrolled    { display: block; width: 44px; }
.nav__logo-text {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.25;
}
.nav__logo-sub {
  display: block;
  font-family: 'Noto Sans Georgian', sans-serif;
  font-weight: 400;
  font-size: .65rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--tf);
}
.nav__link:hover, .nav__link.active {
  color: var(--primary);
  background: var(--bg-alt);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .875rem;
  transition: var(--tf);
}
.nav__wa:hover { background: #1fba59; transform: translateY(-1px); }
.nav__wa svg { width: 17px; height: 17px; fill: currentColor; }

.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text);
  transition: var(--tf);
  flex-shrink: 0;
}
.nav__cart:hover { background: var(--border); transform: translateY(-1px); }
.nav__cart svg { width: 19px; height: 19px; }
.nav:not(.scrolled) .nav__cart { background: rgba(255,255,255,.14); color: var(--white); }
.nav:not(.scrolled) .nav__cart:hover { background: rgba(255,255,255,.24); }
.nav__cart-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--dark);
  font-size: .6875rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: var(--tf);
}
.nav__cart-badge.show { opacity: 1; transform: scale(1); }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-xs);
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tf);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — dropdown popup */
.nav__drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  left: 12px;
  right: 12px;
  bottom: auto;
  background: var(--white);
  z-index: 99;
  padding: 10px;
  gap: 2px;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h) - 32px);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(27,67,50,.18), 0 2px 8px rgba(27,67,50,.08);
  border: 1px solid var(--border-light);
  /* Hidden by default — animated with opacity + transform */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(.97);
  transform-origin: top center;
  transition: opacity .2s ease, transform .2s ease;
}
.nav__drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.nav__drawer-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--tf);
}
.nav__drawer-link:hover { color: var(--primary); background: var(--bg-alt); }
.nav__drawer-wa {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
}

/* ── Hero (centered) ── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(116,198,157,.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(45,106,79,.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 20%, rgba(45,106,79,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* Logo ring */
.hero__logo-ring {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(116,198,157,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  background: rgba(116,198,157,.06);
  box-shadow: 0 0 100px rgba(116,198,157,.14);
  transition: var(--t);
}
.hero__logo-ring:hover { border-color: rgba(116,198,157,.5); box-shadow: 0 0 130px rgba(116,198,157,.26); }
.hero__logo-ring img { width: 220px; height: 220px; object-fit: contain; }

.hero__brand-tag {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Noto Serif Georgian', Georgia, serif;
}
.error-code {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: clamp(4.5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}
.hero__sub {
  font-size: .9375rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  margin: 0 auto 44px;
  max-width: 540px;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat-num {
  display: block;
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-lbl {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  margin-top: 5px;
}

@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* ── Trust strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }

/* ── Products section ── */
.products-section { background: var(--bg); }
.products-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.products-section__head .section-subtitle { margin: 0 auto; }

/* ── Product Card ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: var(--bg);
  overflow: hidden;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .45s ease;
}
.product-card:hover .product-card__img { transform: scale(1.07); }
.product-card__badge { display: none; }

.product-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.product-card__tag {
  font-size: .6875rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(45,106,79,.08);
  padding: 3px 10px;
  border-radius: 100px;
}
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.product-card__price {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
}
.product-card__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tf);
  flex-shrink: 0;
}
.product-card__btn:hover { background: var(--dark); transform: scale(1.12); }
.product-card__btn svg { width: 18px; height: 18px; fill: currentColor; }
.product-card__actions { display: flex; align-items: center; gap: 8px; }
.product-card__cart-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tf);
  flex-shrink: 0;
}
.product-card__cart-btn:hover { background: var(--accent); transform: scale(1.12); }

/* ── Out-of-stock card ── */
.product-card--oos .product-card__img { filter: grayscale(55%); opacity: .65; }
.product-card--oos:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.product-card--oos .product-card__price { color: var(--muted); }
.product-card__oos-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: #c62828;
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  pointer-events: none;
  z-index: 1;
}

/* ── Product Modal (mobile-first) ── */

/* --- Base = mobile layout --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,31,25,.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 10px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 1320px;
  height: auto;
  max-height: 90vh;
  overflow: hidden;
  display: block;
  transform: translateY(24px) scale(.97);
  transition: transform .3s var(--ease);
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--tf);
  color: var(--muted);
}
.modal__close:hover { background: var(--border); color: var(--text); }
.modal__close svg { width: 18px; height: 18px; fill: currentColor; }

.modal__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  scrollbar-width: none;
}
.modal__scroll::-webkit-scrollbar { display: none; }

.modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  height: auto;
}

.modal__gallery {
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 20px 20px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
.modal__img-main {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.modal__img-main img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }

/* Prev / next buttons — desktop only */
.modal__img-prev,
.modal__img-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  color: var(--muted);
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s, background .2s;
}
.modal__img-main:hover .modal__img-prev,
.modal__img-main:hover .modal__img-next { opacity: 1; }
.modal__img-prev { left: 8px; }
.modal__img-next { right: 8px; }
.modal__img-prev:hover,
.modal__img-next:hover { background: rgba(255,255,255,.75); color: var(--dark); }
.modal__img-prev:disabled,
.modal__img-next:disabled { opacity: 0 !important; pointer-events: none; }

.modal__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.modal__thumbs::-webkit-scrollbar { display: none; }

.modal__swipe-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  flex-shrink: 0;
}
.modal__swipe-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.modal__swipe-dot.active {
  background: var(--primary);
  transform: scale(1.4);
}
.modal__thumb {
  width: 58px; height: 58px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--tf);
  background: var(--white);
}
.modal__thumb.active, .modal__thumb:hover { border-color: var(--primary); }
.modal__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.modal__info {
  padding: 20px 20px 80px;
  display: block;
  overflow: visible;
  min-width: 0;
}

.modal__tab-panels {
  overflow: visible;
  height: auto;
}

/* Scrollable tabs — Georgian labels can be long */
.modal__tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 20px;
}
.modal__tabs::-webkit-scrollbar { display: none; }
.modal__tab-btn {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--tf);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  text-align: center;
}
.modal__tab-btn:hover  { color: var(--primary); }
.modal__tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.modal__tab-panel      { display: none; }
.modal__tab-panel.active { display: block; }

/* Sticky WhatsApp button on mobile */
.modal__actions {
  position: sticky;
  bottom: 0;
  background: var(--white);
  padding: 12px 20px calc(env(safe-area-inset-bottom, 0px) + 12px);
  box-shadow: 0 -4px 20px rgba(27,67,50,.10);
  margin: 0 -20px;
  z-index: 10;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* Quantity stepper + add-to-cart row inside the product modal */
.modal__cart-row { display: flex; align-items: center; gap: 12px; }
.modal__cart-row--hidden { display: none; }
@keyframes cartAddPop {
  0%   { transform: scale(1); background: transparent; color: var(--primary); }
  40%  { transform: scale(1.08); background: var(--primary); color: var(--white); }
  100% { transform: scale(1); background: transparent; color: var(--primary); }
}
.btn--cart-pop { animation: cartAddPop .6s var(--ease); }
.modal__cart-row .btn {
  flex: 1;
  justify-content: center;
  min-width: 0;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  flex-shrink: 0;
}
.qty-stepper__btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--tf);
}
.qty-stepper__btn:hover { background: var(--bg-alt); }
.qty-stepper__val {
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  font-size: .9375rem;
}
.qty-stepper--sm .qty-stepper__btn { width: 28px; height: 28px; font-size: 1rem; }
.qty-stepper--sm .qty-stepper__val { min-width: 22px; font-size: .875rem; }

/* --- Desktop overrides (min-width: 769px) --- */
@media (min-width: 769px) {
  .modal-overlay { align-items: center; padding: 20px; }
  .modal { height: 88vh; max-height: none; display: flex; flex-direction: column; }
  .modal__scroll { overflow: hidden; max-height: none; flex: 1 1 0; min-height: 0; }
  .modal__scroll::-webkit-scrollbar { display: auto; }
  .modal__grid { grid-template-columns: 1fr 1fr; height: 100%; }
  .modal__gallery {
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    padding: 32px;
    overflow-y: auto;
    justify-content: center;
  }
  .modal__thumbs { padding-bottom: 2px; scrollbar-width: auto; }
  .modal__thumbs::-webkit-scrollbar { display: revert; }
  .modal__swipe-dots { display: none; }
  .modal__img-prev, .modal__img-next { display: flex; }
  .modal__info { padding: 40px; display: flex; flex-direction: column; overflow: hidden; }
  .modal__tab-panels { flex: 1; overflow-y: auto; overflow-x: hidden; scrollbar-width: thin; padding-right: 4px; height: auto; }
  .modal__tabs { overflow-x: visible; gap: 2px; }
  .modal__tab-btn { flex: 1; padding: 10px 8px; }
  .modal__actions { position: static; padding: 20px 0 0 0; box-shadow: none; border-radius: 0; background: none; }
}


.modal__cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.modal__name {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.modal__price {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}
.modal__price-note {
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.modal__desc {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}
.modal__stock { display: none; margin-bottom: 20px; }
.modal__stock--oos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff5f5;
  color: #c62828;
  border: 1.5px solid #ffcdd2;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 700;
}
.btn--oos {
  background: var(--border) !important;
  color: var(--muted) !important;
  pointer-events: none;
  cursor: not-allowed;
  opacity: .65;
  box-shadow: none !important;
}

/* Modal tabs */
.modal__tabs {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 20px;
  flex-wrap: nowrap;
}
.modal__tab-btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  transition: var(--tf);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  text-align: center;
}
.modal__tab-btn:hover  { color: var(--primary); }
.modal__tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.modal__tab-panel      { display: none; }
.modal__tab-panel.active { display: block; }

.modal__benefits { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.modal__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text);
}
.modal__benefit-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.modal__benefit-icon svg { width: 11px; height: 11px; fill: var(--white); }

.modal__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

/* Ingredients tab */
.modal__ingredients-body {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.modal__ingredients-note {
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.65;
}

/* How-to-use tab */
.modal__howto { display: flex; flex-direction: column; gap: 10px; }
.modal__howto-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.modal__howto-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8125rem;
  flex-shrink: 0;
}
.modal__howto-text { font-size: .9375rem; color: var(--text); line-height: 1.6; padding-top: 4px; }

/* Quality tab */
.modal__quality { display: flex; flex-direction: column; gap: 8px; }
.modal__quality-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}
.modal__quality-icon { font-size: 1.375rem; flex-shrink: 0; }
.modal__quality-text { font-size: .9375rem; color: var(--text); font-weight: 500; }
.modal__spec {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.modal__spec-lbl {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.modal__spec-val { font-size: .9375rem; font-weight: 600; color: var(--text); }

.modal__actions { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; flex-shrink: 0; }

/* ── Cart panel (reuses .modal-overlay/.modal open-close pattern) ── */
.cart-panel {
  max-width: 480px;
  display: flex;
  flex-direction: column;
}
.cart-panel .modal__scroll {
  padding: 28px 24px calc(env(safe-area-inset-bottom, 0px) + 24px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.cart-panel__title { font-size: 1.4rem; }
.cart-nudge {
  display: none;
  margin: -8px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-lg, 16px);
  background: var(--accent-light);
  color: var(--dark);
  font-size: .875rem;
  line-height: 1.5;
  text-align: center;
}
.cart-nudge.show { display: block; }
.cart-nudge--max {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.cart-panel__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-panel__empty {
  display: none;
  color: var(--muted);
  font-size: .9375rem;
  text-align: center;
  line-height: 1.7;
  padding: 28px 8px;
}
.cart-panel__empty.show { display: block; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.cart-item__img {
  width: 56px; height: 56px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px;
  flex-shrink: 0;
}
.cart-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-item__name {
  font-size: .9375rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price { font-size: .8125rem; color: var(--muted); }
.cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--muted);
  transition: var(--tf);
  flex-shrink: 0;
}
.cart-item__remove:hover { background: #fff5f5; color: #c62828; }
.cart-item--discounted {
  background: var(--accent-light);
  border-color: var(--accent);
}
.cart-item__discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--white);
  padding: 3px 9px;
  border-radius: 999px;
}
.cart-item__qty-tag {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
}
.cart-item__total {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary);
  flex-shrink: 0;
  min-width: 64px;
  text-align: right;
}

.cart-panel__summary {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}
.cart-panel__summary.show { display: flex; }
.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9375rem;
  color: var(--muted);
}
.cart-summary__row--discount {
  display: none;
  color: var(--primary);
  font-weight: 700;
}
.cart-summary__row--discount.show { display: flex; }
.cart-summary__free {
  color: var(--primary);
  font-weight: 700;
}
.cart-summary__row--total {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text);
  padding: 4px 0 6px;
}
.cart-panel__summary .btn { margin-top: 4px; }

@media (min-width: 769px) {
  .cart-panel { max-width: 560px; height: 74vh; }
  .cart-panel .modal__scroll { padding: 36px 40px calc(env(safe-area-inset-bottom, 0px) + 32px); }
  .cart-panel__title { font-size: 1.65rem; }
}

/* ── Why section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border-light);
  transition: var(--t);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
  background: var(--white);
}
.why-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(45,106,79,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.875rem;
  transition: var(--t);
}
.why-card:hover .why-card__icon { background: rgba(45,106,79,.15); }
.why-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.why-card p  { font-size: .9375rem; color: var(--muted); line-height: 1.65; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img img { width: 100%; height: 100%; object-fit: contain; padding: 32px; }
.about__text { font-size: 1.0625rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.about__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about__li { display: flex; align-items: flex-start; gap: 12px; font-size: .9375rem; }
.about__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about__check svg { width: 12px; height: 12px; fill: var(--white); }

/* ── Education / Social ── */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.edu-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}
.edu-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(116,198,157,.3);
  transform: translateY(-5px);
}
.edu-card__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}
.edu-card h3 { font-size: 1.0625rem; color: var(--white); margin-bottom: 10px; }
.edu-card p  { font-size: .9375rem; color: rgba(255,255,255,.58); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.edu-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--accent);
  transition: var(--tf);
}
.edu-card__link:hover { gap: 10px; }
.edu-card__link svg { width: 16px; height: 16px; fill: currentColor; }

/* ── How to order ── */
.howto { background: var(--bg); }
.howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.howto-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(50% / 3 + 16px);
  right: calc(50% / 3 + 16px);
  height: 2px;
  background: var(--accent-light);
  z-index: 0;
}
.howto-card { text-align: center; position: relative; z-index: 1; }
.howto-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 18px rgba(45,106,79,.3);
}
.howto-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.howto-card p  { font-size: .9375rem; color: var(--muted); line-height: 1.65; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color .15s;
}
.faq-btn:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease);
}
.faq-body p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.8;
}

/* ── Contact Section ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--t);
}
.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: var(--accent-light);
}
.contact-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.contact-card p  { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; flex: 1; }

/* ── Newsletter ── */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 88px 0;
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: 12px; }
.newsletter p  { color: rgba(255,255,255,.7); font-size: 1.0625rem; margin-bottom: 36px; }
.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter__input {
  flex: 1;
  padding: 14px 22px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 100px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .9375rem;
  outline: none;
  transition: var(--tf);
}
.newsletter__input::placeholder { color: rgba(255,255,255,.45); }
.newsletter__input:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
}

/* ── Footer ── */
.footer {
  background: #151a14;
  color: rgba(255,255,255,.55);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__logo-wrap img { width: 42px; height: 42px; object-fit: contain; }
.footer__brand-name {
  font-family: 'Noto Serif Georgian', Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}
.footer__brand-sub { font-size: .7rem; color: rgba(255,255,255,.3); }
.footer__desc { font-size: .875rem; line-height: 1.75; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 8px; }
.footer__soc {
  width: 36px; height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tf);
  color: rgba(255,255,255,.45);
}
.footer__soc:hover { background: rgba(255,255,255,.12); color: var(--white); }
.footer__soc svg { width: 17px; height: 17px; fill: currentColor; }
.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: .9375rem; color: rgba(255,255,255,.5); transition: var(--tf); }
.footer__link:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}

/* ── Products page ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(116,198,157,.1), transparent 70%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.0625rem; position: relative; }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid var(--border);
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--tf);
}
.filter-btn:hover { border-color: var(--accent-light); color: var(--primary); }
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  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 4px 22px rgba(37,211,102,.52);
  transition: var(--tf);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.65); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }
.reveal--delay-5 { transition-delay: .5s; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--t);
  max-width: 280px;
}
.toast.show { transform: none; opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .why-grid     { grid-template-columns: 1fr 1fr; }
  .edu-grid     { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__wa span { display: none; }
  .nav__burger { display: flex; }

  .hero__stats { gap: 28px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .howto-grid { grid-template-columns: 1fr; }
  .howto-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; }


  .why-grid { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  .trust-strip__inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 0 4px;
  }
  .newsletter__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .modal__specs  { grid-template-columns: 1fr; }
  .hero__stats   { gap: 24px; }
}
