/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'PP Editorial New';
  src: url('../images/Cadence Fonts/PP Editorial New/woff/PPEditorialNew-Ultralight.woff2') format('woff2');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('../images/Cadence Fonts/PP Editorial New/woff/PPEditorialNew-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('../images/Cadence Fonts/PP Editorial New/woff/PPEditorialNew-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('../images/Cadence Fonts/PP Editorial New/woff/PPEditorialNew-Ultrabold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../images/Cadence Fonts/PP Neue Montreal/woff/PPNeueMontreal-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../images/Cadence Fonts/PP Neue Montreal/woff/PPNeueMontreal-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../images/Cadence Fonts/PP Neue Montreal/woff/PPNeueMontreal-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ============================================================
   TOKENS — light mode default (Cadence style: black on white)
   ============================================================ */
:root {
  --bg:            #ffffff;
  --bg-alt:        #f4f4f2;
  --bg-card:       #ffffff;
  --bg-card-hover: #f9f9f7;
  --text:          #0f0f0f;
  --text-muted:    #666660;
  --text-dim:      #c0c0b8;
  --ink:           #0f0f0f;   /* always-black, for borders & icons */
  --border:        rgba(0,0,0,0.09);
  --border-hover:  rgba(0,0,0,0.22);
  --nav-bg:        rgba(255,255,255,0.92);
  --shadow:        0 4px 32px rgba(0,0,0,0.08);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.07);

  --font-display: 'PP Editorial New', Georgia, serif;
  --font-body:    'PP Neue Montreal', system-ui, -apple-system, sans-serif;

  --nav-h: 68px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* map */
  --map-ocean:   #ebebeb;
  --map-ctx:     #d4d4d0;
  --map-country: #0f0f0f;
  --map-ch:      #3a3a3a;
  --map-hover:   #444444;
  --map-stroke:  #ffffff;
  --map-tip-bg:  #0f0f0f;
  --map-tip-txt: #ffffff;
}

[data-theme="dark"] {
  --bg:            #0d0d0d;
  --bg-alt:        #141414;
  --bg-card:       #1a1a1a;
  --bg-card-hover: #202020;
  --text:          #f0efe3;
  --text-muted:    #6b6b5e;
  --text-dim:      #3d3d35;
  --ink:           #f0efe3;
  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(255,255,255,0.16);
  --nav-bg:        rgba(13,13,13,0.88);
  --shadow:        0 4px 40px rgba(0,0,0,0.55);
  --shadow-card:   0 2px 24px rgba(0,0,0,0.45);

  --map-ocean:   #0d0d0d;
  --map-ctx:     #1e1e1e;
  --map-country: #2e4e49;
  --map-ch:      #3d6b64;
  --map-hover:   #5a9e95;
  --map-stroke:  #0d0d0d;
  --map-tip-bg:  #f0efe3;
  --map-tip-txt: #0d0d0d;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

.section {
  padding: 120px 0;
}
.section--alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.section-sub {
  margin-top: 16px;
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 480px;
}

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1.5px solid var(--text);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-dropdown { position: relative; }
.lang-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 4px 2px;
}
.lang-dropdown-trigger:hover { color: var(--text); }
.lang-dropdown-trigger svg { width: 14px; height: 14px; transition: transform var(--transition); }
.lang-dropdown.open .lang-dropdown-trigger svg { transform: rotate(180deg); }
.lang-dropdown-trigger span { color: var(--text); font-weight: 600; }

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 140px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.lang-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.lang-dropdown-item:hover { background: var(--bg-alt); color: var(--text); }
.lang-dropdown-item.active { color: var(--text); font-weight: 600; }

.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-hover); }
.icon { width: 16px; height: 16px; }

[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent-bright); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* Subtle radial glow behind cans — only in dark mode */
[data-theme="dark"] .hero::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,78,73,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-visual   { position: relative; z-index: 1; }

.hero-content {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text);
}

.hero-sub {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  max-width: 440px;
  line-height: 1.5;
}
.hero-sub--dim {
  color: var(--text-muted);
  margin-top: -8px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-claims {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-claims span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-can {
  position: absolute;
  height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.5));
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-can--back  { transform: translateX(-99px) translateY(20px) rotate(-8deg) scale(0.85); opacity: 0.6; z-index: 1; }
.hero-can--main  { transform: translateX(0px) translateY(0px) rotate(2deg); z-index: 3; }
.hero-can--front { transform: translateX(88px) translateY(30px) rotate(10deg) scale(0.8); opacity: 0.75; z-index: 2; }

.hero-visual:hover .hero-can--back  { transform: translateX(-110px) translateY(10px) rotate(-10deg) scale(0.87); }
.hero-visual:hover .hero-can--main  { transform: translateX(0px) translateY(-12px) rotate(2deg); }
.hero-visual:hover .hero-can--front { transform: translateX(99px) translateY(20px) rotate(12deg) scale(0.82); }

/* ============================================================
   PRODUCTS
   ============================================================ */
#products .section-header { margin-bottom: 24px; }

.products-intro {
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.products-intro h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 6px;
}
.products-intro h3:first-child { margin-top: 0; }
.products-intro p { margin-bottom: 10px; }
.products-intro ul {
  margin: 0 0 10px 1.25rem;
  padding: 0;
}
.products-intro li { margin-bottom: 6px; }

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  min-height: 400px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.product-card-img {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  height: 260px;
  overflow: hidden;
}
.product-card-img img {
  height: 200px;
  width: 110px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}
.product-card:hover .product-card-img img {
  transform: scale(1.06) translateY(-4px);
}

.product-card-body {
  padding: 20px;
}
.product-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.product-card-flavor {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.product-card-size {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.badge-coming {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-card.hidden { display: none; }

/* ============================================================
   WHERE TO BUY
   ============================================================ */
.retail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
}

.retail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.retail-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.retail-icon {
  flex-shrink: 0;
  width: 80px;
  height: 44px;
  display: flex;
  align-items: center;
}
.retail-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.retail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.retail-name {
  font-weight: 600;
  font-size: 1rem;
}
.retail-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.retail-arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.retail-card:hover .retail-arrow { transform: translate(2px, -2px); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  min-width: 200px;
}
.partner-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.partner-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all var(--transition);
}
.partner-logo-wrap img[alt="BAVSE"] {
  transform: scale(1.35);
}
.partner-card:hover .partner-logo-wrap img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.partner-card:hover .partner-name { color: var(--text); }

#partners { padding-bottom: 56px; }
#b2b      { padding-top:    56px; }

/* ============================================================
   EU MAP
   ============================================================ */
.eu-map-container {
  width: 100%;
  margin-top: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.eu-map-svg { display: block; width: 100%; height: auto; }

.map-ocean { fill: var(--bg); }
.map-ctx   { fill: var(--bg-card); opacity: 0.6; }

.map-country {
  fill: var(--accent);
  stroke: var(--bg-alt);
  stroke-width: 1;
  cursor: pointer;
  transition: fill 0.15s;
}
.map-country:hover,
.map-country:focus { fill: var(--accent-mid); outline: none; }

.map-ch {
  fill: var(--accent-mid);
  stroke-width: 1.5;
}
.map-ch:hover { fill: var(--accent-bright); }

.map-tip-bg  { fill: var(--text); }
.map-tip-txt {
  fill: var(--bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
}

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
  border-radius: 0;
}
.events-list .event-row:last-child { border-bottom: 1px solid var(--border); }
.event-row:hover { opacity: 0.72; }

.event-date {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.event-day {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.event-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.event-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.event-location svg { width: 14px; height: 14px; flex-shrink: 0; }
.event-time {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.event-arrow {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.event-row:hover .event-arrow { transform: translate(2px, -2px); }

/* ============================================================
   B2B
   ============================================================ */
.b2b-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}

.b2b-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.b2b-prop {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b2b-prop-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  flex-shrink: 0;
}
.b2b-prop-icon svg { width: 20px; height: 20px; }

.b2b-prop h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.b2b-prop p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.b2b-coverage {
  margin-bottom: 64px;
}
.b2b-coverage h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.country-tags span {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.country-tags span:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.tag-highlight {
  border-color: var(--text) !important;
  color: var(--text) !important;
  font-weight: 500;
}

/* ============================================================
   FORM
   ============================================================ */
.b2b-form-wrap {
  max-width: 680px;
}
.b2b-form-wrap h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.b2b-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

input, textarea, select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--border-hover);
}
.input-error { border-color: #c0392b !important; }
.input-error:focus { border-color: #c0392b !important; }

.field-error {
  display: none;
  font-size: 0.775rem;
  color: #c0392b;
  margin-top: 4px;
}
.field-error.visible { display: block; }
input::placeholder, textarea::placeholder {
  color: var(--text-dim);
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666660' stroke-width='1.5' stroke-linecap='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  resize: none;
}
select option { color: var(--text); background: var(--bg-card); }

.form-success {
  display: none;
  font-size: 0.9rem;
  color: var(--accent-bright);
  padding: 12px 0;
}
.form-success.visible { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-email {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--transition);
  display: inline-block;
}
.contact-email:hover { opacity: 0.7; }

#contact .section-header { max-width: none; }

.contact-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.footer-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex: 1;
}
.footer-controls {
  margin-left: auto;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  z-index: 2;
}
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-close:hover { color: var(--text); border-color: var(--border-hover); }

.lightbox-nav {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  align-self: center;
}
.lightbox-nav svg { width: 18px; height: 18px; }
.lightbox-nav:hover { color: var(--text); border-color: var(--border-hover); }

.lightbox-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 860px;
  width: 100%;
  height: min(560px, 90vh);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lightbox-img-wrap {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  min-height: 420px;
}
.lightbox-img-wrap img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.45));
}

.lightbox-info {
  padding: 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* lightbox info content rendered by JS */
.lb-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 8px;
}
.lb-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.lb-flavor {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 28px;
}
.lb-section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.lb-electrolytes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.lb-electrolyte {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.lb-electrolyte-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.lb-electrolyte-name {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.lb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.lb-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--cream);
}
.lb-ingredients {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-ctas { justify-content: center; }
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: calc(var(--nav-h) + 24px) 24px 60px;
    min-height: auto;
    text-align: center;
  }
  .hero-content { align-items: center; padding: 0; }
  .hero-sub { text-align: center; }
  .hero-visual {
    height: 300px;
    order: -1;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }
  .hero-can { height: 260px; width: 120px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)); }
  .b2b-props { grid-template-columns: 1fr; }
  .retail-grid { grid-template-columns: 1fr; max-width: 480px; }
  .lightbox { align-items: flex-start; padding: 24px 16px; }
  .lightbox-inner { grid-template-columns: 1fr; height: auto; max-height: none; }
  .lightbox-img-wrap { min-height: 260px; padding: 32px; }
  .lightbox-img-wrap img { max-height: 220px; }
  .lightbox-info { padding: 32px; overflow-y: visible; }
  .lightbox-nav { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-controls { margin-left: 0; }
  .lightbox { padding: 16px; }
  .lightbox-inner { border-radius: 16px; }
  .lb-electrolytes { grid-template-columns: repeat(3, 1fr); }
  .event-row { grid-template-columns: 100px 1fr auto; gap: 16px; }
  .event-day { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-visual { height: 240px; max-width: 360px; }
  .hero-can { height: 200px; width: 100px; }
  .hero-can--back  { transform: translateX(-66px) translateY(15px) rotate(-8deg) scale(0.85); }
  .hero-can--front { transform: translateX(61px) translateY(20px) rotate(10deg) scale(0.8); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card-img { height: 200px; padding: 24px 16px; }
  .product-card-img img { height: 150px; }
  .product-card-body { padding: 14px; }
  .badge-coming {
    top: 100px;
    bottom: auto;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    text-align: center;
    font-size: 0.6rem;
    padding: 5px 8px;
    line-height: 1.2;
  }
  .partners-grid { flex-direction: column; }
}
