/* ==========================================================================
   WINEPLEASE POLSKA - DARK LUXURY SOMMELIER DESIGN SYSTEM
   Inspirowany włoskim kunsztem inżynieryjnym, kulturą winiarską i luksusem
   Obsługa strony głównej oraz wszystkich dedykowanych podstron produktowych
   ========================================================================== */

:root {
  /* Dark Luxury Wine Cellar Color Palette */
  --bg-page: #080a0f;
  --bg-page-alt: #0c0f16;
  --bg-surface: #101520;
  --bg-surface-elevated: #151c2a;
  
  --bg-glass: rgba(16, 22, 33, 0.75);
  --bg-glass-card: rgba(20, 28, 42, 0.65);
  --bg-glass-hover: rgba(28, 38, 56, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-active: #c5a880;
  --border-wine: rgba(139, 30, 50, 0.4);

  /* Wine & Tuscan Accents */
  --color-wine: #8b1e32;
  --color-wine-bright: #b82b43;
  --color-wine-glow: rgba(184, 43, 67, 0.28);
  --color-wine-deep: #540f1d;
  
  --color-gold: #c5a880;
  --color-gold-bright: #dfc199;
  --color-gold-glow: rgba(197, 168, 128, 0.25);
  --color-amber: #d49a55;

  /* Legacy color aliases for subpages */
  --color-navy: #162d4c;
  --color-terracotta: #b82b43;

  /* Typography Colors */
  --text-main: #f5f6f8;
  --text-secondary: #9ea9bc;
  --text-muted: #647287;
  --text-light: #ffffff;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* 8px Spacing Grid */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;

  /* Radii */
  --radius-card: 20px;
  --radius-card-sm: 12px;
  --radius-pill: 9999px;

  /* Ambient Shadows & Glows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 10px 32px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 24px var(--color-wine-glow);
  --shadow-glow-wine: 0 0 35px var(--color-wine-glow);
  --shadow-glow-gold: 0 0 30px var(--color-gold-glow);

  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-drawer: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-page);
  color: var(--text-main);
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 30, 50, 0.15), transparent 70%),
    radial-gradient(circle at 100% 30%, rgba(197, 168, 128, 0.05), transparent 50%),
    radial-gradient(circle at 0% 70%, rgba(139, 30, 50, 0.08), transparent 50%);
  background-attachment: fixed;
}

body.drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.accent-wine { color: var(--color-wine-bright); }
.accent-gold { color: var(--color-gold); }
.accent-text { color: var(--color-gold-bright); }

.gradient-text-gold {
  background: linear-gradient(135deg, #ffffff 20%, #dfc199 70%, #c5a880 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-wine {
  background: linear-gradient(135deg, #ffffff 10%, #e25b74 60%, #b82b43 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Tags */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid rgba(197, 168, 128, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.section-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold);
}

.section-tag-wine {
  background: rgba(139, 30, 50, 0.15);
  border-color: rgba(184, 43, 67, 0.35);
}

.section-tag-wine .dot {
  background-color: var(--color-wine-bright);
  box-shadow: 0 0 10px var(--color-wine-bright);
}

.section-tag-wine .mono-label {
  color: #f1788f;
}

/* Header Section Headings */
.section-header-center,
.section-header.text-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px auto;
}

.section-header-center h2,
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header-center p,
.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Section Padding */
.section-spacing,
.section-padding {
  padding: 96px 0;
  position: relative;
}

.section-spacing-alt {
  padding: 96px 0;
  position: relative;
  background-color: var(--bg-page-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Ambient glow accents */
.ambient-glow-left {
  position: absolute;
  top: 20%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--color-wine-glow), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-right {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-wine,
.btn-terracotta {
  background: linear-gradient(135deg, var(--color-wine-bright), var(--color-wine));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 18px var(--color-wine-glow);
}

.btn-wine:hover,
.btn-terracotta:hover {
  background: linear-gradient(135deg, #cb324c, var(--color-wine-bright));
  box-shadow: 0 8px 26px rgba(184, 43, 67, 0.45);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-gold,
.btn-navy {
  background: linear-gradient(135deg, var(--color-gold-bright), var(--color-gold));
  color: #0b0e14;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--color-gold-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gold:hover,
.btn-navy:hover {
  background: linear-gradient(135deg, #f0d5b4, var(--color-gold-bright));
  box-shadow: 0 8px 26px rgba(197, 168, 128, 0.45);
  transform: translateY(-2px);
  color: #0b0e14;
}

.btn-glass,
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(12px);
}

.btn-glass:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ========================================================================
   TOPBAR & HEADER (Sticky Glassmorphic - Non-Colliding)
   ======================================================================== */
.topbar {
  background-color: #06080c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(8, 10, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(6, 8, 12, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(197, 168, 128, 0.2);
}

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

.brand-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 160px;
}

.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: var(--transition-smooth);
}

.brand-wrap:hover .site-logo-img {
  filter: drop-shadow(0 0 12px rgba(197, 168, 128, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-wine-bright), var(--color-gold));
  border-radius: var(--radius-pill);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: var(--radius-card-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  justify-content: center;
  align-items: center;
}

.hamburger-btn span {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ========================================================================
   SEKCJA 2: HERO EDITORIAL (Dark Luxury)
   ======================================================================== */
.hero-editorial {
  padding: 72px 0 96px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 75% 20%, rgba(139, 30, 50, 0.16) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-features-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.feature-ribbon-item h4 {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.feature-ribbon-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Hero Stage Showcase */
.hero-stage {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 35px rgba(139, 30, 50, 0.15);
  position: relative;
  transition: var(--transition-smooth);
}

.hero-stage:hover {
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.hero-stage-img-wrap {
  background: radial-gradient(circle at center, rgba(139, 30, 50, 0.25) 0%, rgba(10, 13, 20, 0.9) 70%);
  border-radius: var(--radius-card-sm);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.hero-stage-img-wrap img {
  margin: 0 auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.5s ease;
}

.hero-stage:hover .hero-stage-img-wrap img {
  transform: scale(1.03);
}

.hero-stage-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(8, 10, 15, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.hero-stage-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  background: rgba(8, 10, 15, 0.6);
  padding: 16px;
  border-radius: var(--radius-card-sm);
  border: 1px solid var(--border-subtle);
}

.spec-cell span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.spec-cell strong {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
}

/* ========================================================================
   SEKCJA 3: TECHNOLOGIE / WŁOSKA INŻYNIERIA (4 Glassmorphic Tiles)
   ======================================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.tech-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tech-card:hover {
  transform: translateY(-6px);
  background: var(--bg-glass-hover);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--color-wine-glow);
}

.tech-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 30, 50, 0.3), rgba(197, 168, 128, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  margin-bottom: 24px;
}

.tech-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.tech-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tech-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-gold);
  background: rgba(197, 168, 128, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 168, 128, 0.2);
  align-self: flex-start;
}

/* ========================================================================
   SEKCJA 4: PREZENTACJA LINII MODELI (Poprawione Nagłówki i Podstrony)
   ======================================================================== */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.model-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
}

.model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: var(--shadow-card-hover);
}

.model-card.featured {
  border-color: rgba(184, 43, 67, 0.5);
  box-shadow: 0 10px 35px rgba(139, 30, 50, 0.2);
}

/* Nowy, prominentny nagłówek karty NAD ZDJĘCIEM */
.model-card-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(18, 24, 36, 0.5);
}

.model-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.model-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(8, 10, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.model-badge.badge-wine {
  background: var(--color-wine);
  border-color: var(--color-wine-bright);
  color: #fff;
}

.model-badge.badge-gold {
  background: rgba(197, 168, 128, 0.15);
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
}

.model-capacity-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
}

.model-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.25;
}

.model-card-title a {
  color: #ffffff;
}

.model-card-title a:hover {
  color: var(--color-gold-bright);
}

.model-card-subtitle {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

/* Stage ze zdjęciem pod nagłówkiem */
.model-img-stage {
  position: relative;
  height: 230px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(139, 30, 50, 0.22) 0%, rgba(10, 13, 20, 0.85) 75%);
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  overflow: hidden;
}

.model-img-stage img {
  max-height: 190px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s ease;
}

.model-card:hover .model-img-stage img {
  transform: scale(1.05);
}

.view-details-hover {
  position: absolute;
  bottom: 12px;
  background: rgba(8, 10, 15, 0.88);
  color: var(--color-gold-bright);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 168, 128, 0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-smooth);
}

.model-card:hover .view-details-hover {
  opacity: 1;
  transform: translateY(0);
}

.model-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.model-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.model-specs-list {
  margin-bottom: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.model-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.model-spec-row .spec-label {
  color: var(--text-muted);
}

.model-spec-row .spec-val {
  color: var(--text-main);
  font-weight: 600;
}

.model-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.model-actions .btn {
  flex: 1;
}

/* Callout banner w dole sekcji modeli */
.models-footer-cta {
  margin-top: 56px;
  background: var(--bg-surface);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-card);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.models-footer-cta h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.models-footer-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ========================================================================
   SEKCJA 5: KALKULATOR KORZYŚCI & ROI (Interactive)
   ======================================================================== */
.calc-wrapper {
  background: var(--bg-surface);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-card), 0 0 45px rgba(139, 30, 50, 0.12);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.calc-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-wine-bright), var(--color-gold), var(--color-wine-bright));
}

.calc-inputs-col h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.calc-inputs-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.slider-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.slider-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.slider-value-badge {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  background: rgba(197, 168, 128, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-card-sm);
  border: 1px solid rgba(197, 168, 128, 0.25);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--color-gold-glow);
  border: 2px solid #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--color-gold-bright);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gold);
  cursor: pointer;
  box-shadow: 0 0 12px var(--color-gold-glow);
  border: 2px solid #ffffff;
}

.calc-results-col {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.results-header span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-gold);
  text-transform: uppercase;
}

.results-header h4 {
  font-size: 1.3rem;
  color: #fff;
}

.result-metric-card {
  background: rgba(8, 10, 15, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  padding: 20px;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.result-metric-card:hover {
  border-color: rgba(197, 168, 128, 0.4);
}

.result-metric-card.highlight-wine {
  background: rgba(139, 30, 50, 0.12);
  border-color: rgba(184, 43, 67, 0.4);
}

.metric-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.metric-big-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-gold-bright);
  line-height: 1.1;
}

.metric-big-num.wine {
  color: #f67288;
}

.metric-footnote {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ========================================================================
   SEKCJA 6: DOŚWIADCZENIE DEGUSTACJI (Wine by the Glass)
   ======================================================================== */
.tasting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.tasting-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.tasting-content p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.tasting-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.benefit-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #fff;
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.tasting-visual-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card), 0 0 35px rgba(139, 30, 50, 0.15);
}

.tasting-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.tasting-visual-wrap:hover img {
  transform: scale(1.04);
}

.tasting-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-card-sm);
  padding: 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.overlay-stat h5 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold-bright);
  margin-bottom: 2px;
}

.overlay-stat span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ========================================================================
   SEKCJA 7: DLACZEGO WINEPLEASE (Przewagi rynkowe)
   ======================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: rgba(197, 168, 128, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.why-number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(197, 168, 128, 0.25);
  line-height: 1;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========================================================================
   SEKCJA 8: REFERENCJE & OPINIE (Social Proof)
   ======================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: rgba(197, 168, 128, 0.35);
  transform: translateY(-4px);
}

.quote-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.quote-body {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.quote-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  object-fit: cover;
}

.author-info h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================================================
   SEKCJA 9: FAQ (Interaktywny Akordeon)
   ======================================================================== */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-main);
  background: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--color-gold-bright);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-gold);
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================================================
   SEKCJA 10: BANER CTA (Kinowe Zamknięcie)
   ======================================================================== */
.banner-cta-wrap {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 30, 50, 0.35), #0c0f16 90%);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-card);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 50px rgba(139, 30, 50, 0.2);
}

.banner-cta-wrap h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 20px;
}

.banner-cta-wrap p {
  font-size: 1.18rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.banner-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* ========================================================================
   SEKCJA 11: FORMULARZ KONTAKTOWY / LEAD CAPTURE
   ======================================================================== */
.contact-section-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-info-col h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 20px;
}

.contact-info-col p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  padding: 24px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(197, 168, 128, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
}

.contact-item h5 {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(8, 10, 15, 0.7);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}

.segmented-btn {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.segmented-btn.active {
  background: var(--color-wine);
  color: #ffffff;
  box-shadow: 0 2px 10px var(--color-wine-glow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition-smooth);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
  background: #0b0e14;
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-feedback {
  display: none;
  padding: 16px;
  border-radius: var(--radius-card-sm);
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: center;
}

/* ========================================================================
   DEDYKOWANE PODSTRONY PRODUKTÓW & KATALOG (Subpages Styling)
   ======================================================================== */
.breadcrumbs-bar {
  padding: 18px 0;
  background: var(--bg-page-alt);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs-bar a {
  color: var(--text-secondary);
}

.breadcrumbs-bar a:hover {
  color: var(--color-gold-bright);
}

.breadcrumbs-bar span.active {
  color: var(--color-gold);
  font-weight: 600;
}

.product-detail-hero {
  padding: clamp(48px, 6vw, 84px) 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.product-gallery-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.product-gallery-frame img {
  margin: 0 auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
}

.product-title-lg {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff;
}

.product-lead-lg {
  font-size: 1.15rem;
  color: var(--color-gold-bright);
  line-height: 1.6;
  margin-bottom: 24px;
}

.detail-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.detail-feature-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(197, 168, 128, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-bright);
  flex-shrink: 0;
}

.detail-feature-text h5 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}

.detail-feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.specs-table-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 36px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 16px 24px;
  font-size: 0.95rem;
}

.specs-table td.spec-title {
  width: 35%;
  color: var(--text-muted);
  font-weight: 500;
  background: rgba(8, 10, 15, 0.4);
}

.specs-table td.spec-val {
  color: var(--text-main);
  font-weight: 600;
}

/* Katalog produktów na produkty.php */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-card:hover {
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.card-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.bottle-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(197, 168, 128, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 168, 128, 0.25);
}

.card-img-box {
  background: radial-gradient(circle at center, rgba(139, 30, 50, 0.2) 0%, rgba(10, 13, 20, 0.9) 75%);
  border-radius: var(--radius-card-sm);
  padding: 24px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.card-img-box img {
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.7));
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-specs-mini {
  background: rgba(8, 10, 15, 0.5);
  border-radius: var(--radius-card-sm);
  padding: 14px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.spec-mini-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}

.spec-mini-item:last-child {
  border-bottom: none;
}

.spec-mini-label { color: var(--text-muted); }
.spec-mini-val { color: var(--text-main); font-weight: 600; }

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* Bento Cards na podstronie technologii */
.bento-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-col-12 { grid-column: span 12; }
.bento-col-8 { grid-column: span 8; }
.bento-col-6 { grid-column: span 6; }
.bento-col-4 { grid-column: span 4; }

.bento-card-clean {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-subtle);
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.photo-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.photo-card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-card-body {
  padding: 20px;
}

.photo-card-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.photo-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}

.photo-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cta-banner {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139, 30, 50, 0.35), #0c0f16 90%);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-card);
  padding: 48px;
  text-align: center;
}

/* ========================================================================
   SEKCJA 12: STOPKA (Dark Luxury)
   ======================================================================== */
.site-footer {
  background-color: #05070a;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 32px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================================================
   OFF-CANVAS MOBILE DRAWER
   ======================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 380px;
  background: #090c12;
  border-left: 1px solid var(--border-subtle);
  z-index: 1100;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-drawer);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-close {
  color: var(--text-main);
  padding: 8px;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.drawer-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.drawer-menu a:hover,
.drawer-menu a.active {
  color: var(--color-gold-bright);
}

.drawer-sub-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-card-sm);
  margin-top: 6px;
}

.drawer-sub-items a {
  font-size: 0.86rem !important;
  color: var(--text-muted) !important;
  padding: 4px 0 !important;
  border-bottom: none !important;
}

.drawer-sub-items a:hover {
  color: var(--color-gold-bright) !important;
}

/* ========================================================================
   SUBPAGE EXTRA COMPONENTS (Kontakt, Technologia, Karty)
   ======================================================================== */
.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.department-card {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-card-sm);
  padding: 28px 24px;
  transition: var(--transition-smooth);
}

.department-card:hover {
  border-color: rgba(197, 168, 128, 0.4) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.modern-map-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-top: 12px;
  margin-bottom: 32px;
}

.modern-map-header {
  padding: 24px 32px;
  background: rgba(16, 22, 33, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.modern-map-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 520px;
  align-items: stretch;
}

.modern-map-frame-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #111622;
}

.modern-map-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  display: block;
}

.modern-map-sidebar {
  padding: 36px 32px;
  background: rgba(18, 24, 38, 0.96);
  border-left: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.map-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.3);
  color: #2ed573;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-badge-live .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed573;
  box-shadow: 0 0 8px #2ed573;
  animation: pulse-dot-anim 2s infinite ease-in-out;
}

@keyframes pulse-dot-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

@media (max-width: 1024px) {
  .department-grid {
    grid-template-columns: 1fr;
  }
  .modern-map-grid {
    grid-template-columns: 1fr;
  }
  .modern-map-sidebar {
    border-left: none;
    border-top: 1px solid var(--border-subtle);
    padding: 28px 20px;
  }
  .modern-map-frame-container,
  .modern-map-frame {
    min-height: 400px;
  }
}

/* ========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ======================================================================== */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .calc-wrapper,
  .tasting-grid,
  .contact-section-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .models-footer-cta {
    flex-direction: column;
    text-align: center;
  }

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

  .bento-col-8,
  .bento-col-6,
  .bento-col-4 {
    grid-column: span 12;
  }

  .detail-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .models-grid,
  .product-grid,
  .tech-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-features-ribbon {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .calc-wrapper {
    padding: 24px;
  }

  .banner-cta-wrap {
    padding: 48px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ========================================================================
   ACCESSIBILITY & PREFERS-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;
  }
}
