:root {
  --green: #166534;
  --green-2: #15803d;
  --green-dark: #14532d;
  --green-deep: #0f3d24;
  --green-soft: #ecf8ef;
  --gold: #c9a227;
  --gold-soft: #f6ecd0;
  --red: #b91c1c;
  --saffron: #ff9933;
  --india-green: #138808;
  --bg: #ffffff;
  --bg-muted: #f4f6f5;
  --text: #1a1f1c;
  --text-2: #4b5563;
  --text-3: #6b7280;
  --line: #e5e7eb;
  --white: #fff;
  --shadow-sm: 0 1px 2px rgba(15, 61, 36, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 61, 36, 0.1);
  --shadow-lg: 0 18px 40px rgba(15, 61, 36, 0.14);
  --radius: 12px;
  --container: 1220px;
  --header-h: 92px;
  --font: "Plus Jakarta Sans", "Noto Sans Devanagari", system-ui, sans-serif;
  --display: "Lora", "Noto Sans Devanagari", Georgia, serif;
  --transition: 200ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: clip;
  touch-action: manipulation;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button, input, select { font-family: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
  border-radius: 6px;
}
.skip-link:focus { top: 8px; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Sticky chrome + scrolling announcement */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 61, 36, 0.08);
}

.topbar {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  padding-top: env(safe-area-inset-top);
}
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 28px;
  min-height: 38px;
}
.marquee-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

/* Scroll reveal */
html.js .reveal:not(.in) {
  opacity: 0;
  transform: translateY(28px);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--d, 0ms);
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-h);
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold);
}
.brand-text { line-height: 1.15; }
.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.01em;
}
.brand-text span {
  display: block;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search {
  display: flex;
  align-items: stretch;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  height: 46px;
}
.search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.15);
}
.search select {
  border: 0;
  background: #f8faf9;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-right: 1px solid var(--line);
  min-width: 140px;
  outline: none;
  cursor: pointer;
}
.search input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 14px;
  font-size: 14px;
  min-width: 0;
}
.search button {
  width: 52px;
  border: 0;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}
.search button:hover,
.search button:focus-visible { background: var(--green-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  min-height: 44px;
  transition: background var(--transition);
}
.icon-btn:hover,
.icon-btn:focus-visible { background: var(--green-soft); }
.icon-btn svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.icon-btn small { display: block; font-size: 11px; color: var(--text-3); font-weight: 500; }
.icon-btn b { display: block; font-size: 13px; font-weight: 700; }
.icon-btn .badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.cart-wrap { position: relative; }

.menu-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  place-items: center;
}

/* Nav */
.nav {
  background: var(--green);
  color: #fff;
  position: relative;
}
.nav .container {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-dark);
  color: #fff;
  border: 0;
  height: 48px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-btn:hover,
.cat-btn:focus-visible { background: var(--green-deep); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a:focus-visible { background: rgba(255,255,255,0.12); }
.nav-links a.is-active {
  box-shadow: inset 0 -3px 0 #fff;
}

.cat-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-lg);
  z-index: 40;
  padding: 20px 0;
}
.cat-panel.open { display: block; }
.cat-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cat-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.cat-panel a:hover,
.cat-panel a:focus-visible { background: var(--green-soft); }
.cat-panel img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero */
.hero {
  position: relative;
  background: #f3efe6;
  overflow: hidden;
}
.hero-track {
  display: flex;
  transition: transform 450ms ease;
}
.hero-slide {
  min-width: 100%;
  position: relative;
  min-height: 460px;
}
.hero-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,247,240,0.94) 0%, rgba(250,247,240,0.72) 38%, rgba(250,247,240,0.08) 70%);
}
.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-copy .container { max-width: var(--container); }
.hero-kicker {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
}
.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  margin: 0 0 8px;
  color: #3a2a18;
  max-width: 520px;
}
.hero-copy h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #5c4630;
}
.hero-copy p {
  max-width: 440px;
  color: var(--text-2);
  margin: 0 0 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 4px;
  border: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.btn-dark {
  background: #1f2933;
  color: #fff;
}
.btn-dark:hover,
.btn-dark:focus-visible { background: #111827; }
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.9);
  color: var(--green);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.hero-nav:hover { background: #fff; }
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(22,101,52,0.3);
  padding: 0;
}
.hero-dots button.is-active { background: var(--green); }

/* Trust */
.trust {
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 22px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px;
}
.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}
.trust-item b { display: block; font-size: 13px; }
.trust-item span { font-size: 12px; color: var(--text-3); }

/* Sections */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  font-family: var(--display);
  color: var(--green-dark);
}
.section-head a {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.section-head a:hover { text-decoration: underline; }
.center-title {
  text-align: center;
  margin-bottom: 28px;
}
.center-title h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-family: var(--display);
  color: var(--green-dark);
}
.center-title .rule {
  width: 64px;
  height: 4px;
  background: var(--green);
  margin: 0 auto;
  border-radius: 99px;
}

/* Welcome */
.welcome-card {
  position: relative;
  background: #fff;
  padding: 32px 36px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.welcome-card::before,
.welcome-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
}
.welcome-card::before { left: 0; background: linear-gradient(180deg, var(--saffron), #ffb366); }
.welcome-card::after { right: 0; background: linear-gradient(180deg, #3cb043, var(--india-green)); }
.welcome-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.welcome-card h2 {
  margin: 0;
  font-size: 28px;
  color: #111;
}
.welcome-card h3 {
  margin: 6px 0 16px;
  font-size: 26px;
  color: var(--india-green);
}
.welcome-card p {
  margin: 0 0 12px;
  color: #222;
  max-width: 920px;
}
.welcome-card svg { width: 36px; height: 36px; color: #222; }

/* Categories */
.cat-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: start;
}
.cat-item {
  text-align: center;
  cursor: pointer;
}
.cat-item img {
  width: 108px;
  height: 108px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green-2);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cat-item:hover img,
.cat-item:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px var(--green), var(--shadow-md);
}
.cat-item b { display: block; font-size: 13px; }
.cat-item span { font-size: 12px; color: var(--text-3); }
.cat-more {
  width: 56px;
  height: 56px;
  margin: 26px auto 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  border: 0;
}
.cat-more:hover { background: var(--green-dark); }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.product-media {
  position: relative;
  background: #fafafa;
  border-radius: 8px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ribbon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 3px;
}
.wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--text-3);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.wish svg { width: 18px; height: 18px; }
.wish:hover,
.wish.is-on { color: var(--red); }
.add-btn svg { width: 16px; height: 16px; }
.product-card h3 {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
}
.product-card .en {
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 6px;
  min-height: 34px;
}
.stars { color: #e0a100; font-size: 12px; letter-spacing: 1px; }
.stars span { color: var(--text-3); font-weight: 600; margin-left: 4px; letter-spacing: 0; }
.size { font-size: 12px; color: var(--text-3); margin: 4px 0; }
.price {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin: 4px 0 10px;
}
.price s {
  color: var(--text-3);
  font-weight: 500;
  font-size: 12px;
  margin-left: 6px;
}
.add-btn {
  width: 100%;
  margin-top: auto;
  background: var(--green);
  color: #fff;
  border: 0;
  min-height: 40px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
}
.add-btn:hover,
.add-btn:focus-visible { background: var(--green-dark); }
.add-btn[disabled] { opacity: 0.7; cursor: wait; }

/* About */
.about-card {
  background: #fff;
  border: 3px solid var(--green);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 10px 30px rgba(22, 101, 52, 0.18);
}
.about-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.about-card h3 {
  margin: 0;
  font-size: 22px;
  color: #111;
}
.about-card p {
  margin: 0;
  color: #333;
  max-width: 900px;
}
.about-card svg { width: 34px; height: 34px; color: #333; }

/* Testimonials */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.t-card .quote { color: var(--green); margin-bottom: 8px; }
.t-card p { color: var(--text-2); min-height: 88px; }
.t-card b { display: block; }
.t-card small { color: var(--text-3); }

/* Values */
.values {
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 28px 0;
  text-align: center;
}
.values-grid svg { width: 32px; height: 32px; color: var(--green); margin: 0 auto 8px; }
.values-grid b { font-size: 14px; }

/* Newsletter */
.newsletter {
  background: var(--green);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding-block: 36px;
  position: relative;
  z-index: 1;
}
.newsletter h2 { margin: 0 0 8px; font-size: 28px; font-family: var(--display); }
.newsletter p { margin: 0; opacity: 0.92; }
.news-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.news-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  min-width: 0;
}
.news-form button {
  border: 0;
  background: #1f2933;
  color: #fff;
  padding: 0 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.news-form button:hover { background: #111827; }
.newsletter-art {
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
}
.footer .brand img { box-shadow: 0 0 0 2px var(--gold); }
.footer .brand-text strong { color: #fff; }
.footer p { font-size: 14px; color: #9ca3af; }
.footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer a { color: #d1d5db; font-size: 14px; }
.footer a:hover,
.footer a:focus-visible { color: #fff; }
.footer li { margin-bottom: 8px; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1f2937;
  display: grid;
  place-items: center;
  color: #fff;
}
.socials a:hover { background: var(--green); }
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pay {
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.cod {
  margin-top: 10px;
  border: 1px dashed var(--gold);
  color: var(--gold);
  text-align: center;
  padding: 10px 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}

.wa-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 60;
}
.wa-float:hover { transform: translateY(-2px); }

/* Drawer / toast / modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 70;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100%);
  height: 100%;
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 250ms ease;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head, .modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3, .modal-head h3 { margin: 0; }
.icon-close {
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
}
.drawer-body { flex: 1; overflow: auto; padding: 16px; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  margin-bottom: 14px;
}
.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 8px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}
.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #f3f4f6;
}
.qty span { min-width: 28px; text-align: center; font-weight: 700; }
.drawer-foot {
  padding: 16px;
  border-top: 1px solid var(--line);
}
.drawer-foot .row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  margin-bottom: 12px;
}
.empty { text-align: center; color: var(--text-3); padding: 40px 10px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  transition: 200ms ease;
  font-weight: 600;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #fff;
  width: min(420px, calc(100% - 32px));
  border-radius: 16px;
  z-index: 85;
  display: none;
  box-shadow: var(--shadow-xl, var(--shadow-lg));
}
.modal.open { display: block; transform: translate(-50%, -50%) scale(1); }
.modal-body { padding: 18px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
}
.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.15);
}
.form-error { color: var(--red); font-size: 13px; min-height: 18px; }

/* Inner pages */
.page-hero {
  background: var(--green-soft);
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 0 0 6px; font-family: var(--display); color: var(--green-dark); }
.crumb { font-size: 13px; color: var(--text-3); }
.page { padding: 40px 0 64px; }
.prose { max-width: 760px; }
.prose h2 { color: var(--green-dark); }
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 99px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 13px;
  min-height: 40px;
}
.chip.is-on, .chip:hover { background: var(--green); color: #fff; border-color: var(--green); }

.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pdp-img {
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.pdp-img img { width: 100%; aspect-ratio: 1; object-fit: contain; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-row { grid-template-columns: repeat(4, 1fr); }
  .trust-grid, .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter .container { grid-template-columns: 1fr 1fr; }
  .newsletter-art { display: none; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 860px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hide-sm { display: none !important; }
  .menu-toggle { display: grid; }

  .header-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "search search";
    gap: 10px 12px;
    min-height: 0;
    padding-block: 10px;
  }
  .brand { grid-area: brand; min-width: 0; }
  .brand img { width: 48px; height: 48px; }
  .brand-text strong { font-size: 18px; }
  .brand-text span {
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 46vw;
  }
  .header-actions { grid-area: actions; gap: 2px; }
  .icon-btn { padding: 8px; }
  .search { grid-area: search; width: 100%; height: 44px; }
  .search select { min-width: 0; max-width: 118px; font-size: 12px; padding: 0 8px; }
  .search input { font-size: 16px; }

  .nav {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: min(70dvh, 560px);
    overflow: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
    box-shadow: var(--shadow-lg);
  }
  .nav.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav .container {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
  .nav-links { flex-direction: column; width: 100%; }
  .nav-links a { width: 100%; }
  .cat-btn { width: 100%; justify-content: center; }
  .cat-panel {
    position: relative;
    top: 0;
    box-shadow: none;
    padding: 0 0 12px;
  }
  .cat-panel.open { display: block; }

  .hero-slide, .hero-slide img { min-height: 420px; height: 420px; }
  .hero-slide::after {
    background: linear-gradient(180deg, rgba(250,247,240,0.12) 0%, rgba(250,247,240,0.92) 58%);
  }
  .hero-copy {
    align-items: flex-end;
    padding-bottom: 48px;
  }
  .hero-copy h1 { font-size: 28px; max-width: none; }
  .hero-copy h2 { font-size: 16px; }
  .hero-copy p { font-size: 15px; max-width: none; }
  .hero-nav { width: 40px; height: 40px; }
  .hero-nav.prev { left: 8px; }
  .hero-nav.next { right: 8px; }

  .section { padding: 36px 0; }
  .section-head { margin-bottom: 18px; }
  .section-head h2, .center-title h2 { font-size: 24px; }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
    gap: 4px;
  }
  .trust-item { padding: 8px 4px; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .cat-row {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cat-row::-webkit-scrollbar { display: none; }
  .cat-item { flex: 0 0 92px; scroll-snap-align: start; }
  .cat-item img { width: 84px; height: 84px; }
  .cat-more { flex: 0 0 56px; margin: 14px 8px 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { padding: 8px 8px 10px; }
  .product-card h3, .product-card .en { font-size: 12px; }
  .product-card .en { min-height: 32px; }
  .add-btn { font-size: 11px; letter-spacing: 0.03em; min-height: 40px; }

  .t-grid, .pdp, .cat-panel-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid, .newsletter .container { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .news-form input { font-size: 16px; min-height: 44px; }
  .news-form button { min-height: 44px; }
  .welcome-card, .about-card { padding: 20px 18px 20px 24px; }
  .welcome-card h2, .welcome-card h3 { font-size: 22px; }
  .filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; scrollbar-width: none; }
  .chip { flex: 0 0 auto; }
  .footer { padding-bottom: 80px; }
  .drawer { width: 100%; }
  .page { padding: 24px 0 48px; }
  .page-hero { padding: 24px 0; }
}

@media (max-width: 520px) {
  .trust-grid, .values-grid { grid-template-columns: 1fr; }
  .search select { display: none; }
  .hero-slide, .hero-slide img { min-height: 460px; height: 460px; }
  .product-grid { gap: 8px; }
  .price { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  html.js .reveal:not(.in),
  html.js .reveal.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
