/* ============================================================
   Moštěnický sirup — glassmorphism redesign
   ============================================================ */

:root {
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --accent: #c93e2c;
  --accent-2: #a52e1f;
  --gold: #f0b63b;
  --gold-2: #d99a1e;
  --ink: #0f1b2e;
  --ink-70: #2a3f5c;
  --text: #1a2332;
  --muted: #5c687a;

  --glass-bg: rgba(255, 255, 255, 0.10);
  --glass-bg-strong: rgba(255, 255, 255, 0.16);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-border-strong: rgba(255, 255, 255, 0.32);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);

  --section-pad: 120px;
  --gap: 28px;
  --maxw: 1240px;
  --radius: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(135deg, #e8eef6 0%, #f5f0e8 50%, #e9edf4 100%);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 62, 44, 0.10), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(240, 182, 59, 0.10), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.06), transparent 60%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- glass utilities ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
}

.glass-panel {
  background: rgba(15, 27, 46, 0.45);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border-radius: var(--radius);
  padding: 44px;
}

.glass-pill {
  display: inline-flex;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--glass-shadow);
}

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink); line-height: 1.12; margin: 0; }
h2.section-title { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.5vw, 28px); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 14px;
}

.lede { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 58ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(201, 62, 44, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 62, 44, 0.45);
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 27, 46, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand img {
  height: 48px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%) drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}
.brand-light img { filter: brightness(0) saturate(100%) invert(92%) sepia(18%) saturate(420%) hue-rotate(347deg) brightness(101%) contrast(94%); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  transition: 0.2s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 27, 46, 0.82) 0%, rgba(15, 27, 46, 0.45) 45%, rgba(15, 27, 46, 0.10) 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;            /* break out of the centered .wrap so the card can hug the left */
  padding: 140px clamp(28px, 7vw, 104px);
}

.hero-content {
  max-width: 520px;           /* narrower + left-anchored: keeps the right-side fruit imagery clear */
  margin-right: auto;
  color: #fff;
}

.hero-flourish {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: block;
}

.hero h1 {
  color: #fff;
  font-size: clamp(44px, 7vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero p {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  margin: 24px 0 36px;
  max-width: 52ch;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.hero-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: 0.25s;
}

.hero-dots button.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

.ratio-badge {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  bottom: clamp(120px, 14vw, 180px);
  z-index: 4;
  width: clamp(130px, 14vw, 180px);
  height: clamp(130px, 14vw, 180px);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(-8deg);
  background: rgba(240, 182, 59, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.ratio-badge b {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  display: block;
  line-height: 1;
  color: var(--gold);
}

.ratio-badge span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.features {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding-bottom: 60px;
}

.features .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  padding: 34px 24px;
  text-align: center;
  color: var(--ink);
  transition: transform 0.25s ease;
}

.feature:hover { transform: translateY(-6px); }

.feature .big {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 48px);
  background: linear-gradient(135deg, var(--accent), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.feature .lbl {
  margin-top: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.feature .sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section.block { padding: var(--section-pad) 0; }
.section-head { max-width: 72ch; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Tighten the oversized vertical gaps above O značce a Sortiment */
#o-znacce { padding-top: 44px; padding-bottom: 56px; }
#sortiment { padding-top: 56px; }

/* O značce */
.brand-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.brand-media {
  position: relative;
  padding: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}

.brand-media img {
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.brand-media .tag {
  position: absolute;
  left: -6px;
  bottom: 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px rgba(201, 62, 44, 0.35);
  font-size: 17px;
}

.brand-info { padding-top: 10px; }

.tabs {
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink);
  transition: 0.2s ease;
}

.tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 27, 46, 0.2);
}

.tab:hover:not([aria-selected="true"]) { background: rgba(15, 27, 46, 0.08); }

.tab-panel {
  display: none;
  animation: fadeUp 0.45s ease;
  padding: 32px;
}

.tab-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.tab-panel h3 { margin-bottom: 14px; }
.tab-panel p { color: var(--text); margin: 0 0 16px; }

.cert-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.cert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.cert .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cert .dot.bio { background: #4a9b5c; }

/* ============================================================
   SORTIMENT
   ============================================================ */
#sortiment { background: rgba(255, 255, 255, 0.35); }

.sort-switch {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.sort-switch button {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink);
  transition: 0.2s ease;
}

.sort-switch button.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 27, 46, 0.2);
}

.range-intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.range-fact {
  padding: 26px;
  transition: transform 0.25s ease;
}

.range-fact:hover { transform: translateY(-5px); }

.range-fact b {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 17px;
}

.range-fact p { margin: 8px 0 0; font-size: 14px; color: var(--muted); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.product {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  padding: 22px 14px 18px;
  text-align: center;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.product .imgwrap {
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.product .imgwrap img {
  max-height: 150px;
  width: auto;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.16));
  transition: 0.3s ease;
}

.product:hover .imgwrap img { transform: scale(1.07) rotate(-1deg); }

.product .name {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.product .new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
}

.sort-view { display: none; }
.sort-view.active { display: block; animation: fadeUp 0.45s ease; }

.gastro-block { padding: 34px; margin-top: 8px; }
.gastro-block + .gastro-block { margin-top: 40px; }
.gastro-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.gastro-head h3 { font-size: 26px; }
.gastro-head .pill {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
}
.gastro-block p.note { color: var(--muted); max-width: 70ch; margin: 0 0 28px; }

/* ============================================================
   MAP — Kde koupíte
   ============================================================ */
.map-section {
  position: relative;
  background: linear-gradient(135deg, #0c1626 0%, #162238 50%, #0f1b2e 100%);
  color: #fff;
  overflow: hidden;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/generated/section-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.map-section .eyebrow { color: var(--gold); }
.map-section h2 { color: #fff; }

.map-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.map-stage {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
}

.map-stage img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  border-radius: var(--radius-sm);
}

.map-hit {
  position: absolute;
  inset: 22px;
  width: calc(100% - 44px);
  height: calc(100% - 44px);
}

.map-hit polygon {
  fill: transparent;
  stroke: transparent;
  cursor: pointer;
  transition: fill 0.15s ease;
  outline: none;
}

.map-hit polygon:hover { fill: rgba(240, 182, 59, 0.28); }
.map-hit polygon.active { fill: rgba(240, 182, 59, 0.18); }

.map-hint {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  margin-top: 22px;
}

.seller-panel {
  padding: 32px;
  min-height: 420px;
}

.seller-panel h3 {
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.seller-panel h3 .gd {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.seller-count {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 8px 0 22px;
}

.seller-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 360px;
  overflow: auto;
}

.seller-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.seller-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.seller-empty {
  background: rgba(240, 182, 59, 0.12);
  border: 1px solid rgba(240, 182, 59, 0.3);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.seller-empty p { margin: 0 0 6px; color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.seller-empty .rep { font-weight: 800; color: var(--gold); }
.seller-empty a { color: #fff; text-decoration: underline; }

/* ============================================================
   KONTAKTY
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-col {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(15, 27, 46, 0.1);
}

.contact-item { margin-bottom: 20px; }
.contact-item .role {
  font-weight: 800;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item .who { font-weight: 700; color: var(--ink); }
.contact-item a {
  color: var(--ink-70);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.contact-item .line { color: var(--muted); font-size: 14px; }

.addr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.addr {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.addr .t {
  font-weight: 800;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.addr p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: rgba(15, 27, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner img { height: 42px; opacity: 0.95; }

.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-nav a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-meta {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 36px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: 1fr; }
  .brand-media { max-width: 560px; margin: 0 auto; }
  .map-layout { grid-template-columns: 1fr; }
  .map-stage { max-width: 600px; margin: 0 auto; }
  .seller-panel { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 920px) {
  .features .wrap { grid-template-columns: 1fr 1fr; }
  .range-intro { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .addr-cards { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 27, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px 28px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a { padding: 14px 16px; }

  .hero-content { padding: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .ratio-badge { display: none; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  :root { --section-pad: 84px; }
  .wrap { padding: 0 20px; }
  .features .wrap { grid-template-columns: 1fr; }
  .range-intro { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product { padding: 16px 10px 14px; }
  .product .imgwrap { height: 120px; }
  .product .imgwrap img { max-height: 120px; }
  .tab-panel { padding: 24px; }
  .gastro-block { padding: 24px; }
  .sort-switch button { padding: 12px 20px; font-size: 14px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-meta { justify-content: center; text-align: center; }
}

@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
