/* =========================================
   Solstrati — Main CSS
   Luxury Eyewear Brand
   ========================================= */

:root {
  --gold:       #C9A84C;
  --gold-light: #E0C070;
  --gold-dark:  #A07830;
  --bg:         #0A0A0A;
  --bg-2:       #111111;
  --bg-card:    #141414;
  --border:     #222222;
  --border-2:   #2A2A2A;
  --text:       #F5F0E8;
  --text-muted: #8A8078;
  --text-dim:   #5A5450;
  --white:      #FFFFFF;
  --error:      #E05050;
  --success:    #50B050;
  --info:       #5090E0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --r-sm: 2px;
  --r:    4px;
  --r-lg: 8px;

  --transition: 0.25s ease;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.7);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); }

/* ---- Utility ---- */
.container    { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.gold         { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--gold);
  color: #0A0A0A;
  text-align: center;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ---- NAVIGATION ---- */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-style: italic;
  flex-shrink: 0;
}
.nav-logo .oslash { font-style: normal; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-right: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icon {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  padding: 4px;
}
.nav-icon:hover { color: var(--text); }
.nav-icon svg   { width: 20px; height: 20px; }

.nav-cart-count {
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  margin-top: -12px;
}

.nav-lang {
  display: flex;
  gap: 6px;
  font-size: 12px;
}
.nav-lang a {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 4px;
  transition: color var(--transition);
}
.nav-lang a:hover,
.nav-lang a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ---- FLASH MESSAGES ---- */
.flash-wrap { max-width: 1320px; margin: 0 auto; padding: 12px 24px 0; }
.alert {
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert--success { background: rgba(80,176,80,0.12); border: 1px solid rgba(80,176,80,0.3); color: #80D080; }
.alert--error   { background: rgba(224,80,80,0.12); border: 1px solid rgba(224,80,80,0.3); color: #E08080; }
.alert--info    { background: rgba(80,144,224,0.12);border: 1px solid rgba(80,144,224,0.3);color: #80B0E0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #0A0A0A;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--dark {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--dark:hover { background: var(--bg-2); border-color: var(--border-2); }
.btn--sm  { padding: 9px 18px; font-size: 12px; }
.btn--lg  { padding: 16px 40px; font-size: 14px; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  padding: 80px 48px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  white-space: pre-line;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.6;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero p {
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  height: 100%;
  min-height: 92vh;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 20%;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
  pointer-events: none;
}

/* ---- FEATURES BAR ---- */
.features-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.features-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-item h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.feature-item p  { font-size: 11px; color: var(--text-dim); }

/* ---- SECTION ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- HOMEPAGE FEATURED SLIDER ---- */
.product-slider-wrap { position: relative; }
.product-slider { overflow: hidden; }
.product-slider-track { display: flex; gap: 24px; transition: transform 0.4s ease; }
.slider-card { flex: 0 0 calc(25% - 18px); min-width: 0; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--bg-card); border: 1px solid var(--border);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; transition: background var(--transition);
}
.slider-btn:hover { background: var(--bg-2); }
.slider-btn--prev { left: -20px; }
.slider-btn--next { right: -20px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-2); cursor: pointer; transition: background var(--transition);
}
.slider-dot.active { background: var(--gold); }

/* ---- COLLECTION HEADER ---- */
.collection-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.collection-link { font-size: 13px; color: var(--gold); letter-spacing: 0.05em; }
.collection-link:hover { opacity: 0.8; }

/* ---- PRODUCT TIPS SECTION ---- */
.product-tips-section { padding: 0; border-top: 1px solid var(--border); overflow: hidden; }
.tip-editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
  border-bottom: 1px solid var(--border);
}
.tip-editorial-row:last-child { border-bottom: none; }
.tip-editorial-img { overflow: hidden; }
.tip-editorial-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tip-editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px;
  text-align: left;
}
.tip-editorial-text h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text);
}
.tip-editorial-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tip-editorial-text .tip-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.product-card {
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.product-card:hover { z-index: 2; }
.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F0E8D8;
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
/* Broken image fallback */
.product-card-image img[src=""],
.product-card-image img:not([src]) {
  display: none;
}
.img-placeholder {
  width: 100%; height: 100%;
  background: #F0E8D8;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.img-placeholder span { font-family: var(--font-display); font-size: 2.5rem; color: rgba(201,168,76,0.35); font-style: italic; }
.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}
.product-card-badge.sold-out { background: var(--border-2); color: var(--text-muted); }

.product-card-info {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text);
  letter-spacing: 0.03em;
}
.product-card-price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.variant-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.variant-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.variant-dot.active,
.variant-dot:hover {
  border-color: var(--gold);
  transform: scale(1.2);
}

/* ---- SHOP LAYOUT ---- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.shop-filters,
.shop-sidebar {
  position: sticky;
  top: 88px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
}

/* Shop filter groups (new naming) */
.shop-filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.shop-filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.shop-filter-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ---- SHOP HERO BANNER ---- */
.shop-hero {
  position: relative;
  background: #0E0C09;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
}
/* Warm amber radial glow on right side */
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 85% 50%, rgba(140,90,30,0.38) 0%, transparent 65%),
    radial-gradient(ellipse 40% 80% at 75% 20%, rgba(201,168,76,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px;
  pointer-events: none;
  z-index: 1;
}
.shop-hero-watermark {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 13rem);
  font-style: italic;
  color: rgba(201,168,76,0.06);
  letter-spacing: -0.03em;
  user-select: none;
  white-space: nowrap;
}
/* Hero content: mirrors shop-layout grid so text sits in sidebar column */
.shop-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}
.shop-hero-inner {
  /* stays in the 260px sidebar column — nothing needed in the 1fr column */
}
.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 8px 0 12px;
  color: var(--text);
}
.shop-hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO — consistent banner for all interior pages
   ============================================================ */
.page-hero {
  position: relative;
  background: #0E0C09;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}
.page-hero > .container {
  width: 100%;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/header_image.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 0;
  text-align: left;
}
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .page-hero { min-height: 160px; }
  .page-hero-content { padding: 40px 0; }
}

.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.filter-option:hover { color: var(--text); }
.filter-option input[type="checkbox"] { accent-color: var(--gold); }
.filter-option.active { color: var(--gold); }

/* ---- Color filter items (sidebar: text + small dot) ---- */
.filter-color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4) inset;
}
.filter-option.active .filter-color-dot {
  box-shadow: 0 0 0 2px var(--gold), 0 0 0 1px rgba(0,0,0,0.4) inset;
}

/* Legacy swatch (kept for compatibility) */
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.color-swatch-item {
  cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.color-swatch-item input { display: none; }
.color-swatch-box {
  display: block; width: 26px; height: 26px; border-radius: 5px;
  border: 2px solid var(--border-2); transition: all 0.15s;
}
.color-swatch-item.active .color-swatch-box { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.color-swatch-label {
  font-size: 9px; color: var(--text-dim); max-width: 34px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.color-swatch-item.active .color-swatch-label { color: var(--gold); }

/* ---- Price Range Slider ---- */
.price-range-wrap { padding: 4px 0 0; }
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-range-labels span { color: var(--text); font-weight: 500; }
.price-slider-container {
  position: relative;
  height: 4px;
  margin: 12px 0 24px;
}
.price-slider-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--border-2);
  border-radius: 2px;
}
.price-slider-fill {
  position: absolute;
  top: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  left: 0%; right: 0%;
}
.price-slider-container input[type="range"] {
  -webkit-appearance: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
  margin: 0;
  padding: 0;
  outline: none;
}
.price-slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  pointer-events: auto;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--gold-dark);
  transition: transform 0.1s;
}
.price-slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.price-slider-container input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  pointer-events: auto;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--gold-dark);
}

/* ---- Clear filters button ---- */
.filter-clear-btn {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-top: 16px;
  transition: all var(--transition);
}
.filter-clear-btn:hover { color: var(--text); border-color: var(--border-2); }

.shop-main {}
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.shop-count { font-size: 13px; color: var(--text-dim); }
.shop-sort  {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--r);
  font-size: 13px;
  cursor: pointer;
}

/* ---- PRODUCT DETAIL ---- */
/* ============================================
   PRODUCT BREADCRUMB BAR
   ============================================ */
.product-breadcrumb-bar {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.product-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  align-items: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-breadcrumb a { color: var(--text-dim); transition: color var(--transition); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb span { color: var(--text-dim); }

/* ============================================
   PRODUCT DETAIL GRID
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 48px 0 64px;
}

/* ---- Gallery (left) ---- */
.product-gallery {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-sm);
  z-index: 2;
}
.product-main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #C8B99A;
  border-radius: var(--r-lg);
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}

/* Thumbnails: horizontal strip with arrows */
.product-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.thumb-arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.thumb-arrow:hover { border-color: var(--gold); color: var(--gold); }
.product-thumbs {
  display: flex;
  gap: 8px;
  overflow: hidden;
  flex: 1;
}
.product-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: #C8B99A;
}
.product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Info (right) ---- */
.product-info {}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 10px;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.product-price {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}
.product-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

/* ---- Frame dimensions row ---- */
.product-dimensions {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.product-dim-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.product-dim-item:last-child { border-right: none; }
.product-dim-icon {
  width: 36px;
  height: 18px;
  color: var(--text-muted);
}
.product-dim-icon svg { width: 100%; height: 100%; }
.product-dim-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.product-dim-value small { font-size: 10px; color: var(--text-dim); margin-left: 1px; }
.product-dim-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- Color selector ---- */
.product-color-section { margin-bottom: 20px; }
.product-color-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-color-label span { color: var(--text); font-weight: 500; letter-spacing: 0; text-transform: none; }
.product-variant-dots {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.product-variant-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: 2px solid transparent;
  outline-offset: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.product-variant-dot:hover { outline-color: var(--border-2); transform: scale(1.1); }
.product-variant-dot.active { outline-color: var(--gold); outline-width: 2px; }
.product-lens-info {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ---- Stock badge ---- */
.product-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.product-stock-badge.in-stock { background: rgba(80,176,80,0.1); color: #80D080; border: 1px solid rgba(80,176,80,0.2); }
.product-stock-badge.out-of-stock { background: rgba(80,80,80,0.1); color: var(--text-dim); border: 1px solid var(--border); }

/* ---- Add to cart row ---- */
.product-atc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.btn--full-mobile { flex: 1; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  overflow: hidden;
  flex-shrink: 0;
}
.qty-btn {
  width: 40px;
  height: 48px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--bg-2); }
.qty-input {
  width: 52px;
  height: 48px;
  background: var(--bg-card);
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  text-align: center;
  font-size: 15px;
}
.btn-add-cart { height: 48px; }

/* ---- USP strip (3 cols) ---- */
.product-usps-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.product-usp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
}
.product-usp-col:last-child { border-right: none; }
.product-usp-col svg { color: var(--gold); flex-shrink: 0; }
.product-usp-col strong { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); display: block; }
.product-usp-col small { font-size: 11px; color: var(--text-dim); line-height: 1.4; }

/* ---- Specs collapsible ---- */
.product-specs-details {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}
.product-specs-details summary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
.product-specs-details summary::after { content: '+'; font-size: 16px; color: var(--text-dim); }
.product-specs-details[open] summary::after { content: '−'; }
.product-specs-table { border-top: 1px solid var(--border); }
.product-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.product-spec-row:last-child { border-bottom: none; }
.product-spec-label { color: var(--text-muted); }
.product-spec-value { color: var(--text); font-weight: 500; }

.product-add-to-cart { flex: 1; }

/* ---- TIPS SECTION ---- */
.tips-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.tip-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
}
.tip-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 16px;
}
.tip-image {
  height: 200px;
  overflow: hidden;
  margin: -40px -32px 24px;
}
.tip-image img { width: 100%; height: 100%; object-fit: cover; }
.tip-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.tip-desc { font-size: 14px; line-height: 1.7; }

/* ---- BLOG ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.blog-card { background: var(--bg-card); cursor: pointer; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-2);
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card-info { padding: 24px; }
.blog-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-card-excerpt { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.blog-card-meta { font-size: 11px; color: var(--text-dim); }
.blog-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  display: inline-block;
}

/* ---- CART ---- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: var(--r);
  overflow: hidden;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.cart-item-variant { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--error); }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky;
  top: 80px;
}
.cart-summary-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.cart-summary-row.total {
  font-weight: 600;
  font-size: 16px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  color: var(--text);
}
.cart-summary-row .label { color: var(--text-muted); }

/* ---- CHECKOUT ---- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.form-section-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ---- AUTH ---- */
.auth-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
}
.auth-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
  font-style: italic;
}
.auth-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 8px;
}
.auth-desc {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.code-input {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 20px;
  color: var(--gold);
}
.code-input:focus { border-color: var(--gold); outline: none; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 24px;
  text-align: center;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 32px auto 0;
  gap: 0;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: none;
  padding: 14px 20px;
  color: var(--text);
  font-size: 14px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-btn {
  background: var(--gold);
  color: #0A0A0A;
  border: none;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-btn:hover { background: var(--gold-light); }

/* ---- OUR STORY ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-grid-img { aspect-ratio: 4/3; overflow: hidden; }
.story-grid-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- STORES ---- */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  overflow: hidden;
}
.store-card-photo {
  flex-shrink: 0;
  width: 150px;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--bg-2);
}
.store-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.store-card-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.store-card-body { padding: 28px 24px; flex: 1; min-width: 0; }
.store-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.store-card-company { font-size: 12px; color: var(--gold); margin-bottom: 16px; letter-spacing: 0.05em; }
.store-detail { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; display: flex; gap: 8px; align-items: flex-start; }
.store-detail svg { flex-shrink: 0; margin-top: 2px; }

/* ---- ACCOUNT ---- */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}
.account-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.account-nav a:last-child { border-bottom: none; }
.account-nav a:hover, .account-nav a.active {
  background: var(--bg-2);
  color: var(--text);
}
.account-nav a.active { border-left: 2px solid var(--gold); }

/* ---- FOOTER ---- */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}
.footer-about p { font-size: 13px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* .page-hero styles moved to the PAGE HERO section above the filter group */

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  align-items: center;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--gold); }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--gold); border-color: var(--gold); color: #0A0A0A; }

/* ---- TEAM PAGE ---- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.team-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---- QUALITY SPLIT SECTION ---- */
.quality-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.quality-image { overflow: hidden; }
.quality-image img { width: 100%; height: 100%; object-fit: cover; }
.quality-content {
  background: var(--bg-card);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quality-content h2 {
  white-space: pre-line;
  margin-bottom: 24px;
}

/* ---- MAINTENANCE ---- */
.maintenance {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.maintenance h1 { color: var(--gold); margin-bottom: 16px; }

/* ---- 404 ---- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-code {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 16px;
}

/* ---- LOADING SPINNER ---- */
.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   PAGE CONTENT (CMS pagina's: FAQ, privacy, etc.)
   ============================================ */
.page-content {
  text-align: left;
}
.page-content > h2:first-child {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
}
.page-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.page-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-content p em {
  color: var(--text-dim);
  font-style: italic;
  font-size: 0.875rem;
}
.page-content ul,
.page-content ol {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.page-content ul li,
.page-content ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.7;
}
.page-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.page-content ol {
  counter-reset: sl-counter;
}
.page-content ol li {
  counter-increment: sl-counter;
}
.page-content ol li::before {
  content: counter(sl-counter) '.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}
.page-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover { color: var(--text); }
.page-content strong {
  color: var(--text);
  font-weight: 600;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 24px;
  font-size: 0.9rem;
}
.page-content table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-content table td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.page-content table tr:last-child td { border-bottom: none; }

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

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 24px; }
  .hero-image { height: 60vw; min-height: 360px; }
  .hero-image::after { background: linear-gradient(to top, var(--bg) 0%, transparent 40%); }
  .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .quality-section { grid-template-columns: 1fr; }
  .quality-content { padding: 48px 24px; }
  .account-layout { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid    { grid-template-columns: 1fr; }
  .stores-grid  { grid-template-columns: 1fr; }
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-2);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 99;
  }
  .nav-links.open li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: 1 / -1; }
  .topbar { gap: 12px; font-size: 11px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid .team-photo { order: -1; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}


/* ==============================================
   VIRTUAL TRY-ON
   ============================================== */

/* Geselecteerde kaart — gold border bovenop de standaard product-card */
.tryon-product-card { cursor: pointer; }
.tryon-product-card.tryon-selected {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.tryon-product-card.tryon-selected .tryon-select-btn {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}

/* Check badge (verborgen tot geselecteerd) */
.tryon-check-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: #0A0A0A;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
}
.tryon-product-card.tryon-selected .tryon-check-badge { display: flex; }

/* Variant dot als button (erft variant-dot stijl) */
.tryon-swatch { border: none; cursor: pointer; padding: 0; }

/* Upload zone */
.tryon-upload-zone {
  border: 2px dashed var(--border-2);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  margin-bottom: 4px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tryon-upload-zone:hover,
.tryon-upload-zone.dragover { border-color: var(--gold); }

/* Spinner */
.tryon-spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border-2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: tryon-spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes tryon-spin { to { transform: rotate(360deg); } }

/* Resultatenkaarten */
.tryon-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.tryon-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.tryon-result-img { aspect-ratio: 1/1; overflow: hidden; background: #F0E8D8; position: relative; }
.tryon-result-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tryon-result-img--fallback { opacity: 0.65; }
.tryon-result-error {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(183,28,28,0.85); color: #fff;
  font-size: 11px; padding: 6px; text-align: center;
}
.tryon-result-info { padding: 16px; }
.tryon-result-name { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.tryon-result-color { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.tryon-result-price { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.tryon-result-info .btn { display: block; text-align: center; }

/* Kortingscode banner */
.tryon-coupon-banner {
  background: linear-gradient(135deg, #1a1508 0%, #201c0a 100%);
  border: 1px solid var(--gold);
  color: #fff;
  text-align: center;
  padding: 28px;
  margin: 32px 0;
}

/* Kwaliteitsfeedback */
.tryon-quality-feedback { font-size: 13px; }

/* Responsive */
@media (max-width: 768px) {
  .tryon-results-grid { grid-template-columns: 1fr; }
}
