/* ===============================
   thai sky - compacte, strakke css
   =============================== */

/* basis reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font: 16px/1.7 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Poppins", Arial, sans-serif;
  color: #333;
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
main {
  padding: 30px 20px 40px;
}
h1,
h2,
h3 {
  color: #b2bc35;
  margin-bottom: 10px;
}
p {
  margin-bottom: 15px;
}

/* variabelen */
:root {
  --thai-red: #e22e20;
  --ink: #111111;
  --text: #333333;
  --muted: #666666;
  --gold: #b2bc35;
  --ff-head: "Playfair Display", serif;
  --ff-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* typografie */
html {
  font-size: 100%;
}
body {
  font-family: var(--ff-body);
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.003em;
}
h1 {
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  margin: 0 0 10px;
}
h2 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  margin: 24px 0 10px;
}
h3 {
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 18px 0 8px;
}
p,
li {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}
strong {
  font-weight: 600;
}
a {
  color: var(--thai-red);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-top: 4px solid var(--thai-red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* logo - NIET aanpassen qua grootte */
.brand-logo {
  height: clamp(72px, 8vw, 110px);
  width: auto;
  object-fit: contain;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  background: transparent;
}
.nav-link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s, opacity 0.2s;
}
.nav-link:hover {
  color: #000;
  opacity: 0.85;
}
.nav-link.active::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--thai-red);
  margin: 4px auto 0;
}

.kerst-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, #b30021, #e63946, #0f9b0f);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 18px rgba(226, 46, 32, 0.3);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.08s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.kerst-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(226, 46, 32, 0.4);
  opacity: 0.95;
}

.kerst-link-mobile {
  display: none;
}

.kerst-mobile-row {
  display: none;
}

/* cta knoppen */
.btn-cta {
  background: var(--thai-red);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(226, 46, 32, 0.25);
  transition: transform 0.06s, box-shadow 0.2s, opacity 0.2s;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(226, 46, 32, 0.35);
  opacity: 0.95;
}

/* mobiele cta standaard verbergen op desktop */
.btn-cta-mobile {
  display: none;
}

/* hamburger */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* breadcrumb */
.home .breadcrumb {
  display: none;
}
.breadcrumb {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.breadcrumb a {
  color: var(--thai-red);
}
.breadcrumb li + li::before {
  content: "\203A";
  margin: 0 6px;
  color: #aaa;
}

/* hero */
.hero {
  text-align: center;
  padding-top: clamp(6px, 2vh, 6px);
  max-width: 900px;
  margin: 0 auto 18px;
}
.hero h1 {
  margin-bottom: 4px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  color: var(--thai-red);
}
.hero p {
  margin-top: 4px;
  color: #444;
}
.hero-small {
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  color: #777;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

/* generieke knop */
.btn {
  background: var(--thai-red);
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s, background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* menu grid / items */
.menu-page h1 {
  text-align: center;
  margin-bottom: 25px;
}

/* grid blijft hetzelfde */
.item-grid,
.menu-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* cards: rondere hoeken, lichte basis schaduw, hover scale */
.item,
.dish {
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 14px 16px 18px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transform-origin: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
  overflow: hidden;
}

/* HOVER met lime-groene accentrand en lime shadow */
.item:hover,
.dish:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(178, 188, 53, 0.28); /* lime glow */
  border-color: var(--gold);                        /* lime rand */
  background-color: #fffaf8;
}

/* afbeeldingen iets rondere hoeken, meer ruimte eronder */
.item img,
.dish img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* titels en subtitels licht bijgewerkt */
.item h4,
.dish h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.item h6,
.dish h6 {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 10px;
}

.price {
  display: block;
  font-weight: 700;
  margin: 4px 0 10px;
  color: var(--thai-red);
}

/* winkelmand / bestellen pagina */
.order-section {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.order-section .note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}
.cart-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
  margin-bottom: 20px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed #eee;
}
.cart-item:last-child {
  border-bottom: 0;
}
.cart-item .remove {
  background: #eee;
  border: 0;
  border-radius: 6px;
  padding: 2px 8px;
  cursor: pointer;
}

/* totaal in het centrum */
.cart-box p {
  text-align: center;
  margin: 10px 0;
  font-size: 1.1em;
}
.cart-box p strong {
  color: var(--thai-red);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
#cartTotal {
  font-weight: 700;
  color: #111;
  display: inline-block;
}

/* formulier op bestellen */
.order-section form {
  background: #f9f9f9;
  padding: 25px 22px;
  border-radius: 12px;
  border: 1px solid #ddd;
  text-align: left;
  margin-top: 20px;
}
.order-section label {
  display: block;
  margin: 10px 0 5px;
  font-weight: 500;
}
.order-section input,
.order-section select,
.order-section textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 15px;
}
#confirmation {
  text-align: center;
  background: #f5fff9;
  padding: 40px 24px;
  border-radius: 12px;
  border: 1px solid var(--thai-red);
}
.hidden {
  display: none;
}

/* betaalmethodes */
.payment-methods {
  text-align: center;
  margin: 20px auto;
}

.payment-methods h2 {
  text-align: center;
  margin-bottom: 12px;
  color: var(--thai-red);
  font-size: 1.4em;
}

/* radio bovenaan, logo + tekst onder */
.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0;
}

.payment-option input {
  accent-color: var(--thai-red);
  cursor: pointer;
  margin: 0;
}

/* logo + tekst */
.payment-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  text-align: center;
  padding: 6px 12px;
  border-radius: 999px;
  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

/* icon formaat */
.pay-logo {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    opacity 0.15s ease;
}

/* geselecteerde optie krijgt meer stijl */
.payment-option input:checked + .payment-label {
  background-color: #fff7f5;
  box-shadow: 0 0 0 2px rgba(226, 46, 32, 0.25);
  transform: translateY(-1px);
}

/* logo vergroten wanneer geselecteerd */
.payment-option input:checked + .payment-label .pay-logo {
  transform: scale(1.12);
  filter: none;
  opacity: 1;
}

/* niet geselecteerde opties iets zachter (mag je weglaten als je dat niet wil) */
.payment-option input:not(:checked) + .payment-label .pay-logo {
  opacity: 0.8;
}

/* betaaloverzicht */
.payment-summary {
  text-align: center;
  background: #fafafa;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px auto 10px;
  border: 1px solid #ddd;
  max-width: 420px;
  line-height: 1.6;
}
.payment-summary strong {
  color: var(--thai-red);
  font-weight: 700;
}
#finalTotal {
  color: var(--thai-red);
  font-weight: 700;
  font-size: 1.25em;
}

/* tijdslot / besteltype */
.order-type-group {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 12px 0 18px;
  background: #fafafa;
}
.order-type-group legend {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.98rem;
}
.radio-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.95rem;
}
.radio-row input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
.form-row {
  margin: 8px 0 10px;
}
.form-row .form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}
.help-text.small {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
}

/* tijdslot select – extra in de kijker zetten */
#timeSlot {
  background: #fff8e6;            /* licht warm geel */
  border: 2px solid #e22e20;      /* rood uit jouw huisstijl */
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  box-shadow: 0 0 0 2px rgba(226, 46, 32, 0.12);
  outline: none;
}

/* bij focus nog iets duidelijker */
#timeSlot:focus {
  box-shadow: 0 0 0 3px rgba(226, 46, 32, 0.25);
}

/* contact lay-out */
.contact-grid {
  max-width: 1200px;
  margin: 10px auto 25px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 340px;
  text-align: center;
}
.contact-map {
  flex: 2 1 720px;
  min-width: 520px;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.contact-info p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.contact-info a {
  color: var(--thai-red);
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* carrousel */
.ts-carousel {
  position: relative;
  max-width: 1200px;
  margin: 22px auto 24px;
  padding: 0 40px;
}
.ts-c-window {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background: #f7f7f7;
  position: relative;
}
.ts-c-track {
  position: relative;
}
.ts-c-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  margin: 0;
  aspect-ratio: 16/9;
}
.ts-c-slide.active {
  opacity: 1;
  position: relative;
}
.ts-c-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* carrousel controls */
.ts-c-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.ts-c-prev {
  left: -50px;
}
.ts-c-next {
  right: -50px;
}
.ts-c-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0 0;
}
.ts-c-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d0d0d0;
  border: 0;
  cursor: pointer;
}
.ts-c-dot[aria-selected="true"] {
  background: var(--thai-red);
}
.ts-c-toggle {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 10px;
  margin-left: 12px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}
.ts-c-toggle:hover {
  background: #f3f3f3;
}

/* promo kaart */
.gold-band {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.promo-card {
  --card-pad: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: var(--card-pad);
  border-radius: 28px;
  background: var(--thai-red);
  color: #fff;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  border-radius: 34px;
  background: #fff;
  z-index: -1;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px 28px;
  align-items: center;
}
.promo-stack {
  /* In `index.php` staat momenteel maar 1 blok in `.promo-grid`.
     Laat het blok dan over beide kolommen lopen en centreer alles. */
  grid-column: 1 / -1;
  justify-self: center;
  width: min(820px, 100%);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.promo-details {
  width: 100%;
  margin-top: 10px;
}
.promo-left {
  text-align: left;
}
.promo-line {
  display: grid;
  /* gewenste layout: iconen boven tekst, alles gecentreerd */
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  font-size: 16px;
  justify-items: center;
  text-align: center;
}
.promo-line a {
  color: #fff;
  text-decoration: underline;
}
.icon-multi {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.promo-text {
  display: block;
  max-width: 70ch;
}
.promo-line-group {
  margin-top: 18px;
}
.promo-contact {
  margin-top: 14px;
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  color: #fff;
}
.promo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.promo-title {
  font-family: var(--ff-head);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}
.promo-btn {
  display: inline-block;
  background: #fff;
  color: var(--thai-red);
  border: 0;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.12s, box-shadow 0.2s, opacity 0.2s;
}
.promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  opacity: 0.95;
}
.promo-btn.black {
  background: #000;
  color: #fff;
  box-shadow:
    0 6px 14px rgba(178, 188, 53, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.promo-btn.black:hover {
  transform: translateY(-1px);
  animation: softGlow 1.6s ease-in-out infinite;
}

/* eiwitkeuze pills */
.protein-wrap {
  margin: 10px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.protein-label {
  color: #666;
}
.protein {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  justify-content: center;
}
.pill {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition:
    background-color 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.06s,
    box-shadow 0.15s;
  white-space: nowrap;
}
.pill small {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.7rem;
  color: #777;
}
.pill:hover {
  transform: translateY(-1px);
  border-color: var(--thai-red);
}
.pill[aria-pressed="true"],
.pill.is-selected {
  background: var(--thai-red);
  color: #fff;
  border-color: var(--thai-red);
  box-shadow: 0 0 0 2px rgba(226, 46, 32, 0.18);
  font-weight: 600;
}

/* kleine bump animatie bij prijsupdate */
.price-bump {
  animation: bump 0.2s ease;
}
@keyframes bump {
  50% {
    transform: scale(1.06);
  }
}

/* menu attribute badges (populair, chef aanbeveling) */
.attr-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.9em;
  vertical-align: middle;
  cursor: help;
}
.attr-popular {
  color: #ffc107;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.attr-chef {
  font-size: 0.85em;
}

/* spice badge tooltip */
.spice-badge,
.spice-badge .pepper {
  cursor: help;
}

/* doorgestreept pepertje voor niet-pikante gerechten */
.no-spice {
  opacity: 0.4;
  text-decoration: line-through;
  text-decoration-color: #666;
  cursor: help;
  margin-left: 4px;
}

/* menu legende - v2024.12 */
.menu-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 20px;
  padding: 10px 16px;
  background: #f8f8f8;
  border-radius: 10px;
  max-width: 500px;
  font-size: 0.9rem;
}
.menu-legend span {
  white-space: nowrap;
}

/* oude spicy-tag (enkel gebruikt bij soep) */
.spicy-tag {
  color: #ff2e2e;
  font-size: 1em;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  cursor: help;
}
.spicy-tag::after {
  content: "\01F336";
  display: inline-block;
  margin-left: 2px;
}
.spicy-tag::before {
  content: "pikant gerecht";
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 10;
}
.spicy-tag:hover::before {
  opacity: 1;
}
.spicy-tag:hover::after {
  filter: drop-shadow(0 0 2px #ff4a3f);
}

/* vaste spice badge per gerecht - ondersteund data-level 0,1,2 */
.spice-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.85rem;
  color: #ff3b30;
  position: relative;
  cursor: default;
}

/* rode peperstijl in huisstijl */
.spice-badge .pepper {
  font-size: 1rem;
  transition: transform 0.15s, filter 0.15s, opacity 0.15s;
  color: var(--thai-red);
  text-shadow: 0 0 4px rgba(226, 46, 32, 0.35);
}

/* lege / niet actieve peper */
.spice-badge .pepper.empty {
  filter: grayscale(1);
  opacity: 0.25;
  text-shadow: none;
}

/* hover animatie op actieve pepers */
.spice-badge:hover .pepper:not(.empty) {
  transform: translateY(-1px) scale(1.05);
}

/* tooltip tekst per level */
.spice-badge::after {
  position: absolute;
  left: 50%;
  bottom: 140%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 10;
}
.spice-badge:hover::after {
  opacity: 1;
}
.spice-badge[data-level="0"]::after {
  content: "niet pikant";
}
.spice-badge[data-level="1"]::after {
  content: "mild pikant";
}
.spice-badge[data-level="2"]::after {
  content: "pikant";
}
.spice-badge[data-level="3"]::after {
  content: "extra pikant";
}

/* footer */
footer {
  background: #fff;
  border-top: 3px solid var(--thai-red);
  text-align: center;
  padding: 18px 10px 20px;
  color: #222;
  margin-top: 0;
  font-size: 14px;
}
footer p {
  margin: 4px 0 0;
  letter-spacing: 0.5px;
}

/* responsief */
@media (max-width: 900px) {
  .kerst-mobile-row {
    display: flex;
    justify-content: center;
    padding: 4px 16px 10px;
    width: 100%;
  }
  .site-header .container {
    padding: 18px 16px;
    display: flex;
    align-items: center;
    column-gap: 8px;
    row-gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-header .brand {
    order: 1;
    margin-left: 12px;
    flex: 1 1 0;
    min-width: 0;
  }
  .btn-cta-mobile {
    order: 2;
    display: inline-block;
    margin-left: 0;
    padding: 10px 14px;
    font-size: 16px;
    white-space: nowrap;
    background: var(--thai-red);
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(226, 46, 32, 0.25);
    flex: 0 0 auto;
  }
  .nav-toggle {
    order: 3;
    display: block;
    background: transparent;
    border: 0;
    cursor: pointer;
    margin-left: 8px;
    flex: 0 0 auto;
  }

  .site-header .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    display: grid;
    gap: 10px;
    padding: 14px 20px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }
  .site-header .nav.open {
    transform: scaleY(1);
    opacity: 1;
  }
  .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }
  .site-header .nav .btn-cta {
    display: none !important;
  }
  .site-header .nav .kerst-link {
    display: none;
  }
  .kerst-link-mobile {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 17px;
    flex: 0 0 auto;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-map {
    min-width: 0;
  }

  .contact-map iframe {
    height: 450px;
  }

  .promo-card {
    margin: 30px 16px 0;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-left,
  .promo-right {
    text-align: center;
  }
  .promo-line {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .promo-line .icon {
    margin-bottom: 4px;
  }

  .ts-carousel {
    padding: 0 28px;
  }
  .ts-c-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .order-section form {
    padding: 20px 16px;
  }
}

/* desktop-only kerst link stays in nav */
.kerst-link-mobile {
  display: none;
}

/* juridische pagina */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 20px 40px;
  font-size: 16px;
  line-height: 1.7;
}

.legal-page h1 {
  font-size: clamp(26px, 3vw, 34px);
  color: var(--thai-red);
  margin-bottom: 20px;
  text-align: center;
}

.legal-page h2 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--ink);
}

.legal-page p {
  margin-bottom: 10px;
}

.legal-page strong {
  font-weight: 600;
}

/* peppers automatisch dimmen op basis van data-level */
.spice-badge[data-level="0"] .pepper {
  filter: grayscale(1);
  opacity: 0.25;
}

.spice-badge[data-level="1"] .pepper:nth-child(n+2) {
  filter: grayscale(1);
  opacity: 0.25;
}

.spice-badge[data-level="2"] .pepper:nth-child(3) {
  filter: grayscale(1);
  opacity: 0.25;
}

.footer-social {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center; /* centreren */
  font-size: 14px;
}

.footer-social span {
  font-weight: 500;
  margin-right: 4px;
}

.footer-social a {
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp knop rechtsonder */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
}

.whatsapp-float:hover {
  opacity: 0.9;
}

.social-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

.footer-social img.social-icon {
  max-width: none;
}

.discount-badge {
  display: inline-block;
  background: #e22e20;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
  line-height: 1;
}
.payment-option input:checked + .payment-label .discount-badge {
  transform: scale(1.12);
}

/* tooltips bij pepertjes volledig uitzetten */
.spice-badge::after {
  content: none !important;
  opacity: 0 !important;
  display: none !important;
}
.spice-badge:hover::after {
  opacity: 0 !important;
}
.spice-badge[data-level="0"]::after,
.spice-badge[data-level="1"]::after,
.spice-badge[data-level="2"]::after {
  content: none !important;
}

/* Google rating badge, zelfde centrering en breedte als promo-card */
.google-rating-band {
  display: flex;
  justify-content: center;
  padding: 0 16px;
  margin: 18px auto 0;
}

.google-rating-card {
  width: 100%;
  max-width: 1100px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 14px 22px;
  border-radius: 999px;

  background: var(--gold); /* zelfde kleur als TAKE AWAY */
  color: #111;

  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
  transition: transform 0.12s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.google-rating-card:hover,
.google-rating-card:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  opacity: 0.98;
}

.google-rating-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.google-rating-stars {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--thai-red);
}

.google-rating-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.15;
}

.google-rating-title {
  font-weight: 800;
  font-size: 15px;
  color: #111;
}

.google-rating-sub {
  font-size: 13px;
  color: #222;
  opacity: 0.9;
}

.google-rating-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;

  /* warme, subtiele schaduw */
  box-shadow:
    0 6px 14px rgba(178, 188, 53, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.25);

  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.google-rating-cta:hover {
  transform: translateY(-1px);
  animation: softGlow 1.6s ease-in-out infinite;
}

@media (max-width: 640px) {
  .google-rating-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border-radius: 22px;
  }

  .google-rating-text {
    align-items: center;
  }
}

@keyframes softGlow {
  0% {
    box-shadow:
      0 10px 22px rgba(178, 188, 53, 0.45),
      0 6px 14px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      0 14px 28px rgba(178, 188, 53, 0.6),
      0 8px 18px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow:
      0 10px 22px rgba(178, 188, 53, 0.45),
      0 6px 14px rgba(0, 0, 0, 0.35);
  }
}

/* ===============================
   Lichtkrant (Ticker)
   =============================== */
.ticker-container {
  background: var(--thai-red, #e22e20);
  color: #fff;
  padding: 6px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll linear infinite;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  will-change: transform;
}

.ticker-content span {
  display: inline-block;
  margin: 0 30px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(calc(5% - 25%));
  }
}

@media (max-width: 768px) {
  .ticker-content {
    font-size: 12px;
  }
  
  .ticker-content span {
    margin: 0 20px;
  }
}
