/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: var(--tap-target);
  padding: 0 var(--space-5);
  border: 0;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-md);
  transition: transform .05s ease, box-shadow .2s ease, background-color .2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(31,161,26,.55),
    0 0 22px rgba(31,161,26,.35);
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  box-shadow:
    0 6px 22px rgba(31,161,26,.65),
    0 0 30px rgba(31,161,26,.45),
    var(--glow-primary);
}

.btn--secondary {
  background: var(--c-secondary);
  color: #fff;
}
.btn--secondary:hover { filter: brightness(1.05); }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

/* Oranje actie-knop (secundaire CTA, niet concurreren met primary groen) */
.btn--accent-orange {
  background: var(--c-accent-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(248, 136, 17, 0.35);
}
.btn--accent-orange:hover {
  background: #e47a0e;
  box-shadow: 0 6px 18px rgba(248, 136, 17, 0.45);
}
.btn--accent-orange:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(248, 136, 17, 0.3);
}

/* Star-input — klikbare sterren voor beoordelingen */
.star-input { display: inline-flex; gap: 2px; flex-wrap: wrap; }
.star-input__star {
  background: transparent;
  border: 0;
  padding: 4px 3px;
  font-size: 32px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: color 120ms ease-out, transform 120ms ease-out;
}
.star-input__star.is-filled,
.star-input__star.is-hover { color: var(--c-rating-star); }
.star-input__star:hover { transform: scale(1.1); }
.star-input__star:focus-visible {
  outline: 2px solid var(--c-accent-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn--block { width: 100%; }

/* TILES */
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 140px;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background-color: color-mix(in srgb, var(--c-tile) 55%, transparent);
  background-size: cover;
  background-position: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  isolation: isolate;
  transition: background-color .2s ease, box-shadow .2s ease, transform .05s ease;
  text-align: left;
  cursor: pointer;
}
/* Donkere overlay voor leesbaarheid boven foto's */
.tile[style*="background-image"]::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 20%, rgba(0,0,0,.68) 100%);
  z-index: -1;
}
.tile:hover {
  background-color: color-mix(in srgb, var(--c-tile) 80%, transparent);
  box-shadow: var(--glow-tile);
  transform: translateY(-1px);
}
.tile:active { transform: translateY(0); }
.tile.is-selected {
  background-color: var(--c-tile);
  box-shadow: 0 0 0 3px rgba(31,161,26,.35), 0 10px 24px rgba(0,0,0,.16);
  transform: translateY(-1px);
}
.tile__title {
  font-weight: 700;
  font-size: var(--fs-lg);
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
}
.tile__info  {
  font-size: var(--fs-sm);
  opacity: .92;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.tile__price {
  display: inline-block;
  margin-top: var(--space-2);
  padding: 3px 8px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .02em;
  width: fit-content;
}
.tile__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-2);
  padding: 6px 14px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(31,161,26,.28);
}
.tile--upsell:hover .tile__cta {
  background: var(--c-primary-dark);
  box-shadow: 0 6px 14px rgba(31,161,26,.38);
}
.tile--upsell {
  min-height: 200px;
}

/* FAQ TOPIC CARDS */
.faq-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: var(--space-4);
}
@media (min-width: 720px) {
  .faq-topics { grid-template-columns: 1fr 1fr; }
}
.faq-topic {
  display: grid;
  grid-template-columns: 52px 1fr 20px;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 14px 10px 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  color: var(--c-accent-blue);
  font-weight: 700;
  font-size: var(--fs-md);
  cursor: pointer;
  text-align: left;
  transition: box-shadow .15s ease, border-color .15s ease, transform .05s ease;
}
.faq-topic:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent-blue);
  transform: translateY(-1px);
}
.faq-topic--red:hover { border-color: var(--c-label-popular); }
.faq-topic__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 6px 0 6px 8px;
  background: var(--c-accent-blue);
  color: #fff;
  border-radius: var(--radius-sm);
}
.faq-topic__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.faq-topic--red .faq-topic__icon { background: var(--c-label-popular); }
.faq-topic--red { border-left-color: var(--c-label-popular); }
.faq-topic__chev {
  font-size: 24px;
  color: var(--c-text-muted);
  line-height: 1;
}
.faq-topic:hover .faq-topic__chev { color: var(--c-accent-blue); transform: translateX(2px); }
.tile[style*="background-image"] {
  min-height: 170px;
}

/* LABELS */
.label {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.label--popular      { background: var(--c-label-popular); }
.label--most-chosen  { background: var(--c-label-most-chosen); }
.label--recommended  { background: var(--c-label-recommended); }

.tile .label {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
}

/* CHIP (tijdslots, groepsgrootte ranges) */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-target);
  padding: 0 var(--space-4);
  border-radius: 999px;
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  font-weight: 600;
  cursor: pointer;
}
.chip.is-selected {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.chip.is-disabled,
.chip[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
