/* ============================================================
   Moštěnický sirup — DeepSeek V4 Pro Glassmorphism Redesign
   Design: multi-color ambient background, glass cards,
   backdrop-filter blur, Fraunces + Manrope typography
   ============================================================ */

:root {
  --ink: #16365f;
  --ink-deep: #0a1e3d;
  --ink-light: #2a5080;
  --red: #c41d49;
  --red-dark: #9c0f32;
  --gold: #ffc44d;
  --gold-soft: #ffe4a0;
  --green: #4c8d45;
  --text: #1a1e2b;
  --muted: #5a6170;
  --glass: rgba(255, 255, 255, 0.28);
  --glass-strong: rgba(255, 255, 255, 0.52);
  --glass-border: rgba(255, 255, 255, 0.44);
  --glass-border-strong: rgba(255, 255, 255, 0.62);
  --shadow-sm: 0 4px 20px rgba(10, 30, 60, 0.08);
  --shadow: 0 18px 60px rgba(10, 30, 60, 0.12);
  --shadow-lg: 0 32px 80px rgba(10, 30, 60, 0.16);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 36px;
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;
  --maxw: 1220px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.64;
  color: var(--text);
  background: linear-gradient(145deg, #fff8ec 0%, #faead2 18%, #fcd5ce 36%, #f8e1d9 52%, #e8f0fa 68%, #f0f4f8 84%, #fff8ec 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================================
   AMBIENT BACKGROUND
   ============================================================ */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
  animation: ambientFloat 24s ease-in-out infinite alternate;
}

.ambient span:nth-child(1) {
  width: 520px; height: 520px;
  background: #ff7a9e;
  left: -10%; top: 5%;
  animation-delay: 0s;
  animation-duration: 28s;
}

.ambient span:nth-child(2) {
  width: 460px; height: 460px;
  background: #ffb347;
  right: -8%; top: 18%;
  animation-delay: -6s;
  animation-duration: 22s;
}

.ambient span:nth-child(3) {
  width: 580px; height: 580px;
  background: #7ec8f8;
  left: 35%; top: 55%;
  animation-delay: -12s;
  animation-duration: 30s;
}

.ambient span:nth-child(4) {
  width: 400px; height: 400px;
  background: #c4e88a;
  right: 20%; bottom: -8%;
  animation-delay: -18s;
  animation-duration: 26s;
}

.ambient span:nth-child(5) {
  width: 340px; height: 340px;
  background: #e8a4d8;
  left: 12%; bottom: 15%;
  animation-delay: -3s;
  animation-duration: 32s;
}

@keyframes ambientFloat {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.08); }
  50% { transform: translate(-20px, 20px) scale(0.94); }
  75% { transform: translate(-35px, -15px) scale(1.05); }
  100% { transform: translate(25px, 10px) scale(0.97); }
}

/* ============================================================
   GLASS CARD — core glassmorphism mixin
   ============================================================ */
.glass-card {
  background: linear-gradient(140deg, var(--glass-strong), var(--glass));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: var(--radius);
}

.glass-card.inner {
  background: linear-gradient(140deg, rgba(255,255,255,0.35), rgba(255,255,255,0.14));
  border: 1px solid rgba(255,255,255,0.36);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  background: rgba(255, 248, 236, 0.38);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: background 0.35s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  padding: 7px 18px;
  box-shadow: 0 10px 30px rgba(22, 54, 95, 0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}

.brand:hover {
  box-shadow: 0 14px 36px rgba(22, 54, 95, 0.16);
  transform: translateY(-1px);
}

.brand img { height: 44px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink-deep);
}

.lang {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid rgba(22, 54, 95, 0.15);
}

.lang a {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 8px;
}

.lang a.active {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.5);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  visibility: hidden;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-bg {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
}

/* Theme: Berry (red/pink) */
.slide[data-theme="berry"] .slide-bg {
  background: linear-gradient(135deg, #ff6b8a 0%, #e8435c 25%, #c41d49 55%, #8b1040 100%);
}

/* Theme: Citrus (orange/yellow) */
.slide[data-theme="citrus"] .slide-bg {
  background: linear-gradient(135deg, #ffb347 0%, #f59f00 25%, #e8890c 55%, #c46e00 100%);
}

/* Theme: Forest (green/mint) */
.slide[data-theme="forest"] .slide-bg {
  background: linear-gradient(135deg, #69c47e 0%, #3d9e57 25%, #2d7a42 55%, #1a4e28 100%);
}

/* Theme: Navy (deep blue) */
.slide[data-theme="navy"] .slide-bg {
  background: linear-gradient(135deg, #4a8fd4 0%, #2a5f9e 25%, #16365f 55%, #0a1e3d 100%);
}

.slide-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(40px, 7vw, 80px);
  padding-bottom: clamp(50px, 8vw, 90px);
  min-height: 580px;
}

.hero-copy {
  padding: clamp(28px, 4vw, 48px);
  color: var(--text);
}

.hero-flourish {
  font-family: var(--font-script);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--gold-soft);
  line-height: 0.9;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-copy p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px;
  max-width: 50ch;
  line-height: 1.6;
}

.hero-copy strong {
  color: var(--gold);
  font-weight: 700;
}

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

.hero-visual,
.hero-duo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px);
  min-height: 360px;
  text-align: center;
  position: relative;
}

.hero-visual img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.22));
  transition: transform 0.4s ease;
}

.hero-visual:hover img {
  transform: scale(1.05) rotate(-1deg);
}

.hero-duo {
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-duo img {
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 20px 36px rgba(0,0,0,0.22));
  transition: transform 0.4s ease;
}

.hero-duo img:hover {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--ink-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  white-space: nowrap;
}

.visual-note {
  margin-top: 16px;
  text-align: center;
}

.visual-note b {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

.visual-note span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.slider-prev,
.slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-family: serif;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.08);
}

.dots {
  display: flex;
  gap: 10px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.dots button.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14.5px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 28px rgba(196, 29, 73, 0.3);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(196, 29, 73, 0.4);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.glass-strip {
  background: rgba(22, 54, 95, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

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

.feature {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(22, 54, 95, 0.08);
  transition: background 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.25);
}

.feature:last-child { border-right: 0; }

.feature-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.feature .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--red);
  line-height: 1;
}

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

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

/* ============================================================
   SECTIONS
   ============================================================ */
section.block {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-head {
  max-width: 70ch;
  margin-bottom: 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

h2.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--muted);
  max-width: 58ch;
  margin-top: 12px;
}

.lede a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   O ZNAČCE
   ============================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.brand-media {
  position: relative;
  overflow: hidden;
  padding: 8px;
}

.brand-media img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

.brand-media .tag {
  position: absolute;
  left: -4px;
  bottom: 28px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

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

.tab {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid rgba(22, 54, 95, 0.16);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  transition: all 0.2s ease;
}

.tab:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.tab[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.tab-panel {
  display: none;
  padding: 28px;
  animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
}

.tab-panel p {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 15.5px;
}

.cert-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(22, 54, 95, 0.12);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.cert.bio .dot { background: var(--green); }

/* ============================================================
   SORTIMENT
   ============================================================ */
.products-block {
  position: relative;
}

.sort-switch.tiny {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0 auto 42px;
  padding: 6px;
  border-radius: 999px;
  max-width: fit-content;
}

.sort-switch button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--ink);
  transition: all 0.2s ease;
}

.sort-switch button.active {
  background: var(--ink);
  color: #fff;
}

.sort-switch button:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

.sort-view {
  display: none;
}

.sort-view.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.range-fact {
  padding: 22px;
  text-align: center;
}

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

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

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

.product {
  background: linear-gradient(150deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.44);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 24px 16px 18px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.7);
}

.product .imgwrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product .imgwrap img {
  max-height: 140px;
  width: auto;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.16));
  transition: transform 0.3s ease;
}

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

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

.product .new {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(196, 29, 73, 0.3);
}

.product.bio .name::after {
  content: " BIO";
  color: var(--green);
  font-size: 11px;
  vertical-align: super;
}

.gastro-block {
  margin-top: 8px;
}

.gastro-block + .gastro-block {
  margin-top: 60px;
}

.gastro-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.gastro-head h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
}

.gastro-head .pill {
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 999px;
}

.gastro-block p.note {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 24px;
  font-size: 15px;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  position: relative;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(22,54,95,0.06), rgba(22,54,95,0.12));
  pointer-events: none;
  z-index: 0;
}

.map-section .wrap {
  position: relative;
  z-index: 1;
}

.map-section .eyebrow {
  color: var(--red);
}

.map-section h2 {
  color: var(--ink);
}

.map-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: 44px;
}

.map-card {
  padding: 24px;
}

.map-stage {
  position: relative;
}

.map-stage img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.map-hit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.map-hit polygon:hover {
  fill: rgba(255, 196, 77, 0.28);
}

.map-hit polygon.active {
  fill: rgba(255, 196, 77, 0.16);
}

.map-hint {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

.seller-panel {
  padding: 28px;
}

.seller-panel h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  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(--red);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 6px 0 20px;
}

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

.seller-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(22, 54, 95, 0.08);
  font-size: 14.5px;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

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

.seller-empty {
  background: rgba(255, 196, 77, 0.14);
  border: 1px solid rgba(255, 196, 77, 0.3);
  border-radius: 12px;
  padding: 18px;
}

.seller-empty p {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 14px;
}

.seller-empty .rep {
  font-weight: 800;
  color: var(--red);
}

.seller-empty a {
  color: var(--ink);
  text-decoration: underline;
}

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

.contact-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(22, 54, 95, 0.12);
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item .role {
  font-weight: 800;
  font-size: 12.5px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-item .who {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.contact-item a {
  color: var(--ink-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 14px;
}

.contact-item .line {
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

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

.addr {
  background: linear-gradient(140deg, rgba(255,255,255,0.52), rgba(255,255,255,0.22));
  border: 1px solid rgba(255,255,255,0.44);
  border-left: 4px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(22, 54, 95, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding: 52px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.brand-light img {
  height: 38px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(13%) sepia(44%) saturate(1170%) hue-rotate(183deg) brightness(20%) contrast(97%);
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid rgba(22, 54, 95, 0.1);
  padding-top: 22px;
  width: 100%;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 960px) {
  .slide-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual,
  .hero-duo {
    min-height: 280px;
  }

  .hero-visual img,
  .hero-duo img {
    max-height: 220px;
  }

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

  .brand-media {
    max-width: 560px;
    margin: 0 auto;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

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

  .range-intro {
    grid-template-columns: repeat(2, 1fr);
  }

  .features .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2n) {
    border-right: 0;
  }

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

@media (max-width: 780px) {
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    border-radius: var(--radius);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.6);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 18px;
    border-radius: 16px;
  }

  .lang {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(22, 54, 95, 0.1);
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-visual,
  .hero-duo {
    min-height: 240px;
    padding: 20px;
  }

  .hero-visual img,
  .hero-duo img {
    max-height: 180px;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 18px;
  }

  .slide-grid {
    padding-top: 32px;
    padding-bottom: 80px;
  }

  .hero-copy {
    padding: 28px 22px;
    border-radius: var(--radius-sm);
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .features .wrap {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 54, 95, 0.08);
    padding: 28px 20px;
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .range-intro {
    grid-template-columns: 1fr;
  }

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

  .product {
    padding: 18px 10px 14px;
  }

  .product .imgwrap {
    height: 110px;
  }

  .product .imgwrap img {
    max-height: 110px;
  }

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

  .addr-cards {
    grid-template-columns: 1fr;
  }

  .sort-switch.tiny {
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius);
  }

  .sort-switch button {
    width: 100%;
    text-align: center;
  }

  .gastro-head {
    flex-direction: column;
    gap: 6px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  section.block {
    padding: 60px 0;
  }

  .footer-meta {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .slider-controls {
    bottom: 16px;
  }

  .hero-duo {
    flex-direction: column;
  }
}

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 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;
  }

  .ambient span {
    animation: none;
  }
}

/* Scrollbar */
.seller-list::-webkit-scrollbar {
  width: 5px;
}

.seller-list::-webkit-scrollbar-track {
  background: rgba(22, 54, 95, 0.04);
  border-radius: 10px;
}

.seller-list::-webkit-scrollbar-thumb {
  background: rgba(22, 54, 95, 0.18);
  border-radius: 10px;
}
