/* ==========================================================================
   Frietzakjes.nl Redesign - CSS
   Gebaseerd op Figma design, CRO-geoptimaliseerd
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  /* Colors */
  --color-topbar: #1B3A4B;
  --color-header-bg: #ffffff;
  --color-page-bg: #FFF9F0;
  --color-white: #ffffff;
  --color-primary: #2D9B4E;
  --color-primary-hover: #248a42;
  --color-accent: #E8A530;
  --color-accent-hover: #d4952a;
  --color-text: #1A1A1A;
  --color-text-secondary: #5A6670;
  --color-text-light: #8A929A;
  --color-border: #E5E7EB;
  --color-card-bg: #ffffff;
  --color-badge-green: #ECFDF5;
  --color-badge-green-text: #047857;
  --color-badge-red: #FEF2F2;
  --color-badge-red-text: #DC2626;
  --color-star: #F59E0B;
  --color-overlay: rgba(27, 58, 75, 0.85);

  /* Typography */
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --container-padding: 24px;
  --section-gap: 80px;
  --card-radius: 12px;
  --btn-radius: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);

  /* Fun colors */
  --color-fun-red: #E8443A;
  --color-fun-yellow: #FFD23F;
  --color-fun-orange: #FF8C42;
  --color-fun-teal: #2EC4B6;
  --color-fun-pink: #FF6B8A;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

/* ---------- Fun Keyframes ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dash-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes confetti-fall {
  0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(20px) rotate(180deg); opacity: 0; }
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-page-bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ---------- Focus & Accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Display Font for Headings ---------- */
h1, h2, h3,
.hero__title,
.section-heading__title,
.cta-banner__title,
.contact-form__title,
.product-info__title {
  font-family: var(--font-display);
}

/* ---------- Grain Texture Overlay ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--color-topbar);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.topbar__icon {
  font-size: 14px;
}

/* ---------- Header ---------- */
.header {
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  flex-shrink: 0;
}

.header__logo-icon {
  font-size: 28px;
}

.header__logo span {
  color: var(--color-accent);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--btn-radius);
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
  background: var(--color-badge-green);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--color-text);
  transition: all var(--transition-fast);
  position: relative;
}

.header__action-btn:hover {
  background: var(--color-page-bg);
  color: var(--color-primary);
}

.header__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__account {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--btn-radius);
  transition: all var(--transition-fast);
}

.header__account:hover {
  background: var(--color-page-bg);
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--color-page-bg);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.breadcrumbs__link {
  transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
  color: var(--color-primary);
}

.breadcrumbs__separator {
  font-size: 12px;
  opacity: 0.5;
}

.breadcrumbs__current {
  font-weight: 600;
  color: var(--color-text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--btn-radius);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 155, 78, 0.35);
}

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

.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn__arrow {
  font-size: 16px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow-x: clip;
  overflow-y: visible;
  background: linear-gradient(135deg, #FFF3D1 0%, #FFEAB8 50%, #FFF3D1 100%);
}

/* Decorative dots pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.06;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero__title-highlight {
  position: relative;
  display: inline;
}

.hero__title-highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 10px;
  background: var(--color-fun-yellow);
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.hero__badge-icon {
  color: var(--color-primary);
  font-size: 18px;
}

.hero__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-img {
  width: 170%;
  max-width: none;
  object-fit: contain;
}

/* ---------- USP Strip ---------- */
.usp-strip {
  background: var(--color-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.usp-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--card-radius);
  transition: all var(--transition-base);
}

.usp-item:hover {
  background: var(--color-page-bg);
}

.usp-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF3D1;
  color: var(--color-accent);
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.usp-item:hover .usp-item__icon {
  transform: scale(1.1) rotate(-3deg);
}

.usp-item__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.usp-item__text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ---------- Section Headings ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
  background: var(--color-badge-green);
  padding: 4px 14px;
  border-radius: 20px;
}

.section-heading__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-heading__subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Product Card ---------- */
.products-section {
  padding: var(--section-gap) 0;
  background: #FFF9F0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  border: 1px solid var(--color-border);
}

.product-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--color-accent);
}

.product-card:nth-child(1) { border-top: 3px solid var(--color-fun-red); }
.product-card:nth-child(2) { border-top: 3px solid #4A90D9; }
.product-card:nth-child(3) { border-top: 3px solid var(--color-fun-yellow); }
.product-card:nth-child(4) { border-top: 3px solid var(--color-fun-teal); }

.product-card__image {
  position: relative;
  padding: 0;
  background: #FAFAFA;
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__badge--new {
  background: var(--color-badge-green);
  color: var(--color-badge-green-text);
}

.product-card__badge--hot {
  background: var(--color-badge-red);
  color: var(--color-badge-red-text);
}

.product-card__badge--sale {
  background: var(--color-accent);
  color: var(--color-white);
}

.product-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition-base);
}

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

.product-card__action-btn {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.product-card__action-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.product-card__body {
  padding: 20px;
}

.product-card__category {
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__title a:hover {
  color: var(--color-primary);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.product-card__price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
}

.product-card__price-old {
  font-size: 14px;
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* .product-card__colors verwijderd 11 mei 2026:
   Willem wil ALLE kleuren als losse producten, niet als variatie-swatches op de card.
   Elke kleur heeft een eigen card in het grid. Cross-navigatie loopt via
   .color-siblings op de productpagina (zie onderaan deze file). */

/* ---------- Categories Section ---------- */
.categories-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, #ffffff 0%, #F0F7F2 100%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__image {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.category-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.category-card__count {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.category-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition-base);
}

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

/* ---------- Social Proof / Reviews ---------- */
.reviews-section {
  padding: var(--section-gap) 0;
  background: #FFFBF2;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--color-fun-yellow);
  opacity: 0.3;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--color-star);
  font-size: 16px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-badge-green);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-card__name {
  font-weight: 600;
  font-size: 14px;
}

.review-card__date {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ---------- Google Rating Badge ---------- */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 600;
}

.google-rating__stars {
  color: var(--color-star);
}

.google-rating__score {
  font-weight: 800;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1B3A4B 0%, #2A5A6E 50%, #1B3A4B 100%);
  color: var(--color-white);
  padding: var(--section-gap) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,210,63,0.08) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,140,66,0.06) 1.5px, transparent 1.5px);
  background-size: 50px 50px, 35px 35px;
  background-position: 0 0, 17px 17px;
}

.cta-banner__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 16px;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ---------- Shop Page ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 0;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--color-text-secondary);
  padding: 6px 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.filter-item:hover {
  color: var(--color-primary);
}

.filter-item__count {
  background: var(--color-page-bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* Price range */
.price-range {
  margin-top: 12px;
}

.price-range__slider {
  width: 100%;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  position: relative;
  margin-bottom: 12px;
}

.price-range__fill {
  position: absolute;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  width: 100%;
}

.price-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

/* Color filter */
.color-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.color-filter:hover {
  border-color: var(--color-primary);
}

.color-filter__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.shop-toolbar__count {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.shop-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-toolbar__view {
  display: flex;
  gap: 4px;
}

.shop-toolbar__view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
}

.shop-toolbar__view-btn.active,
.shop-toolbar__view-btn:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.shop-toolbar__sort {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-size: 14px;
  font-family: inherit;
  background: var(--color-white);
  cursor: pointer;
}

/* Shop product grid */
.shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---------- Product Detail Page ---------- */
.product-detail {
  padding: 48px 0 var(--section-gap);
}

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 120px;
}

.product-gallery__main {
  position: relative;
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 40px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__main img {
  max-height: 400px;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
}

.product-gallery__thumb {
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  border-color: var(--color-primary);
}

.product-gallery__thumb img {
  max-height: 56px;
  object-fit: contain;
}

/* Product info */
.product-info__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--color-badge-green);
  color: var(--color-badge-green-text);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-info__stock-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.product-info__nav {
  display: flex;
  gap: 16px;
  float: right;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.product-info__nav a:hover {
  color: var(--color-primary);
}

.product-info__title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-info__price {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
}

.product-info__description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

/* Product options */
.product-option {
  margin-bottom: 24px;
}

.product-option__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.product-option__colors {
  display: flex;
  gap: 8px;
}

.product-option__color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.product-option__color.active {
  border-color: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-text);
}

.product-option__color:hover {
  transform: scale(1.1);
}

.product-option__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-size: 14px;
  font-family: inherit;
  background: var(--color-white);
  cursor: pointer;
}

/* Quantity + Add to cart */
.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  overflow: hidden;
}

.quantity-selector__btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: background var(--transition-fast);
}

.quantity-selector__btn:hover {
  background: var(--color-page-bg);
}

.quantity-selector__value {
  width: 50px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.product-total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.product-total__label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.product-total__price {
  font-size: 32px;
  font-weight: 800;
}

/* Trust badges on product page */
.product-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.product-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.product-trust__icon {
  color: var(--color-primary);
  font-size: 16px;
}

/* ---------- Contact Page ---------- */
.contact-section {
  padding: 48px 0 var(--section-gap);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map {
  min-height: 500px;
  background: #E5E3DF;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.contact-form__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-form__subtitle {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
  background: var(--color-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 155, 78, 0.1);
}

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

/* Contact info cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-info-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-badge-green);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.contact-info-card__title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ---------- FAQ Section ---------- */
.faq-section {
  padding: var(--section-gap) 0;
  background: var(--color-white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-page-bg);
  border-radius: var(--card-radius);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-primary);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  display: none;
}

.faq-item.active .faq-item__answer {
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-topbar);
  color: var(--color-white);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand-text {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer__heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  opacity: 0.5;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.5;
}

.footer__payment {
  display: flex;
  gap: 12px;
  font-size: 20px;
}

/* ---------- Decorative Elements ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco--fry-1 {
  top: 12%;
  left: 5%;
  animation: float 4s ease-in-out infinite;
  transform: rotate(-15deg);
  opacity: 0.6;
}

.deco--fry-2 {
  bottom: 18%;
  left: 42%;
  animation: float-reverse 5s ease-in-out infinite;
  transform: rotate(20deg);
  opacity: 0.5;
}

.deco--fork {
  top: 20%;
  right: 8%;
  animation: float 6s ease-in-out infinite 1s;
  transform: rotate(25deg);
  opacity: 0.4;
}

.deco--dot-1 {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-fun-red);
  top: 25%;
  left: 38%;
  animation: bounce-subtle 3s ease-in-out infinite;
  opacity: 0.35;
}

.deco--dot-2 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-fun-teal);
  top: 65%;
  left: 8%;
  animation: bounce-subtle 4s ease-in-out infinite 0.5s;
  opacity: 0.3;
}

.deco--dot-3 {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-fun-yellow);
  bottom: 15%;
  right: 15%;
  animation: bounce-subtle 3.5s ease-in-out infinite 1s;
  opacity: 0.4;
}

.deco--ketchup {
  top: -20px;
  right: 8%;
  animation: float 5s ease-in-out infinite;
}

.deco--mayo {
  bottom: 40px;
  left: 3%;
  animation: float-reverse 6s ease-in-out infinite;
}

/* ---------- SEO Content ---------- */
.seo-content {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.seo-content__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.seo-content__main h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.seo-content__main h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
}

.seo-content__main p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.seo-content__main ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.seo-content__main ul li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.seo-content__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.seo-content__main a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

.seo-content__card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--color-border);
}

.seo-content__card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.seo-content__card details {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.seo-content__card details:last-child {
  border-bottom: none;
}

.seo-content__card summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seo-content__card summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: transform 0.2s;
}

.seo-content__card details[open] summary::after {
  content: '-';
}

.seo-content__card details p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 8px;
}

.seo-content__card details a {
  color: var(--color-primary);
  font-weight: 600;
}

/* ---------- Contact Channels ---------- */
.contact-channels {
  padding: 80px 0;
  background: var(--color-white);
}

.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-channel:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.contact-channel--whatsapp:hover {
  border-color: #25D366;
}

.contact-channel__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.contact-channel--whatsapp .contact-channel__icon {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.contact-channel__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-channel__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.contact-channel__sub {
  font-size: 13px;
  color: var(--color-text-secondary);
  opacity: 0.7;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto 32px;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__image-wrapper {
    display: none;
  }

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

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

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .product-detail__inner {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 300px;
  }

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

  .seo-content__grid {
    grid-template-columns: 1fr;
  }

  .contact-channels__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
    --container-padding: 16px;
  }

  .deco {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__item:not(:first-child) {
    display: none;
  }

  .nav {
    display: none;
  }

  .header__menu-toggle {
    display: flex;
  }

  .usp-strip__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .product-trust {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 20px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .shop-products {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

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

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

/* ==========================================================================
   FASE 1 ADDITIONS — Willem's feedback (11 mei 2026)
   1. Tegelvullende productafbeeldingen (zie .product-card__image hierboven)
   2. Kleurschakelaar: thumbnails van zusterproducten op productpagina
   3. Taalswitcher in header (NL / EN-US / EN-GB / DE)
   ========================================================================== */

/* ---------- Color siblings (kleurschakelaar productpagina) ---------- */
/* Vervangt de oude .product-option__colors round swatches.
   Toont thumbnails van zusterproducten — elk een eigen URL. */
.color-siblings {
  margin-bottom: 28px;
}

.color-siblings__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-text);
}

.color-siblings__current {
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: 13px;
}

.color-siblings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
}

.color-sibling {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  background: #FAFAFA;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.color-sibling img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.color-sibling:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.color-sibling[aria-current="true"] {
  border-color: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-text);
}

.color-sibling[aria-current="true"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.color-sibling__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity var(--transition-fast);
  padding: 0 4px;
}

.color-sibling:hover .color-sibling__name,
.color-sibling[aria-current="true"] .color-sibling__name {
  opacity: 1;
}

/* ---------- Language switcher (header) — pure HTML <details>, no JS ---------- */
.lang-switcher {
  position: relative;
  display: inline-block;
  margin-right: 4px;
}

.lang-switcher > summary {
  list-style: none;
  cursor: pointer;
}

.lang-switcher > summary::-webkit-details-marker {
  display: none;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--btn-radius);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-switcher > summary:hover .lang-switcher__toggle,
.lang-switcher[open] .lang-switcher__toggle {
  background: var(--color-page-bg);
  color: var(--color-primary);
}

.lang-switcher__flag {
  font-size: 16px;
  line-height: 1;
}

.lang-switcher__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.lang-switcher[open] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.lang-switcher__option:hover {
  background: var(--color-page-bg);
}

.lang-switcher__option[aria-current="true"] {
  background: var(--color-badge-green);
  color: var(--color-badge-green-text);
}

.lang-switcher__option-meta {
  margin-left: auto;
  font-size: 11px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .lang-switcher__toggle .lang-switcher__label {
    display: none;
  }
  .lang-switcher__toggle {
    padding: 8px;
  }
}

/* Tegelvullend ook respecteren op shop list view */
.shop-products .product-card__image {
  aspect-ratio: 1;
}

/* Op productpagina blijft de hoofdgallery met witte tile (showcase) — niet tegelvullend. */

/* ==========================================================================
   FASE 1 AESTHETIC v2 — paper/editorial uplift (11 mei 2026)
   Doel: weg van de generieke SaaS-landing-look. Richting: papier/print,
   editorial magazine, friet-kraampje, ambachtelijk drukwerk.
   Wijzigt: hero, USP strip → marquee, section headings, product cards.
   Behoudt: kleurpalet, font-stack, lang switcher, color siblings, footer.
   ========================================================================== */

:root {
  --color-ink: #131313;
  --color-paper: #F5EBD3;
  --color-paper-dark: #E8D9B8;
  --color-stamp-red: #C8341F;
  --color-stamp-blue: #1F4E78;
}

/* Bumped grain voor meer papier-textuur */
body::after {
  opacity: 0.07;
}

/* ---------- A. HERO redo: asymmetric, type-driven ---------- */
.hero {
  min-height: auto;
  padding: clamp(40px, 7vw, 100px) 0 clamp(60px, 9vw, 140px);
  background:
    radial-gradient(ellipse at 20% 30%, #FFE9B0 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, #FFD68A 0%, transparent 60%),
    #FFF1C9;
  overflow: hidden;
}

/* Vervang de symmetrische dot-pattern door schuine inkt-strepen */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -8deg,
      transparent 0,
      transparent 38px,
      rgba(19, 19, 19, 0.04) 38px,
      rgba(19, 19, 19, 0.04) 39px
    );
  background-size: auto;
  opacity: 1;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 0;
  padding: 0;
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 12px;
}

/* Eyebrow boven titel: editorial nummering ipv pill */
.hero__eyebrow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin-bottom: 24px;
  opacity: 0.75;
}

.hero__eyebrow::before {
  content: '';
  width: 64px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  transform: translateY(-3px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin: 0 0 24px;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0;
}

.hero__title .hero__title-stamp {
  display: inline;
  padding: 0;
  border: none;
  border-radius: 0;
  transform: none;
  margin: 0;
  background: transparent;
  font-style: normal;
  text-transform: none;
  font-size: 1em;
  letter-spacing: inherit;
  position: relative;
}

.hero__title .hero__title-stamp::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.06em;
  height: 0.18em;
  background: var(--color-fun-yellow);
  z-index: -1;
  border-radius: 1px;
  transform: rotate(-0.8deg);
}

/* Oude highlight-bar uitschakelen — vervangen door stamp */
.hero__title-highlight::after {
  display: none;
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--color-ink);
  max-width: 460px;
  margin: 0 0 32px;
  opacity: 0.85;
  font-style: italic;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

/* Ditched: hero__badges in oude vinkjes-vorm */
.hero__badges { display: none; }

/* Sticker-stempels die op het beeld liggen */
.hero__sticker {
  position: absolute;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 4;
  white-space: nowrap;
  box-shadow: 0 6px 14px -8px rgba(0,0,0,0.25);
  border: 1.5px solid currentColor;
}

.hero__sticker--fsc {
  top: 14%;
  right: 0;
  background: #FFFFFF;
  color: var(--color-stamp-blue);
  transform: rotate(3deg);
}

.hero__sticker--bulk {
  bottom: 22%;
  left: 38%;
  background: var(--color-fun-yellow);
  color: var(--color-ink);
  transform: rotate(-2deg);
}

.hero__sticker--nl {
  bottom: -4px;
  right: 22%;
  background: var(--color-stamp-red);
  color: #FFFFFF;
  border-color: var(--color-stamp-red);
  transform: rotate(1.5deg);
  font-size: 11px;
  padding: 8px 14px;
}

.hero__image-wrapper {
  position: relative;
  z-index: 1;
  margin-right: -8%;
  align-self: end;
}

.hero__image-img {
  width: 130%;
  max-width: none;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,0.18));
  margin-left: -10%;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .hero__sticker--bulk { left: 4%; bottom: 32%; }
  .hero__sticker--fsc { right: 8%; }
  .hero__sticker--nl { bottom: 0; right: 8%; }
  .hero__image-wrapper { margin: 0; }
  .hero__image-img { width: 100%; margin: 0; }
}

/* ---------- B. USP strip → newspaper marquee ---------- */
.usp-strip {
  background: var(--color-topbar);
  color: var(--color-paper);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.usp-strip__inner {
  display: block;
  gap: 0;
  overflow: hidden;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  gap: 44px;
  animation: marquee-slide 50s linear infinite;
  white-space: nowrap;
  padding-right: 44px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.marquee-item__dot {
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.marquee-item--accent {
  color: var(--color-fun-yellow);
  font-style: italic;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Verberg oude usp-item structuur als die toevallig nog rendert */
.usp-strip .usp-item { display: none; }

/* ---------- C. Editorial section headings ---------- */
.section-heading--editorial {
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(19,19,19,0.18);
}

.section-heading--editorial .section-heading__number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--color-text-secondary);
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
}

.section-heading--editorial .section-heading__number::after {
  content: ' /';
  color: var(--color-text-light);
  font-weight: 400;
}

.section-heading--editorial .section-heading__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-ink);
  margin: 0;
  text-wrap: balance;
  max-width: 24ch;
}

.section-heading--editorial .section-heading__meta {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  font-feature-settings: 'tnum';
  white-space: nowrap;
}

.section-heading--editorial .section-heading__label,
.section-heading--editorial .section-heading__subtitle {
  display: none;
}

@media (max-width: 768px) {
  .section-heading--editorial {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .section-heading--editorial .section-heading__meta {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}

/* ---------- D. Product cards: paper-bag aesthetic ---------- */
.product-card {
  background: var(--color-paper);
  border-radius: 8px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  box-shadow: 0 8px 18px -14px rgba(0,0,0,0.22);
  overflow: visible;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px -16px rgba(0,0,0,0.25);
  border-color: rgba(19,19,19,0.22);
}

/* Verwijder de top-color-borders van kaartpositie */
.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3),
.product-card:nth-child(4) {
  border-top: 1px solid rgba(19, 19, 19, 0.12);
}

/* Tape-strip aan de bovenkant — verwijderd in v2.5 voor refined look. */

/* Product image: behoud tegelvullend, met inset border */
.product-card__image {
  background: #ECDFC4;
  border-radius: 0;
  position: relative;
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(19, 19, 19, 0.08);
  pointer-events: none;
  z-index: 2;
}

/* Sticker badge: lichte paper-shadow, kleine rotatie voor karakter */
.product-card__badge {
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid currentColor;
  box-shadow: 0 4px 10px -6px rgba(0,0,0,0.2);
  transform: rotate(-3deg);
  z-index: 3;
}

.product-card__badge--new {
  background: #FFFFFF;
  color: var(--color-stamp-blue);
}

.product-card__badge--hot {
  background: var(--color-stamp-red);
  color: #FFFFFF;
  border-color: var(--color-stamp-red);
}

.product-card__badge--sale {
  background: var(--color-fun-yellow);
  color: var(--color-ink);
  border-color: var(--color-ink);
}

/* Body: papier-look */
.product-card__body {
  padding: 18px 20px 22px;
  background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-dark) 140%);
  position: relative;
}

.product-card__category {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-ink);
  margin-bottom: 14px;
}

/* Prijs: clean display-font, geen kader of rotatie */
.product-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transform: none;
  font-family: var(--font-display);
  margin-bottom: 0;
}

.product-card__price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}

.product-card__price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--color-text-light);
}

/* Quick-action knoppen subtieler */
.product-card__action-btn {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(19,19,19,0.1);
}

@media (max-width: 768px) {
  .products-grid > .product-card,
  .shop-products > .product-card {
    transform: none !important;
  }
}

/* ---------- Section heading wrapper opmaak — algemene polish ---------- */
.products-section,
.categories-section,
.reviews-section {
  background: var(--color-page-bg);
}

.categories-section {
  background: linear-gradient(180deg, var(--color-page-bg) 0%, #F8E8C5 100%);
}

.reviews-section {
  background: var(--color-page-bg);
  border-top: 1px solid rgba(19,19,19,0.08);
}
