/* =============================================
   GSMC KERZEN – LUXUS DARK THEME
   Version 1.0.0 | Vanilla CSS Masterpiece
   ============================================= */

/* =============================================
   0. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Farben – Dark Luxury */
  --bg-0: #060200;
  --bg-1: #0D0600;
  --bg-2: #1A0A00;
  --bg-3: #261004;
  --bg-4: #2A1508;
  --bg-5: #3D1F08;
  --bg-card: #1E0E05;
  --bg-card-hover: #2A1508;

  /* Gold Palette */
  --gold-dim: #8B6914;
  --gold: #D4A017;
  --gold-bright: #E8B824;
  --gold-light: #F0C842;
  --gold-pale: rgba(212,160,23,0.15);
  --gold-glow: 0 0 40px rgba(212,160,23,0.25);
  --gold-glow-strong: 0 0 60px rgba(212,160,23,0.4);

  /* Text */
  --text-0: #FDF8F0;
  --text-1: #F5E6C8;
  --text-2: #C8A876;
  --text-3: #8B7355;
  --text-4: #5C4A2E;

  /* Semantic */
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
  --info: #2196F3;

  /* Aliases (Kompatibilität) */
  --green: #4CAF50;
  --red: #F44336;
  --gold-rgb: 212, 160, 23;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Borders */
  --border-dim: rgba(212,160,23,0.08);
  --border: rgba(212,160,23,0.18);
  --border-mid: rgba(212,160,23,0.35);
  --border-bright: rgba(212,160,23,0.6);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.7);
  --shadow-gold: 0 8px 32px rgba(212,160,23,0.2);
  --shadow-gold-lg: 0 20px 60px rgba(212,160,23,0.15);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s ease;
  --t-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1400px;
  --nav-height: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-1);
  color: var(--text-1);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: var(--gold);
  color: var(--bg-0);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

/* =============================================
   2. CUSTOM CURSOR
   ============================================= */
#cursor-dot,
#cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  top: 0;
  left: 0;
  transition: transform 0.05s linear, width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212,160,23,0.5);
  top: 0;
  left: 0;
  transition: transform 0.12s linear, width 0.2s, height 0.2s, border-color 0.2s;
}

body.cursor-hover #cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(212,160,23,0.8);
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* =============================================
   3. SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* =============================================
   4. TYPOGRAPHY
   ============================================= */
.display-1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.02em; line-height: 1.05; }
.display-2 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
.h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.h3 { font-size: clamp(1.3rem, 2.5vw, 1.875rem); }
.h4 { font-size: 1.25rem; }
.h5 { font-size: 1.1rem; }

.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-3); }
.text-cream { color: var(--text-1); }

.font-heading { font-family: var(--font-heading); }
.font-accent { font-family: var(--font-accent); font-style: italic; }

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   5. LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--sm { max-width: 800px; }
.container--md { max-width: 1100px; }
.container--lg { max-width: 1600px; }

.section {
  padding: var(--space-20) 0;
}

.section--sm { padding: var(--space-12) 0; }
.section--lg { padding: var(--space-24) 0; }

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

/* =============================================
   6. NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--t-slow), box-shadow var(--t-slow), backdrop-filter var(--t-slow);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(13, 6, 0, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-md);
}

.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-8);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(212,160,23,0.3);
  transition: transform var(--t-spring), box-shadow var(--t-base);
}

.nav__logo:hover .nav__logo-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 30px rgba(212,160,23,0.5);
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: 0.05em;
}

.nav__logo-text span:last-child {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-full);
  transition: color var(--t-base), background var(--t-base);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav__link:hover, .nav__link.active {
  color: var(--text-0);
  background: rgba(212,160,23,0.08);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--bg-0) !important;
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  transition: transform var(--t-spring), box-shadow var(--t-base), background var(--t-base) !important;
}

.nav__link--cta:hover {
  background: var(--gold-bright) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mega-Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  min-width: 280px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  pointer-events: none;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav__dropdown-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav__dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--r-md);
  transition: background var(--t-base);
  color: var(--text-2);
}

.nav__dropdown-item:hover {
  background: var(--bg-3);
  color: var(--text-0);
}

.nav__dropdown-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav__dropdown-item:hover .nav__dropdown-icon {
  background: var(--gold-pale);
}

.nav__dropdown-label { font-size: 0.85rem; font-weight: 500; }
.nav__dropdown-sub { font-size: 0.75rem; color: var(--text-3); margin-top: 1px; }

/* Nav Actions */
.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

.nav__action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-2);
  transition: color var(--t-base), background var(--t-base), transform var(--t-spring);
  position: relative;
}

.nav__action-btn:hover {
  color: var(--text-0);
  background: rgba(212,160,23,0.08);
  transform: translateY(-1px);
}

.nav__action-btn svg { width: 18px; height: 18px; }

.nav__cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--bg-0);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--t-spring);
}

.nav__cart-count.visible { transform: scale(1); }

/* Mobile Menu Button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all var(--t-base);
}

.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =============================================
   7. CART DRAWER
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

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

.cart-drawer__header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-0);
}

.cart-drawer__count {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-left: var(--space-2);
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-3);
  transition: color var(--t-base), background var(--t-base);
}

.cart-drawer__close:hover {
  color: var(--text-0);
  background: var(--bg-3);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-dim);
  animation: slideInRight 0.3s ease;
}

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

.cart-item__img {
  width: 80px;
  height: 80px;
  border-radius: var(--r-md);
  object-fit: cover;
  background: var(--bg-3);
}

.cart-item__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-0);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.cart-item__meta {
  font-size: 0.75rem;
  color: var(--text-3);
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.cart-item__qty-btn {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--t-base), color var(--t-base);
}

.cart-item__qty-btn:hover {
  background: var(--gold);
  color: var(--bg-0);
}

.cart-item__qty-num {
  font-size: 0.85rem;
  color: var(--text-0);
  min-width: 20px;
  text-align: center;
}

.cart-item__price {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  text-align: right;
}

.cart-item__remove {
  display: block;
  font-size: 0.7rem;
  color: var(--text-4);
  text-align: right;
  margin-top: var(--space-2);
  transition: color var(--t-base);
}

.cart-item__remove:hover { color: var(--danger); }

.cart-drawer__empty {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  color: var(--text-3);
}

.cart-drawer__empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-4);
  opacity: 0.4;
}

.cart-drawer__footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}

.cart-drawer__free-shipping {
  margin-bottom: var(--space-4);
}

.cart-drawer__free-shipping-bar {
  height: 4px;
  background: var(--bg-3);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-top: var(--space-2);
}

.cart-drawer__free-shipping-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: var(--r-full);
  transition: width 0.5s ease;
}

.cart-drawer__free-shipping-text {
  font-size: 0.78rem;
  color: var(--text-3);
}

.cart-drawer__free-shipping-text strong {
  color: var(--gold);
}

.cart-drawer__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
}

.cart-drawer__total-label {
  font-size: 0.875rem;
  color: var(--text-2);
}

.cart-drawer__total-value {
  font-weight: 600;
  color: var(--text-0);
}

.cart-drawer__total-row--main {
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
}

.cart-drawer__total-row--main .cart-drawer__total-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-0);
}

.cart-drawer__total-row--main .cart-drawer__total-value {
  font-size: 1.2rem;
  color: var(--gold);
}

/* =============================================
   8. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-7);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t-base);
}

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

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  color: var(--bg-0);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
}

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

.btn--outline {
  background: transparent;
  border-color: var(--border-mid);
  color: var(--text-1);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
}

.btn--ghost:hover {
  background: var(--bg-3);
  color: var(--text-0);
}

.btn--dark {
  background: var(--bg-3);
  color: var(--text-1);
  border-color: var(--border);
}

.btn--dark:hover {
  background: var(--bg-4);
  border-color: var(--border-mid);
}

.btn--danger {
  background: var(--danger);
  color: #fff;
}

.btn--lg { padding: var(--space-4) var(--space-10); font-size: 1rem; }
.btn--sm { padding: var(--space-2) var(--space-4); font-size: 0.8rem; }
.btn--xs { padding: var(--space-1) var(--space-3); font-size: 0.75rem; }
.btn--block { width: 100%; }
.btn--icon-only { padding: var(--space-3); border-radius: var(--r-md); }

.btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn--loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: var(--space-2);
}

/* =============================================
   9. BADGES
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}

.badge--gold { background: rgba(212,160,23,0.15); color: var(--gold-bright); border: 1px solid rgba(212,160,23,0.3); }
.badge--new { background: rgba(212,160,23,0.9); color: var(--bg-0); }
.badge--bestseller { background: rgba(196,98,45,0.85); color: #fff; }
.badge--sale { background: var(--danger); color: #fff; }
.badge--success { background: rgba(76,175,80,0.15); color: var(--success); border: 1px solid rgba(76,175,80,0.3); }
.badge--warning { background: rgba(255,152,0,0.15); color: var(--warning); border: 1px solid rgba(255,152,0,0.3); }
.badge--danger { background: rgba(244,67,54,0.15); color: var(--danger); border: 1px solid rgba(244,67,54,0.3); }
.badge--info { background: rgba(33,150,243,0.15); color: var(--info); border: 1px solid rgba(33,150,243,0.3); }

/* =============================================
   10. PRODUCT CARD
   ============================================= */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--border-mid);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--text-4);
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-4) 100%);
}

.product-card__badges {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  z-index: 1;
}

.product-card__actions {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  z-index: 1;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card__action-btn {
  width: 36px;
  height: 36px;
  background: rgba(13,6,0,0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-1);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-spring);
}

.product-card__action-btn:hover {
  background: var(--gold);
  color: var(--bg-0);
  border-color: var(--gold);
  transform: scale(1.1);
}

.product-card__action-btn.wishlisted {
  color: #e74c3c;
  border-color: rgba(231,76,60,0.4);
}

/* Quick-Add overlay */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(13,6,0,0.95) 0%, transparent 100%);
  padding: var(--space-4) var(--space-4) var(--space-5);
  transform: translateY(100%);
  transition: transform var(--t-base);
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}

.product-card__body {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-0);
  line-height: 1.3;
  margin-bottom: var(--space-2);
  flex: 1;
}

.product-card__scent {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.75rem;
  color: var(--text-4);
  margin-bottom: var(--space-3);
}

.product-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card__stars {
  display: flex;
  gap: 1px;
  margin-bottom: var(--space-3);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-dim);
}

.product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-card__price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.product-card__price-old {
  font-size: 0.78rem;
  color: var(--text-4);
  text-decoration: line-through;
}

.product-card__add-btn {
  width: 38px;
  height: 38px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: background var(--t-spring), color var(--t-base), transform var(--t-spring);
}

.product-card__add-btn:hover {
  background: var(--gold);
  color: var(--bg-0);
  transform: scale(1.1) rotate(90deg);
}

/* =============================================
   11. HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 110%, rgba(212,160,23,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 80% 20%, rgba(212,160,23,0.04) 0%, transparent 50%),
              linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: var(--nav-height);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding: var(--space-16) 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero__title {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-heading);
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  animation: fadeInUp 0.8s ease 0.8s both;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-dim);
  animation: fadeInUp 0.8s ease 1.0s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--text-3);
}

.hero__trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* Hero Visuals */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 1s ease 0.4s both;
}

.hero__candle-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero__candle-main {
  width: 100%;
  aspect-ratio: 0.85;
  border-radius: var(--r-xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(212,160,23,0.2);
}

.hero__candle-placeholder {
  width: 100%;
  aspect-ratio: 0.85;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-5) 60%, var(--bg-4) 100%);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(212,160,23,0.15);
  border: 1px solid var(--border);
}

.hero__floating-card {
  position: absolute;
  background: rgba(26,10,0,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero__floating-card--1 {
  bottom: 8%;
  left: -10%;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  top: 12%;
  right: -8%;
  animation-delay: 1s;
}

.hero__floating-card--3 {
  top: 50%;
  left: -15%;
  animation-delay: 2s;
}

.hero__card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
}

.hero__card-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-0);
}

.hero__card-value--gold {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
}

.hero__card-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.8rem;
}

/* =============================================
   12. SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.section-header__label::before,
.section-header__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-header__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
  color: var(--text-0);
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   13. TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: var(--space-5) 0;
  overflow: hidden;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  text-align: left;
  padding: var(--space-2) var(--space-4);
  border-right: 1px solid var(--border-dim);
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.trust-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-0);
  line-height: 1.2;
}

.trust-bar__sub {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* =============================================
   14. CATEGORY GRID
   ============================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.category-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 0.85;
  background: var(--bg-3);
  cursor: pointer;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border-dim);
}

.category-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.category-card:nth-child(1) { grid-column: span 1; grid-row: span 2; aspect-ratio: auto; }

.category-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow);
}

.category-card:hover .category-card__bg {
  transform: scale(1.07);
}

.category-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-5));
  transition: transform var(--t-slow);
}

.category-card:hover .category-card__placeholder {
  transform: scale(1.05);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,2,0,0.9) 0%, rgba(6,2,0,0.4) 40%, transparent 70%);
}

.category-card__content {
  position: relative;
  z-index: 1;
  padding: var(--space-5);
}

.category-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-2);
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-0);
  margin-bottom: var(--space-1);
}

.category-card__count {
  font-size: 0.78rem;
  color: var(--text-3);
}

.category-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t-base), transform var(--t-base);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   15. PRODUCT GRID
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

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

/* =============================================
   16. FILTERS SIDEBAR
   ============================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.filters-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-4));
}

.filter-section {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-dim);
}

.filter-section:last-child { border-bottom: none; }

.filter-section__title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.filter-section__toggle {
  font-size: 0.8rem;
  color: var(--text-3);
  transition: transform var(--t-base);
}

.filter-section.collapsed .filter-section__toggle {
  transform: rotate(-90deg);
}

.filter-section__body {
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.filter-section.collapsed .filter-section__body {
  max-height: 0;
}

/* Checkbox Filter */
.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  cursor: pointer;
}

.filter-option input[type="checkbox"] {
  display: none;
}

.filter-option__box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), border-color var(--t-base);
  flex-shrink: 0;
}

.filter-option input:checked + .filter-option__box {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-option__check {
  color: var(--bg-0);
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: opacity var(--t-base), transform var(--t-spring);
}

.filter-option input:checked + .filter-option__box .filter-option__check {
  opacity: 1;
  transform: scale(1);
}

.filter-option__label {
  font-size: 0.875rem;
  color: var(--text-2);
  flex: 1;
  transition: color var(--t-base);
}

.filter-option:hover .filter-option__label,
.filter-option input:checked ~ .filter-option__label { color: var(--text-0); }

.filter-option__count {
  font-size: 0.7rem;
  color: var(--text-4);
}

/* Color Filter */
.filter-colors {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--t-spring), border-color var(--t-base);
  position: relative;
}

.filter-color:hover { transform: scale(1.15); }
.filter-color.active { border-color: var(--gold); box-shadow: 0 0 0 2px var(--bg-1); }

/* Price Range */
.filter-range {
  padding: var(--space-2) 0;
}

.filter-range input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  border-radius: 2px;
  background: var(--bg-5);
  outline: none;
  cursor: pointer;
}

.filter-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(212,160,23,0.5);
  transition: transform var(--t-spring);
}

.filter-range input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.filter-range__values {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: var(--space-2);
}

/* =============================================
   17. SHOP TOOLBAR
   ============================================= */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-dim);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.shop-toolbar__results {
  font-size: 0.875rem;
  color: var(--text-3);
}

.shop-toolbar__sort {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.shop-toolbar__sort-label {
  font-size: 0.8rem;
  color: var(--text-3);
  white-space: nowrap;
}

.shop-select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-1);
  font-size: 0.85rem;
  padding: var(--space-2) var(--space-4);
  outline: none;
  cursor: pointer;
  transition: border-color var(--t-base);
}

.shop-select:hover { border-color: var(--gold); }
.shop-select:focus { border-color: var(--gold-bright); }

.shop-toolbar__view-btns {
  display: flex;
  gap: var(--space-1);
}

.shop-toolbar__view-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.8rem;
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: all var(--t-base);
}

.shop-toolbar__view-btn.active {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--border-mid);
}

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--gold-pale);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  color: var(--gold);
}

.active-filter__remove {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,160,23,0.2);
  color: var(--gold);
  font-size: 0.6rem;
  cursor: pointer;
  transition: background var(--t-base);
}

.active-filter__remove:hover {
  background: var(--gold);
  color: var(--bg-0);
}

/* =============================================
   18. SEARCH MODAL (Wax Card Design)
   ============================================= */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal Card */
.search-overlay__card {
  width: 100%;
  max-width: 920px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.75),
    0 0 0 1px rgba(212,160,23,0.2);
  transform: translateY(-30px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--bg-1);
}

.search-overlay.open .search-overlay__card {
  transform: translateY(0) scale(1);
}

/* Legacy wrapper compat */
.search-overlay__inner { display: contents; }

/* Wax Header */
.search-overlay__wax-header {
  position: relative;
  background: linear-gradient(160deg, #5C3A0A 0%, #7A4A0C 45%, #3D2508 100%);
  padding: 1.6rem 2rem 3.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.search-overlay__wax-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.search-overlay__flame {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255,160,30,0.7));
  animation: flameDance 2.2s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.search-overlay__header-texts {
  flex: 1;
  position: relative;
  z-index: 1;
}

.search-overlay__header-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #F5E6C8;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.18rem;
}

.search-overlay__header-hint {
  font-size: 0.78rem;
  color: rgba(245,230,200,0.5);
  font-family: var(--font-sans);
  font-weight: 400;
  margin: 0;
}

.search-overlay__header-close {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.08);
  color: rgba(245,230,200,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.search-overlay__header-close:hover {
  background: rgba(255,255,255,0.18);
  color: #F5E6C8;
}

/* Wax drip at bottom of header */
.search-overlay__wax-drip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.search-overlay__wax-drip svg {
  width: 100%;
  height: 52px;
  display: block;
}

/* Content body */
.search-overlay__content {
  padding: 1.8rem 2.2rem 2.2rem;
}

/* Input */
.search-input-wrap {
  position: relative;
  margin-bottom: 1.2rem;
}

.search-input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-full);
  color: var(--text-0);
  font-size: 1.3rem;
  padding: 1rem 1.5rem 1rem 3.6rem;
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.search-input::placeholder { color: var(--text-4); }

.search-input-icon {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.search-close {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  background: var(--bg-3);
  transition: color var(--t-base), background var(--t-base);
}

.search-close:hover {
  color: var(--text-0);
  background: var(--bg-4);
}

/* Results */
.search-results {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.search-result-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-dim);
  transition: background var(--t-base);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.search-result-item:hover { background: var(--bg-3); }
.search-result-item:last-child { border-bottom: none; }

.search-result-img {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  object-fit: cover;
  background: var(--bg-3);
}

.search-result-name {
  font-weight: 500;
  color: var(--text-0);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.search-result-meta {
  font-size: 0.76rem;
  color: var(--text-3);
}

.search-result-price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  font-size: 1rem;
}

/* Suggestions */
.search-suggestions { margin-top: 1rem; }

.search-suggestions__title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: var(--space-3);
}

.search-suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.search-tag {
  padding: 0.4rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.82rem;
  color: var(--text-2);
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
  user-select: none;
}

.search-tag:hover {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--border-mid);
}

/* =============================================
   19. BREADCRUMBS
   ============================================= */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-3);
  padding: var(--space-4) 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--t-base);
}

.breadcrumbs__item a {
  color: var(--text-3);
  transition: color var(--t-base);
}

.breadcrumbs__item a:hover { color: var(--gold); }
.breadcrumbs__item--active { color: var(--text-1); }
.breadcrumbs__sep { color: var(--text-4); font-size: 0.7rem; }

/* =============================================
   20. PRODUCT DETAIL PAGE
   ============================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

/* Image Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.product-gallery__main {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-3);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--space-4);
  border: 1px solid var(--border-dim);
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.product-gallery__main:hover .product-gallery__main-img {
  transform: scale(1.03);
}

.product-gallery__zoom-hint {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  background: rgba(13,6,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-2) var(--space-3);
  font-size: 0.72rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.product-gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--bg-3);
  transition: border-color var(--t-base), transform var(--t-spring);
}

.product-gallery__thumb:hover { transform: translateY(-2px); }
.product-gallery__thumb.active { border-color: var(--gold); }

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info__category {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.product-info__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-0);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.product-info__rating-link {
  font-size: 0.82rem;
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-base);
}

.product-info__rating-link:hover { color: var(--gold); }

.product-info__price-block {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding: var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
}

.product-info__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.product-info__price-old {
  font-size: 1.2rem;
  color: var(--text-4);
  text-decoration: line-through;
}

.product-info__price-save {
  font-size: 0.85rem;
  color: #4CAF50;
  font-weight: 600;
}

.product-info__price-tax {
  font-size: 0.75rem;
  color: var(--text-4);
  margin-top: var(--space-1);
}

.product-info__scent-block {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
}

.product-info__scent-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.product-info__scent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,160,23,0.5);
}

.product-info__scent-notes {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.product-info__scent-note {
  text-align: center;
}

.product-info__scent-note-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 3px;
}

.product-info__scent-note-value {
  font-size: 0.82rem;
  color: var(--text-2);
}

/* Quantity & Add to Cart */
.product-info__add-cart {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.qty-picker {
  display: flex;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.qty-picker__btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 1.2rem;
  font-weight: 600;
  transition: color var(--t-base), background var(--t-base);
}

.qty-picker__btn:hover {
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}

.qty-picker__value {
  min-width: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-0);
  background: none;
  border: none;
  outline: none;
}

.product-info__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.product-info__spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
}

.product-info__spec-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
}

.product-info__spec-value {
  font-size: 0.9rem;
  color: var(--text-0);
  font-weight: 500;
}

.product-info__guarantee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
}

.product-info__guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.product-info__guarantee-icon { font-size: 1.5rem; }

.product-info__guarantee-label {
  font-size: 0.72rem;
  color: var(--text-3);
  line-height: 1.3;
}

/* =============================================
   21. ABo SEITE
   ============================================= */
.abo-hero {
  background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-2) 100%);
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212,160,23,0.1) 0%, transparent 60%);
}

.abo-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 500px));
  gap: var(--space-6);
  padding: var(--space-16) 0 var(--space-20);
  justify-content: center;
  align-items: start;
}

/* === ABO CARD – WAX DRIP DESIGN === */

.abo-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: var(--r-xl);
  overflow: visible;
  transition: transform var(--t-slow), box-shadow var(--t-slow), border-color var(--t-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

.abo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(212,160,23,0.08);
  border-color: rgba(212,160,23,0.28);
}

.abo-card--featured {
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 0 0 1px rgba(212,160,23,0.3), var(--shadow-gold);
  transform: translateY(-12px);
  z-index: 2;
}

.abo-card--featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 0 0 1px rgba(212,160,23,0.5), var(--shadow-gold-lg);
}

/* Badge (replaces popular pill) */
.abo-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  color: var(--bg-0);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  z-index: 3;
}

/* Header with wax look */
.abo-card__header {
  padding: var(--space-8) var(--space-6) 0;
  text-align: center;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer on header */
.abo-card__header::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,220,120,0.06), transparent);
  transform: skewX(-20deg);
  animation: waxShimmer 4s ease-in-out infinite;
}

@keyframes waxShimmer {
  0%   { left: -60%; opacity: 0; }
  30%  { opacity: 1; }
  60%  { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

/* Flame icon */
.abo-card__flame {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-4);
}

.abo-card__flame-icon {
  font-size: 3.2rem;
  display: block;
  filter: drop-shadow(0 0 16px rgba(212,160,23,0.6));
  animation: flameDance 3s ease-in-out infinite;
}

@keyframes flameDance {
  0%,100% { transform: rotate(-2deg) scale(1); }
  33%     { transform: rotate(2deg) scale(1.05); }
  66%     { transform: rotate(-1deg) scale(0.98); }
}

.abo-card__flame-glow {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 12px;
  background: radial-gradient(ellipse, rgba(212,160,23,0.5) 0%, transparent 70%);
  filter: blur(4px);
}

.abo-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--space-3);
  letter-spacing: 0.01em;
}

.abo-card--featured .abo-card__name {
  color: var(--gold-light);
}

.abo-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-1);
}

.abo-card__price-val {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-body);
}

.abo-card--featured .abo-card__price-val {
  color: var(--gold-light);
}

.abo-card__price-cur {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.abo-card__interval {
  font-size: 0.78rem;
  color: rgba(200,168,118,0.7);
  margin-bottom: var(--space-4);
}

.abo-card__interval s {
  opacity: 0.5;
}

/* WAX DRIP SVG */
.abo-card__wax-drip {
  display: block;
  width: 100%;
  height: 52px;
  margin-bottom: -1px;
  position: relative;
}

.abo-card__wax-drip svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Body */
.abo-card__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

.abo-card__desc {
  font-size: 0.83rem;
  color: var(--text-3);
  margin-bottom: var(--space-5);
  line-height: 1.65;
  text-align: center;
}

.abo-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  flex: 1;
}

.abo-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--text-2);
}

.abo-card__feature-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(212,160,23,0.08));
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.abo-card--featured .abo-card__feature-check {
  background: linear-gradient(135deg, rgba(212,160,23,0.3), rgba(212,160,23,0.12));
  border-color: rgba(212,160,23,0.5);
}

.abo-card__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  /* Bigger, thicker button */
  padding: 1rem 1.75rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  border-radius: var(--r-full) !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s ease, transform 0.25s ease, box-shadow 0.3s ease !important;
}

/* Wax fill from bottom – wavy top edge */
.abo-card__cta::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -5%;
  right: -5%;
  height: 130%;
  background: linear-gradient(180deg, var(--gold) 0%, #b8820a 100%);
  transform: translateY(110%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  /* Wavy top edge = wax surface */
  clip-path: polygon(
    0% 12%,
    4% 7%, 8% 2%, 12% 7%, 16% 12%,
    20% 6%, 24% 1%, 28% 6%, 32% 12%,
    36% 6%, 40% 1%, 44% 6%, 48% 12%,
    52% 6%, 56% 1%, 60% 6%, 64% 12%,
    68% 6%, 72% 1%, 76% 6%, 80% 12%,
    84% 6%, 88% 1%, 92% 6%, 96% 12%, 100% 7%,
    100% 100%, 0% 100%
  );
}

.abo-card__cta:hover::before {
  transform: translateY(0);
}

.abo-card__cta:hover {
  color: var(--bg-0) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.35) !important;
}

.abo-card__cta svg {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.abo-card__cta:hover svg {
  transform: translateX(4px);
}

/* Jahres-Box special styles */
.abo-card--king {
  border-color: rgba(212,160,23,0.6);
  background: linear-gradient(180deg, #3D2508 0%, var(--bg-card) 30%);
}

.abo-card--king .abo-card__name {
  color: var(--gold-light);
}

.abo-card--king .abo-card__price-val,
.abo-card--king .abo-card__price-cur {
  color: var(--gold-bright);
}

.abo-card--king .abo-card__cta {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold)) !important;
  color: var(--bg-0) !important;
  border-color: transparent !important;
}

.abo-card--king .abo-card__cta::before {
  background: linear-gradient(180deg, #fff3d0 0%, var(--gold-light) 100%);
}

.abo-card--king .abo-card__cta:hover {
  color: var(--bg-0) !important;
}

.abo-card__badge--king {
  background: linear-gradient(90deg, #8B6914, var(--gold-bright), #8B6914) !important;
  box-shadow: 0 4px 20px rgba(212,160,23,0.6) !important;
}

/* =============================================
   22. BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex;
  flex-direction: column;
}

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

.blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-3);
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-card__img { transform: scale(1.05); }

.blog-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-0);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  flex: 1;
}

.blog-card__excerpt {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-dim);
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-4);
}

.blog-card__read-more {
  font-size: 0.8rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--t-base);
}

.blog-card:hover .blog-card__read-more { gap: var(--space-2); }

/* =============================================
   23. NEWSLETTER
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '🕯️';
  position: absolute;
  font-size: 20rem;
  opacity: 0.02;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 520px;
  margin: var(--space-8) auto 0;
}

.newsletter-input {
  flex: 1;
  background: var(--bg-1);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-full);
  color: var(--text-0);
  font-size: 0.9rem;
  padding: var(--space-4) var(--space-6);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.newsletter-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.newsletter-input::placeholder { color: var(--text-4); }

/* =============================================
   24. RATINGS & REVIEWS
   ============================================= */
.reviews-section {
  padding: var(--space-10) 0;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  margin-bottom: var(--space-8);
}

.reviews-summary__big {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
}

.reviews-summary__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.reviews-summary__count {
  font-size: 0.82rem;
  color: var(--text-3);
}

.reviews-summary__bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.review-bar {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.8rem;
  color: var(--text-3);
}

.review-bar__track {
  height: 6px;
  background: var(--bg-3);
  border-radius: var(--r-full);
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: var(--r-full);
  transition: width 0.8s ease;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  transition: border-color var(--t-base);
}

.review-card:hover { border-color: var(--border); }

.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), var(--bg-5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.review-card__name {
  font-weight: 600;
  color: var(--text-0);
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.75rem;
  color: var(--text-4);
  margin-top: 2px;
}

.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: var(--success);
  margin-top: 3px;
}

.review-card__title {
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: var(--space-2);
}

.review-card__body {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Stars */
.stars {
  display: inline-flex;
  gap: 1px;
}

.star { font-size: 0.9rem; line-height: 1; }
.star--full { color: var(--gold); }
.star--half { color: var(--gold); opacity: 0.6; }
.star--empty { color: var(--bg-5); }

/* =============================================
   25. FOOTER
   ============================================= */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border-dim);
  padding-top: var(--space-20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border-dim);
}

.footer__brand {}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-5);
}

.footer__brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(212,160,23,0.25);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-0);
}

.footer__brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.9rem;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-spring);
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color var(--t-base), transform var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: var(--space-3);
}

.footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-4);
}

.footer__legal-links {
  display: flex;
  gap: var(--space-5);
}

.footer__legal-link {
  font-size: 0.8rem;
  color: var(--text-4);
  transition: color var(--t-base);
}

.footer__legal-link:hover { color: var(--gold); }

.footer__payments {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.footer__payment-badge {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================
   26. FORMS & INPUTS
   ============================================= */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: var(--space-2);
  letter-spacing: 0.03em;
}

.form-label--required::after {
  content: ' *';
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-0);
  font-size: 0.9rem;
  padding: var(--space-4) var(--space-5);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base), background var(--t-base);
  font-family: inherit;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--border-mid);
  background: var(--bg-3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
  background: var(--bg-2);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-4); }

.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-input--error { border-color: var(--danger); }
.form-input--error:focus { box-shadow: 0 0 0 3px rgba(244,67,54,0.15); }

.form-error {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: var(--space-1);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-4);
  margin-top: var(--space-1);
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.form-check__input { display: none; }

.form-check__box {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-mid);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base), border-color var(--t-base);
  background: var(--bg-2);
}

.form-check__input:checked + .form-check__box {
  background: var(--gold);
  border-color: var(--gold);
}

.form-check__label {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* =============================================
   27. ALERTS & NOTIFICATIONS
   ============================================= */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid;
}

.alert--success { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.3); color: #4CAF50; }
.alert--error   { background: rgba(244,67,54,0.1); border-color: rgba(244,67,54,0.3); color: #F44336; }
.alert--warning { background: rgba(255,152,0,0.1); border-color: rgba(255,152,0,0.3); color: #FF9800; }
.alert--info    { background: rgba(33,150,243,0.1); border-color: rgba(33,150,243,0.3); color: #2196F3; }
.alert--gold    { background: var(--gold-pale); border-color: var(--border-mid); color: var(--gold); }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-3);
  max-width: 380px;
}

.toast {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  animation: toastIn 0.35s var(--t-spring) both;
  position: relative;
  overflow: hidden;
}

.toast.removing { animation: toastOut 0.25s ease forwards; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateX(100px) scale(0.95); }
}

.toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  animation: toastProgress 4s linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to   { width: 0%; }
}

.toast__icon { font-size: 1.2rem; flex-shrink: 0; }
.toast__title { font-weight: 600; font-size: 0.875rem; color: var(--text-0); }
.toast__body { font-size: 0.8rem; color: var(--text-3); margin-top: 2px; }

.toast--success .toast__progress { background: var(--success); }
.toast--error .toast__progress   { background: var(--danger); }

/* =============================================
   28. PAGINATION
   ============================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-8) 0;
}

.pagination__btn {
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-md);
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  cursor: pointer;
}

.pagination__btn:hover {
  background: var(--bg-3);
  border-color: var(--border-mid);
  color: var(--text-0);
}

.pagination__btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-0);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.pagination__btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* =============================================
   29. LOADER & SKELETONS
   ============================================= */
@keyframes skeleton-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-3) 0%, var(--bg-4) 50%, var(--bg-3) 100%);
  background-size: 600px;
  animation: skeleton-shimmer 1.5s infinite linear;
  border-radius: var(--r-md);
}

.skeleton-text { height: 1em; margin-bottom: 0.5em; }
.skeleton-text--sm { height: 0.8em; }
.skeleton-text--lg { height: 1.4em; }

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-0);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-5);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__flame {
  font-size: 4rem;
  animation: flicker 1.5s ease infinite;
}

.page-loader__bar {
  width: 200px;
  height: 2px;
  background: var(--bg-3);
  border-radius: var(--r-full);
  overflow: hidden;
}

.page-loader__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
  border-radius: var(--r-full);
  animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
  from { width: 0; }
  to   { width: 100%; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes flicker {
  0%, 100%  { transform: scale(1) rotate(0deg); opacity: 1; }
  25%       { transform: scale(1.05) rotate(1deg); opacity: 0.9; }
  50%       { transform: scale(0.98) rotate(-1deg); opacity: 1; }
  75%       { transform: scale(1.03) rotate(0.5deg); opacity: 0.95; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up     { animation: fadeInUp 0.6s ease both; }
.animate-fade-scale  { animation: fadeInScale 0.5s ease both; }
.animate-float       { animation: float 3s ease-in-out infinite; }

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   31. UTILITY CLASSES
   ============================================= */
.hidden { display: none !important; }
.visible { display: block !important; }
.invisible { visibility: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }

.divider {
  height: 1px;
  background: var(--border-dim);
  margin: var(--space-8) 0;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-4) 0;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =============================================
   32. MOBILE MENU
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6,2,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(-100%);
  transition: transform var(--t-slow);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-10);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-2);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--t-base), transform var(--t-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__link:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.mobile-menu__footer {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-dim);
}

/* =============================================
   33. CHECKOUT & CART
   ============================================= */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-8);
  align-items: start;
}

.checkout-box {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
}

.checkout-box__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-0);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.checkout-box__title-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--bg-0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + var(--space-4));
}

.checkout-summary__header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-dim);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.checkout-summary__body {
  padding: var(--space-5) var(--space-6);
}

.checkout-summary__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-dim);
}

.checkout-summary__item:last-of-type { border-bottom: none; }

.checkout-summary__img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  object-fit: cover;
  background: var(--bg-3);
}

.checkout-summary__name { font-size: 0.85rem; font-weight: 500; }
.checkout-summary__qty  { font-size: 0.75rem; color: var(--text-3); }
.checkout-summary__price { font-size: 0.9rem; font-weight: 600; color: var(--gold); }

.checkout-totals {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border-dim);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: var(--space-2) 0;
}

.checkout-total-row--main {
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
  margin-top: var(--space-2);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-0);
}

.checkout-total-row--main .checkout-total-value { color: var(--gold); font-size: 1.2rem; }

/* Coupon */
.coupon-form {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border-dim);
}

.coupon-input {
  flex: 1;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-0);
  font-size: 0.85rem;
  padding: var(--space-3) var(--space-4);
  outline: none;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: border-color var(--t-base);
}

.coupon-input:focus { border-color: var(--gold); }
.coupon-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--text-4); }

/* =============================================
   34. RESPONSIVE – TABLET (≤ 1200px)
   ============================================= */
@media (max-width: 1200px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-10); }
  .hero__desc { margin: 0 auto var(--space-8); }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .hero__floating-card--3 { display: none; }

  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .abo-plans { grid-template-columns: repeat(2, minmax(280px, 460px)); justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

/* =============================================
   35. RESPONSIVE – MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --space-20: 3rem;
    --space-24: 4rem;
    --space-16: 2.5rem;
  }

  /* Prevent horizontal scroll */
  html, body { overflow-x: hidden; }

  /* Container padding */
  .container { padding-left: var(--space-4); padding-right: var(--space-4); }

  /* Nav */
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .nav__action-btn:not(.nav__cart-btn):not(.nav__search-btn) { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__logo-text { font-size: 1.1rem; }
  .nav__logo-sub { font-size: 0.55rem; letter-spacing: 1.5px; }
  .nav__action-btn { width: 40px; height: 40px; min-width: 44px; min-height: 44px; }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-8); padding: var(--space-8) 0; }
  .hero__visual { max-width: 320px; margin: 0 auto; }
  .hero__floating-card { display: none; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.5rem); line-height: 1.1; }
  .hero__desc { margin: 0 auto var(--space-6); font-size: 0.95rem; max-width: 100%; }
  .hero__actions { justify-content: center; flex-direction: column; gap: var(--space-3); align-items: stretch; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__trust { justify-content: center; flex-wrap: wrap; gap: var(--space-3); }
  .hero__trust-item { font-size: 0.8rem; }
  .hero { min-height: auto; }

  /* Section Headers */
  .section-header { margin-bottom: var(--space-8); }
  .section-header__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-header__desc { font-size: 0.9rem; padding: 0 var(--space-2); }
  .section-header__label { font-size: 0.65rem; }
  .section-header__label::before,
  .section-header__label::after { width: 20px; }

  /* Product Grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-card__name { font-size: 0.85rem; }
  .product-card__price { font-size: 0.9rem; }
  .product-card__actions { gap: var(--space-2); }
  .product-card__btn { padding: var(--space-2) var(--space-3); font-size: 0.75rem; min-height: 44px; }

  /* Category Grid */
  .category-grid { grid-template-columns: 1fr; }
  .category-card:nth-child(1) { grid-column: span 1; }
  .category-card { min-height: 140px; }

  /* Shop Layout + Filters */
  .shop-layout { grid-template-columns: 1fr; }
  .filters-panel {
    position: fixed; bottom: 0; left: 0; right: 0; top: auto;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    max-height: 80vh; overflow-y: auto;
    transform: translateY(100%); transition: transform var(--t-slow);
    z-index: 2000; background: var(--bg-1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    padding: var(--space-6) var(--space-5);
  }
  .filters-panel.open { transform: translateY(0); }

  /* Trust Bar */
  .trust-bar__inner { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .trust-bar__item { padding: var(--space-4) var(--space-3); }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-right: 1px solid var(--border-dim); }
  .trust-bar__icon { font-size: 1.5rem; }
  .trust-bar__title { font-size: 0.85rem; }
  .trust-bar__desc { font-size: 0.75rem; }

  /* Abo Plans */
  .abo-plans { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .abo-card { padding: var(--space-6); }
  .abo-card--featured { transform: none; }
  .abo-card__price { font-size: 2.5rem; }
  .abo-card__features li { font-size: 0.88rem; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card__title { font-size: 1.1rem; }

  /* Product Detail */
  .product-detail { grid-template-columns: 1fr; gap: var(--space-6); }
  .product-gallery { position: static; }
  .product-info__price { font-size: 1.8rem; }
  .product-info__add-cart { flex-direction: column; }
  .product-info__add-cart .btn { width: 100%; min-height: 48px; }

  /* Checkout */
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer__bottom { flex-direction: column; text-align: center; gap: var(--space-4); }
  .footer__payments { justify-content: center; flex-wrap: wrap; }
  .footer__legal-links { flex-wrap: wrap; justify-content: center; gap: var(--space-2) var(--space-4); }
  .footer__legal-link { font-size: 0.78rem; }
  .footer__brand-name { font-size: 1.3rem; }
  .footer__brand-desc { font-size: 0.85rem; }
  .footer__section-title { font-size: 0.85rem; }
  .footer__link { font-size: 0.85rem; min-height: 44px; display: flex; align-items: center; }

  /* Newsletter */
  .newsletter { padding: var(--space-10) 0; }
  .newsletter__title { font-size: 1.5rem; }
  .newsletter__desc { font-size: 0.9rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; min-height: 48px; }

  /* Search Overlay */
  .search-overlay__card { max-width: 95vw; margin: var(--space-4); }
  .search-overlay__input { font-size: 1rem; }

  /* Cart Drawer */
  .cart-drawer { width: 100vw; }
  .cart-drawer__header { padding: var(--space-4); }
  .cart-drawer__footer { padding: var(--space-4); }

  /* Toast */
  .toast-container { left: var(--space-4); right: var(--space-4); bottom: var(--space-4); max-width: none; }

  /* Cursor */
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }

  /* Reviews */
  .reviews-summary { grid-template-columns: 1fr; }

  /* Cookie Banner */
  .cookie-banner__inner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { flex-direction: column; width: 100%; }
  .cookie-banner__actions .btn { width: 100%; }

  /* Kontakt-Seite */
  .contact-grid { grid-template-columns: 1fr; }

  /* Legal Pages */
  .legal-title { font-size: 1.5rem; }
  .legal-content p, .legal-content ul, .legal-content ol { font-size: 0.88rem; }

  /* Recycling */
  .recycling-steps { grid-template-columns: 1fr; }

  /* iOS Input Zoom Prevention */
  input, select, textarea, .form-input, .form-textarea {
    font-size: 16px !important;
  }

  /* Touch Target Minimum 44px */
  .nav__hamburger { min-width: 44px; min-height: 44px; }
  .cart-item__qty-btn { min-width: 44px; min-height: 44px; font-size: 1.1rem; }
  .product-card__add-btn { min-width: 44px; min-height: 44px; }
  .filter-color { min-width: 44px; min-height: 44px; }
  .search-overlay__header-close { min-width: 44px; min-height: 44px; }
  .shop-toolbar__view-btn { min-width: 44px; min-height: 44px; }

  /* Search overlay mobile padding fix */
  .search-overlay__wax-header { padding: 1.2rem 1rem 2rem; }
  .search-overlay__content { padding: 1rem; }

  /* Newsletter section padding fix */
  .newsletter-section, .newsletter { padding-left: var(--space-4); padding-right: var(--space-4); }
}

/* =============================================
   36. RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .container { padding-left: var(--space-3); padding-right: var(--space-3); }

  /* Hero */
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .hero__desc { font-size: 0.88rem; }
  .hero__actions .btn { font-size: 0.9rem; padding: var(--space-3) var(--space-5); }

  /* Nav Logo */
  .nav__logo-text { font-size: 1rem; }
  .nav__logo-icon { font-size: 1.5rem; }

  /* Products: 2 columns but tighter */
  .product-grid { gap: var(--space-2); }
  .product-card__body { padding: var(--space-2) var(--space-3); }
  .product-card__name { font-size: 0.8rem; }
  .product-card__price { font-size: 0.85rem; }
  .product-card__category { font-size: 0.65rem; }
  .product-card__btn { font-size: 0.7rem; padding: var(--space-2); }

  /* Category */
  .category-card__name { font-size: 0.95rem; }
  .category-card__count { font-size: 0.7rem; }

  /* Section */
  .section-header__title { font-size: 1.3rem; }

  /* Trust */
  .trust-bar__inner { gap: var(--space-2); }
  .trust-bar__item { padding: var(--space-3) var(--space-2); }
  .trust-bar__title { font-size: 0.78rem; }
  .trust-bar__desc { font-size: 0.7rem; display: none; }

  /* Abo */
  .abo-card { padding: var(--space-5) var(--space-4); }
  .abo-card__price { font-size: 2rem; }
  .abo-card__name { font-size: 1.3rem; }

  /* Footer */
  .footer { padding-top: var(--space-10); }
  .footer__grid { gap: var(--space-5); }
  .footer__legal-links { gap: var(--space-2) var(--space-3); }
  .footer__payment-badge { font-size: 0.65rem; padding: var(--space-1) var(--space-2); }

  /* Newsletter */
  .newsletter__title { font-size: 1.3rem; }

  /* Blog */
  .blog-card__excerpt { font-size: 0.82rem; -webkit-line-clamp: 2; }

  /* Product Detail */
  .product-info__name { font-size: 1.5rem; }
  .product-info__price { font-size: 1.5rem; }

  /* Checkout */
  .checkout-section { padding: var(--space-4); }
  .checkout-section__title { font-size: 1rem; }

  /* Mobile Menu */
  .mobile-menu__link { font-size: 1.5rem; }
  .mobile-menu__cta .btn { width: 100%; }
}

/* =============================================
   37. RESPONSIVE – VERY SMALL (≤ 375px)
   ============================================= */
@media (max-width: 375px) {
  .container { padding-left: 12px; padding-right: 12px; }

  .hero__title { font-size: 1.6rem; }
  .hero__visual { max-width: 260px; }

  .product-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .product-grid--3 { grid-template-columns: 1fr; }

  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none !important; border-bottom: 1px solid var(--border-dim); }
  .trust-bar__item:last-child { border-bottom: none; }
  .trust-bar__desc { display: block; }

  .section-header__title { font-size: 1.15rem; }

  .nav__logo-text { font-size: 0.9rem; }
  .nav__logo-sub { display: none; }

  .footer__brand-name { font-size: 1.1rem; }
  .footer__legal-links { flex-direction: column; align-items: center; }

  .abo-card__price { font-size: 1.8rem; }

  .mobile-menu__link { font-size: 1.3rem; }
}

/* =============================================
   38. PRINT STYLES
   ============================================= */
@media print {
  .nav, .footer, .cart-drawer, .toast-container, #cursor-dot, #cursor-ring { display: none; }
  body { background: white; color: black; }
  .product-card { break-inside: avoid; }
}
