/* ==========================================================================
   Afghaanse Maaltijden — Huisstijl
   ========================================================================== */

:root {
  --zwart: #1a1512;
  --goud: #c9962c;
  --goud-licht: #d4a942;
  --creme: #faf7f2;
  --bruin: #3d2b1f;
  --wit: #ffffff;
  --grijs: #6b6259;
  --rood: #b03a2e;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(26, 21, 18, 0.1);
  --shadow-lg: 0 10px 40px rgba(26, 21, 18, 0.18);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--zwart);
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--zwart);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--goud);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Knoppen
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-align: center;
}

.btn-goud {
  background: var(--goud);
  color: var(--zwart);
}

.btn-goud:hover {
  background: var(--goud-licht);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-donker {
  background: var(--bruin);
  color: var(--creme);
}

.btn-donker:hover {
  background: var(--zwart);
}

.btn-outline {
  border-color: var(--goud);
  color: var(--creme);
  background: transparent;
}

.btn-outline:hover {
  background: var(--goud);
  color: var(--zwart);
}

/* --------------------------------------------------------------------------
   Sectie-decoratie (gouden ornament + mihrab divider)
   -------------------------------------------------------------------------- */

.sectie {
  padding: 4rem 0;
}

.sectie-titel {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.sectie-sub {
  text-align: center;
  color: var(--grijs);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.75rem auto 1.5rem;
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--goud));
}

.ornament::after {
  background: linear-gradient(90deg, var(--goud), transparent);
}

.ornament svg {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Topbar
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--zwart);
  color: var(--goud-licht);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 101;
}

body.home .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: transform 0.4s ease;
}

body.home .topbar.is-hidden {
  transform: translateY(-100%);
}

.topbar-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Infinite loop announce bar */
.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}

.marquee-dot {
  color: var(--goud);
  font-size: 0.6rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--creme);
  border-bottom: 1px solid rgba(201, 150, 44, 0.25);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow var(--transition);
}

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

/* Transparante header op homepage — crème achtergrond fadet in bij scrollen */
body.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}

body.home .site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(201, 150, 44, 0.25);
  box-shadow: var(--shadow);
}

/* Witte tekst/iconen als header transparant is */
body.home .site-header:not(.is-scrolled) .main-nav > ul > li > a,
body.home .site-header:not(.is-scrolled) .icon-btn {
  color: var(--wit);
}

body.home .site-header:not(.is-scrolled) .icon-btn:hover {
  color: var(--goud-licht);
  background: rgba(255, 255, 255, 0.12);
}

body.home .site-header:not(.is-scrolled) .logo img {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.logo img {
  height: 78px;
  width: auto;
  transition: height var(--transition);
  filter: drop-shadow(0 1px 2px rgba(61, 43, 31, 0.35));
}

.site-header.is-scrolled .logo img {
  height: 58px;
}

.main-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--goud);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--wit);
  border: 1px solid rgba(201, 150, 44, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}

.dropdown a::after {
  display: none;
}

.dropdown a:hover {
  background: var(--creme);
  color: var(--goud);
}

/* Header iconen */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.icon-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--zwart);
  position: relative;
  transition: color 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.icon-btn:hover {
  color: var(--goud);
  background: rgba(212, 169, 66, 0.15);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--goud);
  color: var(--zwart);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-count.is-empty {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    justify-content: center;
    position: relative;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .hamburger {
    position: absolute;
    left: 1rem;
  }

  .header-icons {
    position: absolute;
    right: 1rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--zwart);
    z-index: 200;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav a {
    color: var(--creme);
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown a {
    color: var(--goud-licht);
    font-size: 0.95rem;
    padding: 0.4rem 0;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--creme);
  }
}

.nav-close {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 18, 0.6);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--zwart);
  color: var(--creme);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 10rem 0 6rem;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  color: var(--creme);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero h1 em {
  color: var(--goud-licht);
  font-style: italic;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.hero-link {
  color: var(--goud-licht);
  font-weight: 500;
  border-bottom: 1px solid var(--goud-licht);
  padding-bottom: 2px;
  transition: var(--transition);
}

.hero-link:hover {
  color: var(--wit);
  border-color: var(--wit);
}

/* Mihrab boog-frame in hero */
.hero-arch {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(212, 169, 66, 0.45);
  border-radius: 200px 200px 12px 12px;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 700px) {
  .hero-arch {
    inset: 0.75rem;
    border-radius: 100px 100px 8px 8px;
  }

  .hero-inner {
    padding: 4.5rem 1rem 5rem;
  }
}

/* Mihrab divider onder secties */
.mihrab-divider {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 0;
  color: var(--goud);
}

/* --------------------------------------------------------------------------
   Filter-pills
   -------------------------------------------------------------------------- */

.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.pill {
  border: 1.5px solid var(--bruin);
  background: transparent;
  color: var(--bruin);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.pill:hover {
  border-color: var(--goud);
  color: var(--goud);
}

.pill.is-active {
  background: var(--zwart);
  border-color: var(--zwart);
  color: var(--goud-licht);
}

/* --------------------------------------------------------------------------
   Productgrid + kaarten
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.75rem;
}

/* Mobiel: horizontale slider met scroll-snap */
@media (max-width: 700px) {
  .filter-pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -4vw;
    padding: 0 4vw 0.25rem;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-grid {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -4vw;
    padding: 0.25rem 4vw 1rem;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-grid > .product-card {
    flex: 0 0 78%;
    max-width: 300px;
    scroll-snap-align: center;
  }

  .product-grid > p {
    flex: 1 1 100%;
  }
}

.product-card {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

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

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.badge-bestseller {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--goud);
  color: var(--zwart);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
}

.badge-uitverkocht {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--rood);
  color: var(--wit);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
}

.product-card.is-uitverkocht .product-media img {
  filter: grayscale(0.7);
  opacity: 0.75;
}

.product-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.product-naam {
  font-size: 1.15rem;
}

.product-beschrijving {
  font-size: 0.85rem;
  color: var(--grijs);
  min-height: 2.4em;
  flex: 1;
}

/* Macro-badges */
.macro-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}

.macro {
  background: var(--creme);
  border: 1px solid rgba(201, 150, 44, 0.35);
  border-radius: 6px;
  text-align: center;
  padding: 0.35rem 0.15rem;
  line-height: 1.3;
}

.macro strong {
  display: block;
  font-size: 0.8rem;
  color: var(--zwart);
}

.macro span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grijs);
}

.macro-varieert {
  font-size: 0.8rem;
  color: var(--grijs);
  font-style: italic;
  padding: 0.35rem 0;
}

/* Prijs */
.product-prijs {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
}

.prijs-nu {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bruin);
}

.prijs-oud {
  font-size: 0.95rem;
  color: var(--grijs);
  text-decoration: line-through;
}

.product-eenheid {
  display: block;
  font-size: 0.8rem;
  color: var(--grijs);
  margin-top: 0.15rem;
  font-weight: 500;
}

/* Quantity + toevoegen */
.product-acties {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bruin);
  border-radius: 50px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-stepper button {
  background: none;
  border: none;
  width: 32px;
  height: 38px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bruin);
  transition: var(--transition);
}

.qty-stepper button:hover {
  background: var(--creme);
  color: var(--goud);
}

.qty-stepper input {
  width: 34px;
  border: none;
  text-align: center;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.btn-toevoegen {
  flex: 1;
  background: var(--zwart);
  color: var(--goud-licht);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
}

.btn-toevoegen:hover:not(:disabled) {
  background: var(--goud);
  color: var(--zwart);
}

.btn-toevoegen:disabled {
  background: #d5cfc7;
  color: #8a8178;
  cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   USP-strip
   -------------------------------------------------------------------------- */

.usp-strip {
  background: var(--wit);
  border-block: 1px solid rgba(201, 150, 44, 0.25);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  padding: 3rem 0;
}

.usp {
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

/* Fijne verticale scheidingslijn tussen badges */
.usp:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  inset-inline-end: calc(-0.875rem - 0.5px);
  width: 1px;
  height: 76%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 150, 44, 0.28),
    transparent
  );
}

.usp-icoon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), transparent 60%),
    linear-gradient(150deg, rgba(201, 150, 44, 0.16), rgba(201, 150, 44, 0.06));
  border: 1px solid rgba(201, 150, 44, 0.4);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.7),
    0 2px 10px rgba(61, 43, 31, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bruin);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition),
    border-color var(--transition), color var(--transition);
}

/* Tweede, dunne ring voor een 'zegel'-uitstraling */
.usp-icoon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 150, 44, 0.35);
  transition: border-color var(--transition), transform var(--transition);
}

.usp-icoon svg {
  position: relative;
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp:hover .usp-icoon {
  transform: translateY(-3px);
  border-color: var(--goud);
  color: var(--goud);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    0 8px 20px rgba(201, 150, 44, 0.22);
}

.usp:hover .usp-icoon::before {
  border-color: rgba(201, 150, 44, 0.6);
  transform: rotate(30deg);
}

.usp h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.usp p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--grijs);
  max-width: 22ch;
  margin-inline: auto;
}

@media (max-width: 800px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    padding: 2.5rem 0;
  }

  /* Scheidingslijn alleen tussen de twee kolommen */
  .usp:not(:last-child)::after {
    inset-inline-end: calc(-0.5rem - 0.5px);
    top: 18%;
    height: 64%;
  }

  .usp:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .usp-icoon {
    width: 58px;
    height: 58px;
  }

  .usp-icoon svg {
    width: 26px;
    height: 26px;
  }
}

/* --------------------------------------------------------------------------
   Promo-banner ("NIEUW")
   -------------------------------------------------------------------------- */

.promo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--creme);
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.55);
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
}

.promo-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  color: var(--goud-licht);
  font-weight: 600;
}

.promo-content h2 {
  color: var(--creme);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin: 0.5rem 0 1.5rem;
}

/* --------------------------------------------------------------------------
   Categorie-banners (breed, 2 naast elkaar)
   -------------------------------------------------------------------------- */

.cat-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cat-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.cat-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-banner:hover img {
  transform: scale(1.05);
}

.cat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 21, 18, 0.85));
}

.cat-banner-label {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  color: var(--creme);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 700px) {
  .cat-banners {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Storytelling ("Van Onze Keuken Naar Jouw Bord")
   -------------------------------------------------------------------------- */

.story {
  background: var(--zwart);
  color: var(--creme);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0;
}

.story h2 {
  color: var(--creme);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.story h2 em {
  color: var(--goud-licht);
  font-style: italic;
}

.story p {
  color: rgba(250, 247, 242, 0.8);
  margin-bottom: 1rem;
  font-size: 0.96rem;
}

.story .btn {
  margin-top: 1rem;
}

.story-img {
  border-radius: 160px 160px var(--radius) var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 169, 66, 0.4);
  padding: 0.6rem;
}

.story-img img {
  border-radius: 150px 150px 6px 6px;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .story-grid {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .story-img img {
    min-height: 280px;
  }
}

/* --------------------------------------------------------------------------
   Waarom-blok
   -------------------------------------------------------------------------- */

.waarom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.waarom-lijst li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(201, 150, 44, 0.35);
}

.waarom-lijst li:last-child {
  border-bottom: none;
}

.waarom-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--goud);
  color: var(--zwart);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}

.waarom-lijst strong {
  display: block;
}

.waarom-lijst p {
  font-size: 0.88rem;
  color: var(--grijs);
}

@media (max-width: 800px) {
  .waarom-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Categorie-tegels (3 kaarten)
   -------------------------------------------------------------------------- */

.cat-tegels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-tegel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cat-tegel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-tegel:hover img {
  transform: scale(1.06);
}

.cat-tegel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 21, 18, 0.85));
}

.cat-tegel-label {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  text-align: center;
  color: var(--creme);
}

.cat-tegel-label h3 {
  color: var(--creme);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.cat-tegel-label span {
  font-size: 0.82rem;
  color: var(--goud-licht);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 800px) {
  .cat-tegels {
    grid-template-columns: 1fr;
  }

  .cat-tegel {
    aspect-ratio: 16 / 9;
  }
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.blog-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.blog-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body time {
  font-size: 0.75rem;
  color: var(--goud);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.blog-body h3 {
  font-size: 1.2rem;
  margin: 0.4rem 0 0.5rem;
}

.blog-body p {
  font-size: 0.88rem;
  color: var(--grijs);
  margin-bottom: 1rem;
}

.blog-lees {
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bruin);
}

.blog-card:hover .blog-lees {
  color: var(--goud);
}

@media (max-width: 800px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--zwart);
  color: rgba(250, 247, 242, 0.75);
  padding: 4rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-kolom h3 {
  color: var(--goud-licht);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-kolom ul li {
  margin-bottom: 0.5rem;
}

.footer-kolom a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-kolom a:hover {
  color: var(--goud-licht);
}

.footer-kolom address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 2;
}

.footer-onder {
  border-top: 1px solid rgba(212, 169, 66, 0.25);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 169, 66, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--goud-licht);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--goud);
  color: var(--zwart);
}

.betaal-iconen {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.betaal-iconen span {
  background: var(--wit);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--zwart);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.copyright {
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  padding: 1rem 0 0.5rem;
  color: rgba(250, 247, 242, 0.5);
}

.powered-by {
  font-size: 0.75rem;
  width: 100%;
  text-align: center;
  padding-bottom: 1.5rem;
  color: rgba(250, 247, 242, 0.4);
}

.powered-by a {
  color: var(--goud-licht);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.powered-by a:hover {
  color: var(--goud);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Mini-cart drawer
   -------------------------------------------------------------------------- */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: var(--wit);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(201, 150, 44, 0.3);
  background: var(--zwart);
  color: var(--creme);
}

.cart-drawer-header h2 {
  color: var(--goud-licht);
  font-size: 1.3rem;
}

.cart-drawer-header .icon-btn {
  color: var(--creme);
}

.cart-melding {
  background: rgba(201, 150, 44, 0.15);
  color: var(--bruin);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  display: none;
}

.cart-melding.is-visible {
  display: block;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-leeg {
  text-align: center;
  color: var(--grijs);
  padding: 3rem 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(201, 150, 44, 0.35);
  align-items: center;
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-naam {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-prijs {
  font-size: 0.85rem;
  color: var(--grijs);
}

.cart-item-acties {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.cart-item-acties .qty-stepper button {
  width: 26px;
  height: 28px;
  font-size: 0.95rem;
}

.cart-item-acties .qty-stepper input {
  width: 28px;
  font-size: 0.85rem;
}

.cart-item-verwijder {
  background: none;
  border: none;
  color: var(--grijs);
  padding: 0.3rem;
  transition: var(--transition);
}

.cart-item-verwijder:hover {
  color: var(--rood);
}

.cart-item-totaal {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--bruin);
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(201, 150, 44, 0.3);
  background: var(--creme);
}

.cart-subtotaal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cart-drawer-footer .btn {
  width: 100%;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 18, 0.6);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* Sticky mobiele cart-knop */
.sticky-cart-btn {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--zwart);
  color: var(--goud-licht);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 700px) {
  .sticky-cart-btn.is-visible {
    display: inline-flex;
  }
}

/* --------------------------------------------------------------------------
   Cookie-banner
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--zwart);
  color: var(--creme);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 400;
  font-size: 0.88rem;
  text-align: center;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Formulieren (contact, checkout)
   -------------------------------------------------------------------------- */

.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.form-veld {
  margin-bottom: 1.25rem;
}

.form-veld label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-veld input,
.form-veld textarea,
.form-veld select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(61, 43, 31, 0.3);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--creme);
  transition: var(--transition);
}

.form-veld input:focus,
.form-veld textarea:focus,
.form-veld select:focus {
  outline: none;
  border-color: var(--goud);
  box-shadow: 0 0 0 3px rgba(201, 150, 44, 0.2);
}

.form-veld input.is-fout,
.form-veld textarea.is-fout,
.form-veld select.is-fout {
  border-color: var(--rood);
}

.veld-fout {
  color: var(--rood);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.veld-fout.is-visible {
  display: block;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-rij {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Checkout besteloverzicht
   -------------------------------------------------------------------------- */

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.besteloverzicht {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  position: sticky;
  top: 120px;
}

.besteloverzicht h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.overzicht-rij {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(201, 150, 44, 0.35);
  font-size: 0.92rem;
}

.overzicht-foto {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.overzicht-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.overzicht-naam {
  font-weight: 600;
  color: var(--donkerbruin);
}

.overzicht-prijs {
  color: var(--goud);
  font-weight: 700;
}

.overzicht-regels {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.overzicht-regel {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--grijs);
  padding: 0.25rem 0;
}

.overzicht-totaal {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin-top: 0.5rem;
}

.form-akkoord {
  margin: 1.5rem 0;
}

.akkoord-box {
  background: #faf8f5;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.akkoord-box:has(input:checked) {
  border-color: var(--goud);
  background: #fdf9f0;
}

.akkoord-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.6;
}

.akkoord-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.akkoord-vakje {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #c5bfb6;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  transition: all 0.2s ease;
  color: #fff;
}

.akkoord-vakje svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.akkoord-check input:checked + .akkoord-vakje {
  background: var(--goud);
  border-color: var(--goud);
}

.akkoord-check input:checked + .akkoord-vakje svg {
  opacity: 1;
  transform: scale(1);
}

.akkoord-check input:focus-visible + .akkoord-vakje {
  outline: 2px solid var(--goud);
  outline-offset: 2px;
}

.akkoord-tekst {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.akkoord-tekst strong {
  font-size: 0.95rem;
  color: var(--donkerbruin);
}

.akkoord-tekst span {
  color: var(--grijs);
}

.akkoord-tekst a {
  color: var(--goud);
  text-decoration: underline;
  font-weight: 600;
}

.form-akkoord.is-fout .akkoord-box {
  border-color: var(--rood);
  background: #fef5f5;
}

.form-akkoord.is-fout .akkoord-vakje {
  border-color: var(--rood);
}

/* Legal text pages */
.legal-tekst {
  line-height: 1.8;
  color: var(--zwart);
}

.legal-tekst h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--bruin);
}

.legal-tekst h2:first-child {
  margin-top: 0;
}

.legal-tekst p {
  margin-bottom: 1rem;
}

.legal-tekst ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-tekst li {
  margin-bottom: 0.4rem;
}

.legal-tekst a {
  color: var(--goud);
  text-decoration: underline;
}

/* Cross-sell in cart drawer */
.cart-cross-sell {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cart-cross-sell h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grijs);
  margin-bottom: 0.5rem;
}

.cart-cross-sell-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
}

.cart-cross-sell-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-cross-sell-info {
  flex: 1;
  min-width: 0;
}

.cart-cross-sell-naam {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-cross-sell-prijs {
  font-size: 0.8rem;
  color: var(--grijs);
}

.cart-cross-sell-btn {
  flex-shrink: 0;
  background: var(--goud);
  color: var(--wit);
  border: none;
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cart-cross-sell-btn:hover {
  background: var(--goud-licht);
}

/* Newsletter signup */
.newsletter-section {
  background: var(--bruin);
  color: var(--creme);
  padding: 3rem 0;
  text-align: center;
}

.newsletter-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
}

.newsletter-form button {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: var(--goud);
  color: var(--wit);
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--goud-licht);
}

.newsletter-succes {
  color: var(--goud-licht);
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 18, 0.85);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

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

.search-modal {
  background: var(--wit);
  border-radius: var(--radius);
  width: min(500px, 92%);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.search-sluit {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  outline: none;
}

.search-input:focus {
  border-color: var(--goud);
}

.search-resultaten {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 50vh;
  overflow-y: auto;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.15s;
}

.search-result:hover {
  background: var(--creme);
}

.search-result img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-result div {
  display: flex;
  flex-direction: column;
}

.search-result span {
  font-size: 0.85rem;
  color: var(--goud);
  font-weight: 600;
}

.search-leeg {
  text-align: center;
  color: var(--grijs);
  padding: 1rem;
}

/* Product detail pagina */
.product-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--grijs);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--goud);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--grijs);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-detail-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

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

.product-detail-media .badge-bestseller,
.product-detail-media .badge-uitverkocht {
  position: absolute;
  top: 1rem;
  z-index: 2;
}

.product-detail-media .badge-bestseller {
  left: 1rem;
}

.product-detail-media .badge-uitverkocht {
  right: 1rem;
}

.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--donkerbruin);
}

.product-detail-beschrijving {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--grijs);
  margin-bottom: 1rem;
}

.product-gewicht {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--grijs);
  margin-bottom: 1rem;
}

.product-gewicht svg {
  color: var(--goud);
}

.product-macro {
  margin-bottom: 1.25rem;
}

.product-detail-prijs {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-detail-prijs .prijs-nu {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--goud);
}

.product-detail-prijs .prijs-oud {
  font-size: 1.15rem;
  color: var(--grijs);
  text-decoration: line-through;
}

.product-detail-acties {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-detail-acties .qty-stepper {
  flex-shrink: 0;
}

.btn-toevoegen-detail {
  flex: 1;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.product-usps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.product-usp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--donkerbruin);
}

.product-usp svg {
  color: var(--goud);
  flex-shrink: 0;
}

.product-detail-sections {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.detail-sectie {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.detail-sectie h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--bruin);
  margin-bottom: 0.75rem;
}

.detail-sectie p {
  line-height: 1.7;
  color: var(--zwart);
}

.allergenen-lijst {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.allergeen-badge {
  background: #fff3cd;
  color: #856404;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #ffe09e;
}

.allergeen-geen {
  background: #d4edda;
  color: #155724;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #c3e6cb;
}

.allergeen-waarschuwing {
  font-size: 0.8rem;
  color: var(--grijs);
  font-style: italic;
}

.loader {
  width: 40px;
  height: 40px;
  border: 3px solid var(--creme);
  border-top-color: var(--goud);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}

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

.product-detail-terug {
  margin-top: 2.5rem;
  text-align: center;
}

.product-detail-terug .btn-outline {
  color: var(--donkerbruin);
  border-color: var(--donkerbruin);
}

.product-detail-terug .btn-outline:hover {
  color: var(--wit);
  background: var(--donkerbruin);
}

/* Product card link styling */
.product-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-link img {
  transition: transform 0.3s ease;
}

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

.product-naam-link {
  color: inherit;
  text-decoration: none;
}

.product-naam-link:hover {
  color: var(--goud);
}

@media (max-width: 850px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .besteloverzicht {
    position: static;
    order: -1;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-detail-sections {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-detail-info h1 {
    font-size: 1.5rem;
  }

  .product-detail-acties {
    flex-direction: column;
    align-items: stretch;
  }

  .product-detail-acties .qty-stepper {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Pagina-hero (subpagina's)
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--zwart);
  color: var(--creme);
  text-align: center;
  padding: 3.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--creme);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
}

.page-hero p {
  color: var(--goud-licht);
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.faq-lijst {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--goud);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-antwoord {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--grijs);
}

/* --------------------------------------------------------------------------
   Over ons
   -------------------------------------------------------------------------- */

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.over-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.over-grid p {
  margin-bottom: 1rem;
  color: var(--grijs);
}

@media (max-width: 800px) {
  .over-grid {
    grid-template-columns: 1fr;
  }
}

/* Succes-melding na formulier */
.succes-melding {
  background: #e8f5e9;
  border: 1px solid #66bb6a;
  color: #1b5e20;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
}

.succes-melding.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Reviews / testimonials
   -------------------------------------------------------------------------- */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--wit);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  position: relative;
  border-top: 3px solid var(--goud);
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(201, 150, 44, 0.25);
  line-height: 1;
}

.review-sterren {
  color: var(--goud);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--grijs);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-auteur {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--zwart);
  color: var(--goud-licht);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-auteur strong {
  display: block;
  font-size: 0.9rem;
}

.review-auteur span {
  font-size: 0.75rem;
  color: var(--grijs);
}

@media (max-width: 800px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Scroll-reveal animaties
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Back-to-top knop
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--zwart);
  color: var(--goud-licht);
  border: 1px solid rgba(212, 169, 66, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 80;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--goud);
  color: var(--zwart);
}

/* --------------------------------------------------------------------------
   Gratis verzending progressbar (cart drawer)
   -------------------------------------------------------------------------- */

.verzend-progress {
  margin-bottom: 1rem;
}

.verzend-progress p {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--bruin);
}

.verzend-progress p strong {
  color: var(--goud);
}

.verzend-balk {
  height: 8px;
  background: rgba(61, 43, 31, 0.15);
  border-radius: 50px;
  overflow: hidden;
}

.verzend-balk-vul {
  height: 100%;
  background: linear-gradient(90deg, var(--goud), var(--goud-licht));
  border-radius: 50px;
  transition: width 0.4s ease;
}

/* --------------------------------------------------------------------------
   Extra polish
   -------------------------------------------------------------------------- */

.btn-goud {
  background: linear-gradient(135deg, var(--goud) 0%, var(--goud-licht) 100%);
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--goud), var(--goud-licht));
  opacity: 0;
  transition: var(--transition);
  z-index: 3;
}

.product-card:hover::after {
  opacity: 1;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-badge {
  border: 1px solid rgba(212, 169, 66, 0.5);
  color: var(--goud-licht);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  background: rgba(26, 21, 18, 0.35);
}

::selection {
  background: var(--goud);
  color: var(--zwart);
}

/* --------------------------------------------------------------------------
   Catering
   -------------------------------------------------------------------------- */

.catering-usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.catering-usp {
  background: var(--wit);
  border: 1px solid rgba(201, 150, 44, 0.2);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
}

.catering-usp-icoon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.catering-usp h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--donkerbruin);
}

.catering-usp p {
  font-size: 0.88rem;
  color: var(--grijs);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .catering-usps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .catering-usps {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Checkout — bezorg/afhaal keuze & WhatsApp knop
   -------------------------------------------------------------------------- */

.radio-keuze-groep {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-keuze {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(61, 43, 31, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--creme);
  text-align: center;
}

.radio-keuze:hover {
  border-color: var(--goud);
}

.radio-keuze input[type="radio"] {
  accent-color: var(--goud);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.radio-keuze:has(input:checked) {
  border-color: var(--goud);
  background: rgba(201, 150, 44, 0.1);
  color: var(--donkerbruin);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
}

/* --------------------------------------------------------------------------
   Taal switcher (dropdown)
   -------------------------------------------------------------------------- */

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: 1px solid rgba(201, 150, 44, 0.3);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--zwart);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.2;
}

.lang-dropdown-toggle:hover {
  border-color: var(--goud);
  color: var(--goud);
}

.lang-dropdown-chevron {
  transition: transform 0.25s ease;
}

.lang-dropdown.is-open .lang-dropdown-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 140px;
  background: var(--creme);
  border: 1px solid rgba(201, 150, 44, 0.25);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1000;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--zwart);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.lang-dropdown-item:hover {
  background: rgba(201, 150, 44, 0.1);
  color: var(--goud);
}

.lang-dropdown-item.is-active {
  color: var(--goud);
  font-weight: 700;
}

body.home .site-header:not(.is-scrolled) .lang-dropdown-toggle {
  color: var(--wit);
  border-color: rgba(255, 255, 255, 0.4);
}

body.home .site-header:not(.is-scrolled) .lang-dropdown-toggle:hover {
  color: var(--goud-licht);
  border-color: var(--goud-licht);
}

body.home .site-header:not(.is-scrolled) .lang-dropdown-menu {
  background: var(--creme);
}

/* --------------------------------------------------------------------------
   RTL support (Arabisch & Farsi)
   -------------------------------------------------------------------------- */

body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .header-inner {
  flex-direction: row-reverse;
}

body.rtl .main-nav ul {
  flex-direction: row-reverse;
}

body.rtl .filter-pills {
  flex-direction: row-reverse;
}

body.rtl .footer-grid {
  direction: rtl;
}

body.rtl .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

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

body.rtl .review-grid,
body.rtl .blog-grid,
body.rtl .cat-tegels,
body.rtl .usp-grid,
body.rtl .product-grid {
  direction: rtl;
}

body.rtl .story-grid {
  direction: rtl;
}

body.rtl .over-grid {
  direction: rtl;
}

body.rtl .checkout-grid {
  direction: rtl;
}

body.rtl .form-rij {
  flex-direction: row-reverse;
}

body.rtl .hero-cta {
  flex-direction: row-reverse;
}

body.rtl .hero-badges {
  flex-direction: row-reverse;
}
