/* ============================================
   VESTIGINGEN
   ============================================ */

/* Vestigingen kaarten op overzichtspagina */
.vestigingen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .vestigingen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vestigingen-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vestiging-kaart {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.vestiging-kaart:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.vestiging-kaart__foto {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.vestiging-kaart:hover .vestiging-kaart__foto img {
  transform: scale(1.04);
}

.vestiging-kaart__body {
  padding: var(--space-md) var(--space-lg);
}

.vestiging-kaart__naam {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.vestiging-kaart__adres {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.vestiging-kaart__status {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.vestiging-kaart__status:empty {
  display: none;
}

.vestiging-kaart__status.is-open {
  color: var(--color-success);
}

.vestiging-kaart__tel {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.vestiging-kaart__tel a {
  color: var(--color-text-light);
  transition: color var(--transition);
}

.vestiging-kaart__tel a:hover {
  color: var(--color-primary);
}

.vestiging-kaart__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.vestiging-kaart__badge svg {
  width: 12px;
  height: 12px;
}

.vestiging-kaart__times {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.vestiging-kaart__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.vestiging-kaart__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.vestiging-kaart__link:hover {
  border-bottom-color: var(--color-primary);
}

.vestiging-kaart__link--muted {
  color: var(--color-text-light);
  font-weight: 500;
}

.vestiging-kaart__link--muted:hover {
  color: var(--color-dark);
  border-bottom-color: var(--color-dark);
}

/* Gesloten vestiging (Harderwijk) — afwijkende grijze stijl */
.vestiging-kaart--gesloten {
  background: var(--color-bg-alt, #ededec);
  box-shadow: none;
  border: 1px solid var(--color-border);
}

.vestiging-kaart--gesloten:hover {
  transform: none;
  box-shadow: none;
}

.vestiging-kaart--gesloten .vestiging-kaart__foto {
  position: relative;
}

.vestiging-kaart--gesloten .vestiging-kaart__foto img {
  filter: grayscale(1);
  opacity: 0.7;
}

.vestiging-kaart--gesloten:hover .vestiging-kaart__foto img {
  transform: none;
}

.vestiging-kaart__sluit-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.vestiging-kaart--gesloten .vestiging-kaart__naam {
  color: var(--color-text-light);
}

/* Harderwijk info-popup */
.harderwijk-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.harderwijk-modal[hidden] {
  display: none;
}

.harderwijk-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,26,22,0.7);
  backdrop-filter: blur(2px);
}

.harderwijk-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}

.harderwijk-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-dark);
  cursor: pointer;
  transition: background var(--transition);
}

.harderwijk-modal__close:hover {
  background: var(--color-border);
}

.harderwijk-modal__close svg {
  width: 18px;
  height: 18px;
}

.harderwijk-modal__badge {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.harderwijk-modal__titel {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 var(--space-sm);
}

.harderwijk-modal__tekst {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.harderwijk-modal__actie {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-light);
  background: rgba(184,147,46,0.10);
  border-left: 3px solid var(--color-primary);
  padding: 12px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--space-lg);
}

.harderwijk-modal__actie strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.harderwijk-modal__actie p {
  margin: 0;
}

/* Anker-navigatie op locatiepagina */
.locatie-ankers {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 64px;
  z-index: 50;
  overflow-x: auto;
  scrollbar-width: none;
}

.locatie-ankers::-webkit-scrollbar {
  display: none;
}

.locatie-ankers__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.locatie-ankers__inner {
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 8px;
}

.locatie-anker {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  background: rgba(184,147,46,0.08);
  border: 1.5px solid rgba(184,147,46,0.35);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.locatie-anker:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================
   IMPRESSIE — interieurfoto's onder Over ons
   ============================================ */
.impressie-grid {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

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

.impressie-grid__item {
  flex: 0 0 78%;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.impressie-grid__item:hover img {
  transform: scale(1.04);
}

@media (min-width: 640px) {
  .impressie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }

  .impressie-grid__item {
    flex: unset;
  }
}

/* ============================================
   AFSPRAAK CALLOUT — full-bleed kapselfoto met gradient-overgang
   ============================================ */
.afspraak-cta {
  position: relative;
}

.afspraak-cta__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Mobiel: donkere overlay zodat de tekst leesbaar blijft */
.afspraak-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(30,26,22,0.82);
}

/* Desktop: hele foto rechts zichtbaar (niet ingezoomd), gradient loopt
   van links (donker, tekst) over naar de foto rechts */
@media (min-width: 768px) {
  .afspraak-cta {
    min-height: 540px;
    display: flex;
    align-items: center;
  }

  .afspraak-cta__bg {
    background-size: contain;
    background-position: right center;
  }

  .afspraak-cta__overlay {
    background: linear-gradient(
      to right,
      var(--color-dark) 0%,
      var(--color-dark) 44%,
      rgba(30,26,22,0.72) 60%,
      rgba(30,26,22,0.15) 74%,
      rgba(30,26,22,0) 84%
    );
  }
}

.afspraak-cta__inner {
  position: relative;
  z-index: 2;
}

.afspraak-cta__tekst {
  max-width: 540px;
}

/* Vestiging-picker binnen de homepage-callout: compact en links uitgelijnd */
.afspraak-cta .afspraak-picker {
  display: block;
  margin-top: var(--space-md);
}

.afspraak-cta .afspraak-picker__list {
  position: static;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  max-width: 460px;
  min-width: 0;
  margin: var(--space-md) 0 0;
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
}

/* Openingstijden tabel */
.openingstijden-tabel {
  width: 100%;
  font-size: var(--text-sm);
}

.openingstijden-tabel tr {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border);
}

.openingstijden-tabel tr:last-child {
  border-bottom: none;
}

.openingstijden-tabel .dag {
  font-weight: 500;
  color: var(--color-text);
}

.openingstijden-tabel .tijd {
  color: var(--color-text-light);
}

.openingstijden-tabel .gesloten {
  color: var(--color-text-muted);
}

.openingstijden-tabel .is-today .dag,
.openingstijden-tabel .is-today .tijd {
  color: var(--color-primary);
  font-weight: 600;
}

/* Adres blok — twee kleurrijke kaarten */
.adres-blok {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .adres-blok {
    grid-template-columns: 1fr 1fr;
  }
}

.adres-blok > div {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-primary);
}

/* Openingstijden-kaart: donker met goud */
.adres-blok > div:first-child {
  background: linear-gradient(160deg, var(--color-dark) 0%, #322b22 100%);
}

.adres-blok > div:first-child .section-title {
  color: var(--color-white);
}

.adres-blok > div:first-child .openingstijden-tabel tr {
  border-bottom-color: rgba(255,255,255,0.1);
}

.adres-blok > div:first-child .openingstijden-tabel .dag {
  color: rgba(255,255,255,0.92);
}

.adres-blok > div:first-child .openingstijden-tabel .tijd {
  color: rgba(255,255,255,0.6);
}

.adres-blok > div:first-child .openingstijden-tabel .gesloten {
  color: rgba(255,255,255,0.32);
}

.adres-blok > div:first-child .openingstijden-tabel .is-today .dag,
.adres-blok > div:first-child .openingstijden-tabel .is-today .tijd {
  color: var(--color-primary-light);
}

.adres-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.adres-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-white);
}

.adres-item__icon svg {
  width: 18px;
  height: 18px;
}

.adres-item__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 3px;
}

.adres-item__value {
  font-size: var(--text-sm);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.5;
}

.adres-item__value a {
  transition: color var(--transition);
}

.adres-item__value a:hover {
  color: var(--color-primary);
}

/* Home vestigingen keuze */
.kies-vestiging {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .kies-vestiging {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .kies-vestiging {
    grid-template-columns: repeat(5, 1fr);
  }
}

.kies-vestiging__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: pointer;
}

.kies-vestiging__item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.kies-vestiging__naam {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
}

.kies-vestiging__adres {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: center;
}

.kies-vestiging__btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
}

.kies-vestiging__item:hover .kies-vestiging__btn {
  color: var(--color-dark);
}

/* ============================================
   SLIDER SWIPE HINT
   ============================================ */
.slider-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.slider-hint svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .slider-hint {
    display: none;
  }
}

/* ============================================
   SPECIALITEITEN / HASHTAG TAGS
   ============================================ */
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-lg);
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.spec-tag:hover {
  background: rgba(184,147,46,0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.spec-tag__hash {
  color: var(--color-primary);
  transition: color var(--transition);
}

.spec-tag:hover .spec-tag__hash {
  color: var(--color-primary);
}

/* Google badge verbetering voor locatiepagina's */
.reviews-google-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.review-source-link {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.review-source-link:hover {
  color: var(--color-dark);
}

.review-auteur-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-auteur-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(184,147,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}

.review-auteur-naam {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-dark);
}

.review-auteur-platform {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Koopavonden-accent onder de openingstijden */
.openingstijden-koopavonden {
  margin-top: var(--space-md);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(184,147,46,0.18);
  color: var(--color-primary-light);
  font-size: 13px;
  font-weight: 600;
}

.openingstijden-koopavonden strong {
  color: var(--color-white);
}
