/* ============================================================
   LUPRIT WEBSHOP – Premium Dark Mode Design System
   Promet Schmierstoffe | promet-schmierstoffe.de/shop
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Colors */
  --bg-900:    #0a0a0b;
  --bg-800:    #111114;
  --bg-700:    #18181d;
  --bg-600:    #1f1f26;
  --bg-500:    #26262f;
  --surface:   #1c1c22;
  --surface-2: #242430;
  --surface-3: #2c2c3a;

  --gold-400:  #d4a843;
  --gold-500:  #c49a2e;
  --gold-600:  #b08820;
  --gold-glow: rgba(212, 168, 67, 0.18);
  --gold-glow-strong: rgba(212, 168, 67, 0.35);

  --accent:    #e8b84b;
  --accent-2:  #f0c860;

  --text-100:  #f4f4f6;
  --text-200:  #d0d0d8;
  --text-300:  #9898a8;
  --text-400:  #6a6a7a;
  --text-500:  #42424f;

  --green:     #22c55e;
  --red:       #ef4444;

  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --border-gold: rgba(212,168,67,0.3);

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 24px rgba(212,168,67,0.2);

  /* Cart sidebar width */
  --cart-width: 420px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-900);
  color: var(--text-200);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography Helpers ──────────────────────────────────── */
.font-heading { font-family: var(--font-heading); }
.text-gold { color: var(--gold-400); }
.text-muted { color: var(--text-300); }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-800); }
::-webkit-scrollbar-thumb { background: var(--bg-500); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--text-400); }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold-glow-strong); color: var(--gold-400); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-out);
}

#site-header.scrolled {
  background: rgba(10, 10, 11, 0.97);
  border-bottom-color: var(--border-2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--space-lg);
}

/* LUPRIT inline SVG logo */
.nav-luprit-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-luprit-logo { opacity: 0.85; }

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  background: rgba(255,255,255,0.88);
  border-radius: 8px;
  padding: 4px 10px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-300);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.25s var(--ease-out);
}

.nav-links a:hover { color: var(--text-100); }
.nav-links a:hover::after { width: 100%; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-400);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.lang-btn:hover { color: var(--text-100); background: rgba(255,255,255,0.06); }

.lang-btn.lang-active {
  color: var(--gold-400);
  background: rgba(212,168,67,0.12);
}

.lang-sep {
  color: var(--border-2);
  font-size: 0.65rem;
  user-select: none;
}

/* Cart Button */
#cart-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem var(--space-md);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-full);
  color: var(--text-200);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s var(--ease-out);
  position: relative;
}

#cart-btn:hover {
  background: var(--surface-3);
  border-color: var(--border-gold);
  color: var(--gold-400);
  box-shadow: var(--shadow-gold);
}

#cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gold-400);
  color: var(--bg-900);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-spring);
}

#cart-count.bump {
  transform: scale(1.4);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

/* Background gradient mesh */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,168,67,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,168,67,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
  pointer-events: none;
}

/* Grid pattern overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.35rem 0.85rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-100);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero-title .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--gold-400), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-300);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-400);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Hero centered layout */
.hero-content--centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero-content--centered .hero-subtitle {
  margin: 0 auto var(--space-2xl);
}

.hero-content--centered .hero-actions {
  justify-content: center;
}

.hero-content--centered .hero-stats {
  justify-content: center;
}

/* Product strip below hero text */
.hero-product-strip {
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.7s var(--ease-out) 0.5s both;
}

.hero-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  transition: background 0.2s;
  border-radius: var(--radius-md);
  cursor: default;
}

.hero-strip-item:hover {
  background: rgba(212,168,67,0.06);
}

.hero-strip-item img {
  width: 52px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s var(--ease-spring);
}

.hero-strip-item:hover img {
  transform: translateY(-4px) scale(1.05);
}

.hero-strip-item span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.hero-strip-item:hover span {
  color: var(--gold-400);
}

.hero-strip-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  background: rgba(255,255,255,0.08);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-900);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.5);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-200);
  border: 1px solid var(--border-2);
}

.btn-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold-400);
  background: var(--gold-glow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
}

.btn-outline-gold:hover {
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
  width: 30px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--text-300);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
#products {
  padding: var(--space-4xl) 0;
  position: relative;
}

#products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  /* center the last row items if fewer than 3 */
}

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  animation: fadeInUp 0.5s var(--ease-out) both;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}

/* Product badge */
.product-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  padding: 0.25rem 0.6rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--surface));
}

.product-img {
  width: 130px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
  transition: transform 0.4s var(--ease-spring), opacity 0.35s ease;
  position: relative;
  z-index: 1;
}

.product-card:hover .product-img {
  transform: scale(1.06) translateY(-4px);
}

/* Dual image: packaging + pure product hover swap */
.product-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img--secondary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.product-card:hover .product-img--primary {
  opacity: 0;
}

.product-card:hover .product-img--secondary {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.06) translateY(-4px);
}


/* Product info */
.product-info {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-sm);
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.25;
}

.product-sku {
  font-size: 0.75rem;
  color: var(--text-400);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-300);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bullet features */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-sm);
}

.product-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.78rem;
  color: var(--text-300);
}

.product-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold-400);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Divider */
.product-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-sm) 0;
}

/* Price row */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: auto;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-100);
  white-space: nowrap;
}

.product-price-vat {
  font-size: 0.7rem;
  color: var(--text-400);
  white-space: nowrap;
}

.btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.65rem 1.1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-900);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-add-to-cart svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.45);
}

.btn-add-to-cart:active { transform: scale(0.97); }

.btn-add-to-cart.added {
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: white;
}

/* Product detail expand */
.product-detail-toggle {
  width: 100%;
  padding: var(--space-sm);
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-400);
  border-top: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.product-detail-toggle:hover {
  color: var(--gold-400);
  background: var(--gold-glow);
}

/* ============================================================
   TRUST BAR / USPs
   ============================================================ */
#trust-bar {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-800);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trust-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-400);
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-200);
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--text-400);
  margin-top: 1px;
}

/* ============================================================
   ABOUT / BRAND SECTION
   ============================================================ */
#about {
  padding: var(--space-4xl) 0;
  background: var(--bg-800);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: 'LUPRIT';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--text-300);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-highlight {
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s;
}

.about-highlight:hover { border-color: var(--border-gold); }

.about-highlight-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-400);
}

.about-highlight-desc {
  font-size: 0.8rem;
  color: var(--text-400);
  margin-top: 2px;
}

/* Product family visual */
.product-family-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.family-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  transition: all 0.3s var(--ease-out);
}

.family-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.family-card-img {
  width: 60px;
  height: 78px;
  object-fit: contain;
}

.family-card-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-200);
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
#cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
  backdrop-filter: blur(4px);
}

#cart-overlay.open { opacity: 1; pointer-events: all; }

#cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--cart-width);
  max-width: 100vw;
  background: var(--bg-700);
  border-left: 1px solid var(--border-2);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}

#cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-300);
  transition: all 0.2s;
}

.cart-close-btn:hover {
  background: var(--surface-3);
  color: var(--text-100);
  border-color: var(--border-2);
}

.cart-close-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

/* Cart items */
#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--text-400);
  text-align: center;
  padding: var(--space-2xl);
}

.cart-empty svg { width: 48px; height: 48px; stroke: currentColor; fill: none; opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; }

/* Cart item */
.cart-item {
  display: flex;
  gap: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  animation: fadeInRight 0.3s var(--ease-out) both;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 60px;
  height: 78px;
  object-fit: contain;
  background: var(--bg-600);
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-100);
  line-height: 1.3;
  margin-bottom: 2px;
}

.cart-item-sku {
  font-size: 0.7rem;
  color: var(--text-400);
  margin-bottom: var(--space-sm);
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-400);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-200);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.15s;
}

.qty-btn:hover { background: var(--surface-3); color: var(--text-100); border-color: var(--border-2); }

.qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-200);
}

.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--text-400);
  transition: all 0.15s;
  flex-shrink: 0;
  align-self: flex-start;
}

.cart-item-remove:hover { color: var(--red); background: rgba(239,68,68,0.1); }
.cart-item-remove svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* Cart footer */
.cart-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-700);
}

.cart-subtotals {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-300);
}

.cart-row.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-100);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  margin-top: var(--space-sm);
}

.cart-row.total .amount { color: var(--gold-400); }

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-900);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.5);
}

.cart-checkout-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

.cart-mollie-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 0.72rem;
  color: var(--text-400);
}

.cart-mollie-note svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
#checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

#checkout-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg-700);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0,0,0,0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.35s var(--ease-spring);
}

#checkout-modal.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
}

.modal-close {
  width: 36px; height: 36px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-300);
  transition: all 0.2s;
}

.modal-close:hover { color: var(--text-100); background: var(--surface-3); }
.modal-close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

.modal-body { padding: var(--space-xl); }

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  color: var(--text-100);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder { color: var(--text-500); }

.modal-order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.modal-order-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.modal-order-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.modal-order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-200);
}

.modal-order-item-name { flex: 1; }
.modal-order-item-price { font-weight: 600; color: var(--text-100); }

.modal-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}

.modal-total-amount { color: var(--gold-400); }

.modal-submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-900);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
  margin-top: var(--space-lg);
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.5);
}

.modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-submit-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

/* ── Country selector ──────────────────────────────────────── */
.checkout-country-wrap {
  margin-bottom: var(--space-md);
}

.checkout-country-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4a843' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.checkout-country-select:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.15);
}

/* ── Legal checkboxes ──────────────────────────────────────── */
.checkout-legal-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212,168,67,0.05);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius-md);
}

.checkout-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-300);
  line-height: 1.5;
  transition: color 0.2s;
}

.checkout-check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--gold-400);
  cursor: pointer;
}

.checkout-check-label a {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Modal VAT/tax row ─────────────────────────────────────── */
.modal-order-tax {
  font-size: 0.78rem !important;
  opacity: 0.7;
  margin-top: -4px;
}

.modal-order-tax .modal-order-item-name,
.modal-order-tax .modal-order-item-price {
  font-size: 0.78rem;
  color: var(--text-400);
}


.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.payment-logo-badge {
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-300);
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: var(--space-sm);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-400);
  line-height: 1.7;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-200);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-400);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-500);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-500);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-300); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFloat {
  from { opacity: 0; transform: translateY(-45%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-45%) translateX(0); }
}

/* Stagger product cards */
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast-container {
  position: fixed;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.25rem;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-100);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  animation: toastIn 0.35s var(--ease-spring) both;
}

.toast.removing { animation: toastOut 0.3s var(--ease-out) both; }

.toast-icon {
  width: 20px;
  height: 20px;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold-400);
  flex-shrink: 0;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.9); }
}

/* ============================================================
   SUCCESS / CANCEL PAGES
   ============================================================ */
.result-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  text-align: center;
}

.result-box {
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-icon.success {
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  color: var(--green);
}

.result-icon.cancel {
  background: rgba(239,68,68,0.1);
  border: 2px solid rgba(239,68,68,0.3);
  color: var(--red);
}

.result-icon svg { width: 40px; height: 40px; stroke: currentColor; fill: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-md); }
  .nav-links { display: none; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }
  .hero-strip-inner { gap: 0; padding: var(--space-md); }
  .hero-strip-item img { width: 36px; height: 48px; }
  .hero-strip-item span { display: none; }
  .hero-strip-divider { height: 50px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .product-family-visual { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  --cart-width: 100vw;
  #cart-sidebar { width: 100vw; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: unset; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-product-strip { display: none; }
}
