/* Jani Life — design tokens. Every visual value derives from these. */
:root {
  --bg: #faf6ee;
  --bg-alt: #f3ecdf;
  --ink: #22302a;
  --ink-soft: #55625b;
  --green: #2e5339;
  --green-deep: #1f3c29;
  --orange: #e8722a;
  --orange-deep: #c75b1e;
  --cream: #fdfbf6;
  --line: #e2d9c8;

  --font-body: "Manrope", "Noto Sans Georgian", system-ui, sans-serif;
  --font-display: "Archivo", "Noto Sans Georgian", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-doc: 4px;
  --shadow: 0 18px 50px -20px rgba(34, 48, 42, 0.28);
  --wrap: 1160px;
  --section-pad: clamp(4rem, 9vw, 7rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: 820px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1rem;
}
.kicker-light { color: #f4b489; }
.section { padding: var(--section-pad) 0; }
.section-sub { color: var(--ink-soft); max-width: 56ch; margin-bottom: 2rem; }
.prose p + p { margin-top: 1em; }
.prose { color: var(--ink-soft); }

/* ---------- top bar ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
.topbar.is-scrolled {
  background: rgba(31, 60, 41, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.4);
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 4px 14px rgba(0,0,0,0.25); }
.brand-text {
  font-family: var(--font-display);
  white-space: nowrap;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
}
.brand-text em { font-style: italic; color: var(--orange); }
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--orange); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
}
.lang-link {
  padding: 0.32rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s;
}
.lang-link:hover { color: #fff; }
.lang-link.is-active { background: var(--orange); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--green-deep);
  padding: 0.5rem 1.5rem 1.25rem;
}
.mobile-nav .nav-link { padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav.is-open { display: flex; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 34, 26, 0.55), rgba(20, 34, 26, 0.15) 40%, rgba(20, 34, 26, 0.65)),
    linear-gradient(100deg, rgba(20, 34, 26, 0.72) 0%, rgba(20, 34, 26, 0.25) 55%, transparent 80%);
}
.hero-inner { position: relative; padding-top: 6rem; padding-bottom: 4rem; max-width: var(--wrap); width: 100%; }
.hero-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  max-width: 14ch;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  max-width: 52ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(232, 114, 42, 0.7);
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.btn-lg { padding: 1rem 2.3rem; font-size: 1.02rem; }

/* ---------- badges ---------- */
.badges { background: var(--green-deep); color: #fff; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.badge-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.badge h3 { font-size: 1.12rem; margin-bottom: 0.4rem; font-family: var(--font-body); font-weight: 800; }
.badge p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.72); }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- products ---------- */
.products { background: var(--cream); }
.products-list { display: grid; gap: clamp(2.5rem, 5vw, 4rem); margin-top: 2.5rem; }
.product {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.product.is-flipped .product-media { order: 2; }
.product-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.product-season {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.product h3 { margin-bottom: 0.6rem; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.product p { color: var(--ink-soft); }
.varieties { margin-top: 1.1rem; border-top: 1px solid var(--line); }
.varieties summary {
  cursor: pointer;
  padding: 0.85rem 0;
  font-weight: 700;
  color: var(--green);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.varieties summary::-webkit-details-marker { display: none; }
.varieties summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.2s;
}
.varieties[open] summary::after { transform: rotate(45deg); }
.varieties ul { padding-bottom: 1rem; display: grid; gap: 0.5rem; }
.varieties li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.varieties li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- production ---------- */
.production-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 1rem;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gallery-item img {
  border-radius: var(--radius-sm);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:nth-child(2), .gallery-item:nth-child(4) { transform: translateY(1.4rem); }

/* ---------- export ---------- */
.export { background: var(--green-deep); color: #fff; }
.export h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.export-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.export-intro { color: rgba(255, 255, 255, 0.82); max-width: 54ch; font-size: 0.98rem; }
.export-outro {
  color: rgba(255, 255, 255, 0.62);
  max-width: 54ch;
  font-size: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* terms of carriage, set as a specification table rather than headline figures */
.export-stats { margin: 1.75rem 0; }
.export-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.export-stat:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.export-stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}
.export-stat-value {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* the document register: a printed form, not a feature card */
.export-card {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-doc);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.55);
}
.export-card-title {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.export-card-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.doc-list { display: grid; counter-reset: doc; }
.doc-list li {
  counter-increment: doc;
  position: relative;
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.4rem;
  padding: 0.8rem 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.doc-list li:last-child { border-bottom: 0; }
.doc-list li::before {
  content: counter(doc, decimal-leading-zero);
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  padding-top: 0.1em;
}

/* ---------- faq ---------- */
.faq-list { display: grid; gap: 0.9rem; margin-top: 2rem; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.4rem;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--orange);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.2rem; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.contact-value { font-weight: 600; word-break: break-word; }

/* ---------- footer ---------- */
.footer { background: var(--green-deep); color: rgba(255, 255, 255, 0.8); padding: 3rem 0; text-align: center; }
.footer-inner { display: grid; gap: 0.8rem; justify-items: center; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.footer-legal { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }


/* ---------- product pages ---------- */
.product-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--orange-deep);
  border-bottom: 1.5px solid rgba(232, 114, 42, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.product-link::after { content: " \2192"; }
.product-link:hover { color: var(--orange); border-color: var(--orange); }

.product-hero {
  position: relative;
  min-height: min(58vh, 480px);
  min-height: min(58svh, 480px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.product-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20, 34, 26, 0.72) 0%, rgba(20, 34, 26, 0.3) 45%, rgba(20, 34, 26, 0.82) 100%);
}
.product-hero-inner { position: relative; padding-top: 7rem; padding-bottom: 3rem; width: 100%; }
.product-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 0.6rem; }
.back-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.back-link::before { content: "\2190  "; }
.back-link:hover { color: #fff; }
.product-hero-season { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); }
.product-hero-season span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 0.5rem;
}

.product-detail-grid > *, .product-cta-inner > *, .export-grid > *, .about-grid > * { min-width: 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.product-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.detail-title {
  font-size: 1.3rem;
  margin: 2.2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.detail-list { display: grid; gap: 0.7rem; }
.detail-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-soft);
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.why-card {
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  position: sticky;
  top: 5.5rem;
}
.why-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4b489;
  margin-bottom: 1.2rem;
}

.product-cta { background: var(--bg-alt); }
.product-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.product-cta p { color: var(--ink-soft); max-width: 46ch; margin-bottom: 1.8rem; }
.other-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.other-product { display: grid; gap: 0.6rem; text-align: center; }
.other-product img {
  border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.other-product span { font-weight: 700; font-size: 0.92rem; overflow-wrap: anywhere; }
.other-product:hover img { transform: translateY(-3px); }


/* ---------- product gallery ---------- */
.product-gallery-section { padding-top: 0; }
.detail-title-flush { margin-top: 0; }
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 1rem;
}
.product-gallery-item { overflow: hidden; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.product-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-gallery-item:hover img { transform: scale(1.04); }

/* ---------- contact map ---------- */
.map-wrap { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.map-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1rem;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--cream);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  border: 0;
}


/* ---------- product videos ---------- */
.product-video-section { padding-top: 0; }
.product-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 320px));
  gap: 1.4rem;
}
.product-video video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: #000;
  display: block;
}
.product-video figcaption {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .topbar { background: rgba(31, 60, 41, 0.92); backdrop-filter: blur(10px); }
  .about-grid, .production-grid, .contact-grid, .export-grid, .product-detail-grid,
  .product-cta-inner, .product, .product.is-flipped { grid-template-columns: 1fr; }
  .why-card { position: static; }
  .product.is-flipped .product-media { order: 0; }
  .about-media { order: -1; }
  .about-media img { aspect-ratio: 16 / 10; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(4) { transform: none; }
  /* centred hero content gets clipped behind the fixed bar once the copy is
     long (Georgian runs longest), so flow it from the top instead */
  .hero { align-items: flex-start; }
  .hero h1 { max-width: none; }  /* the 14ch measure forces mid-word breaks on phones */
  .hero-inner { padding-top: 6.75rem; padding-bottom: 3.5rem; }
  .product-hero-inner { padding-top: 6.5rem; }

  /* touch targets: everything tappable gets at least ~44px of height */
  .lang-link { padding: 0.62rem 0.8rem; }
  .nav-toggle { padding: 14px 10px; }
  .mobile-nav .nav-link { padding: 0.85rem 0; }
  .product-link { padding: 0.55rem 0; margin-top: 0.6rem; }
  .back-link { padding: 0.72rem 0; margin-bottom: 0.6rem; }
  .contact-card { padding: 1.05rem 1.3rem; }
  .faq-item summary, .varieties summary { padding-top: 1.15rem; padding-bottom: 1.15rem; }
}

@media (max-width: 600px) {
  h2 { font-size: 1.62rem; }
  .product-hero h1 { font-size: 2rem; }
  .detail-title { font-size: 1.15rem; }
  .other-product span { font-size: 0.8rem; }
  .export-stats { grid-template-columns: 1fr; gap: 1.1rem; }
  .doc-list li { padding-left: 1.8rem; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.95rem; }
  .hero-kicker { font-size: 0.75rem; letter-spacing: 0.14em; }
  .product-hero h1 { font-size: 1.8rem; }
  /* small phones: the top bar has to fit logo + wordmark + 3 languages + menu */
  .wrap { padding-left: 1rem; padding-right: 1rem; }
  .topbar-inner { gap: 0.6rem; }
  .brand { gap: 0.5rem; }
  .brand-text { font-size: 1.05rem; }
  .lang-link { padding: 0.62rem 0.5rem; font-size: 0.74rem; }
  .nav-toggle { padding: 14px 4px; }
}

@media (max-width: 480px) {
  .badges-grid { gap: 1.4rem; }
  .hero-ctas { gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .product-cta .btn-lg, .contact .btn-lg { width: 100%; text-align: center; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-text { font-size: 1.18rem; }
  .lang-link { padding: 0.62rem 0.62rem; font-size: 0.76rem; }
  .other-products { gap: 0.6rem; }
  .gallery { gap: 0.7rem; }
}
