:root {
  --bg-primary: #1b120c;
  --bg-secondary: #2a1b12;
  --accent-primary: #c08a55;
  --accent-secondary: #e0b782;
  --text-primary: #f7efe4;
  --text-secondary: #cbb8a3;
  --glass-bg: rgba(66, 43, 30, 0.48);
  --glass-border: rgba(255, 232, 206, 0.12);
  --glass-glow: rgba(192, 138, 85, 0.2);
  --surface-strong: #24170f;
  --surface-panel: rgba(36, 24, 16, 0.72);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --barberpole-height: 18px;
  --barberpole-speed: 18s;
  --barberpole-stripe: 28px;
  --barberpole-cycle: calc(var(--barberpole-stripe) * 5);
  --barberpole-shift: calc(var(--barberpole-cycle) * 1.41421356237);
  --barberpole-angle: -45deg;
  --barberpole-red: #9e2a2a;
  --barberpole-white: #ffffff;
  --barberpole-blue: #2a4371;
  --switcher-bg: rgba(27, 18, 12, 0.45);
  --switcher-border: rgba(192, 138, 85, 0.25);
}

/* Glass Language Switcher */
.glass-switcher {
  background: var(--switcher-bg);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--switcher-border);
  border-radius: 12px;
  padding: 6px 12px;
  transition: var(--transition);
}

.lang-btn {
  background: none;
  border: none;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
  filter: grayscale(0.4);
}

.lang-btn img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lang-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.lang-btn:hover:not(:disabled) {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

.lang-btn.is-active {
  opacity: 1 !important;
  filter: grayscale(0) !important;
  pointer-events: none;
}

.lang-divider {
  width: 1px;
  background: var(--glass-border);
  align-self: stretch;
  margin: 4px 0;
}


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

html {
  height: auto;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image:
    linear-gradient(135deg, rgba(58, 38, 25, 0.26), rgba(33, 22, 15, 0.34)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-attachment: scroll;
  background-size: cover;
  background-position: center;
  display: block;
  padding: 0.75rem;
  padding: calc(0.75rem + env(safe-area-inset-top)) calc(0.75rem + env(safe-area-inset-right)) calc(0.75rem + env(safe-area-inset-bottom)) calc(0.75rem + env(safe-area-inset-left));
  line-height: 1.5;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling for iOS */
}

@media (min-width: 601px) {
  body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding: calc(2rem + env(safe-area-inset-top)) calc(2rem + env(safe-area-inset-right)) calc(2rem + env(safe-area-inset-bottom)) calc(2rem + env(safe-area-inset-left));
    background-attachment: fixed;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(24, 16, 12, 0.36) 100%);
  opacity: 0.16;
  z-index: -1;
}

.shell {
  max-width: 1080px;
  width: 100%;
  background-color: #1a110a;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 40%),
    /* Strong Bottom Shadow */
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
    url('../../images/afspraak/background/leather_texture_8k.png');
  background-size: 100% 100%, 100% 100%, 440px;
  background-repeat: no-repeat, no-repeat, repeat;

  /* Vintage Wood Slat Frame */
  border: 18px solid #3d2b1f;
  border-top-color: transparent;
  border-bottom-color: transparent;
  /* Gap for Dual Barber Poles */
  border-image-source: url('../../images/afspraak/background/wood_slats_bg.png');
  border-image-slice: 40;
  border-image-repeat: round;
  border-image-width: 0 18px 0 18px;
  /* Omit top and bottom wooden edges */

  border-radius: 24px;
  padding: 3rem;
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  backdrop-filter: blur(32px) saturate(180%);
  box-shadow:
    0 40px 100px -20px rgba(0, 0, 0, 0.8),
    inset 0 -60px 100px rgba(0, 0, 0, 0.8),
    /* Deep Bottom Inset */
    inset 0 0 120px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  will-change: transform, opacity, filter;
}

/* Artisan Stitched Border Detailing */
.shell::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(192, 138, 85, 0.12);
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.5;
}

.shell::before,
.barber-pole-bottom {
  content: '';
  position: absolute;
  left: -18px;
  right: -18px;
  height: 18px;
  pointer-events: none;
  z-index: 20;
  border-radius: 24px 24px 0 0;
  background-image:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.2) 100%),
    repeating-linear-gradient(var(--barberpole-angle),
      var(--barberpole-red) 0,
      var(--barberpole-red) var(--barberpole-stripe),
      var(--barberpole-white) var(--barberpole-stripe),
      var(--barberpole-white) calc(var(--barberpole-stripe) * 2),
      var(--barberpole-blue) calc(var(--barberpole-stripe) * 2),
      var(--barberpole-blue) calc(var(--barberpole-stripe) * 3),
      var(--barberpole-white) calc(var(--barberpole-stripe) * 3),
      var(--barberpole-white) var(--barberpole-cycle));
  background-size: 100% 100%, var(--barberpole-shift) 100%;
  background-repeat: no-repeat, repeat-x;
  animation: barberpole-slide var(--barberpole-speed) linear infinite;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.shell::before {
  top: -18px;
}

.barber-pole-bottom {
  bottom: -18px;
  border-radius: 0 0 24px 24px;
  animation-direction: reverse;
  filter: brightness(0.5) contrast(1.2);
  /* Stronger darkening */
  background-image:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%),
    repeating-linear-gradient(var(--barberpole-angle),
      var(--barberpole-red) 0,
      var(--barberpole-red) var(--barberpole-stripe),
      var(--barberpole-white) var(--barberpole-stripe),
      var(--barberpole-white) calc(var(--barberpole-stripe) * 2),
      var(--barberpole-blue) calc(var(--barberpole-stripe) * 2),
      var(--barberpole-blue) calc(var(--barberpole-stripe) * 3),
      var(--barberpole-white) calc(var(--barberpole-stripe) * 3),
      var(--barberpole-white) var(--barberpole-cycle));
}

.shell.shell--pending {
  opacity: 0;
  transform: translateX(120%);
  filter: blur(8px);
}

.shell.is-enter {
  animation: shellEntry 0.65s cubic-bezier(0.22, 0.9, 0.35, 1) forwards;
}

@media (max-width: 600px) {
  .shell {
    --barberpole-height: 7px;
    --barberpole-speed: 22s;
    padding: 1.25rem !important;
    border-radius: 20px;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(59, 39, 27, 0.84) !important;
  }

  .shell::before {
    border-radius: 20px 20px 0 0;
  }
}

@keyframes shellEntry {
  from {
    opacity: 0;
    transform: translateX(120%);
    filter: blur(8px);
  }

  70% {
    opacity: 1;
    transform: translateX(-10px);
    filter: blur(1px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes barberpole-slide {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, calc(var(--barberpole-shift) * -1) 0;
  }
}

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

  .shell.shell--pending {
    opacity: 1;
    transform: none;
  }

  .shell.is-enter {
    animation: none;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 12px;
  height: 1px;
  background: currentColor;
}

.lang-switcher button:disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding: 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #24170f;
  /* Fallback for older browsers */
  background: var(--surface-panel);
  overflow: hidden;
}

.brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(22, 15, 10, 0.78), rgba(42, 28, 18, 0.7)),
    url('../../images/afspraak/background/modern_barbershop_bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.98;
  z-index: 0;
}

.brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(27, 18, 12, 0.2), rgba(27, 18, 12, 0.55));
  z-index: 1;
}

.brand>* {
  position: relative;
  z-index: 2;
}

.brand-image-wrapper {
  flex-shrink: 0;
  position: relative;
}

.brand-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: var(--accent-primary);
  filter: blur(40px);
  opacity: 0.15;
  z-index: -1;
}

.brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--surface-soft);
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .brand img {
    width: 90px;
    height: 90px;
  }
}

h1 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  /* Fallback for older browsers */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(to right, #fff4e6, #cbb8a3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

p.lead {
  max-width: 600px;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (max-width: 600px) {
  p.lead {
    font-size: 1rem;
  }

  /* Spacing Reductions */
  .brand,
  .action-bar,
  .lookbook-strip,
  .availability,
  .grid,
  .map-section {
    margin-bottom: 2.25rem !important;
  }

  h1 {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.5rem !important;
  }
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Fallback for browsers that don't support flex gap */
@media (max-width: 600px) {
  .chips {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }

  .chips>* {
    width: auto;
    margin-right: 0;
  }
}

.chips>* {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

@supports (gap: 0.75rem) {
  .chips>* {
    margin: 0;
  }
}

.shared-chip {
  background: transparent;
  color: rgba(246, 228, 208, 0.88);
  border: 1px solid rgba(192, 138, 85, 0.16);
  border-radius: 10px;
  padding: 0.28rem 0.5rem;
  font-weight: 500;
  cursor: default;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.chips .shared-chip i {
  color: var(--accent-secondary);
  opacity: 0.9;
}

.action-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  background: #24170f;
  /* Fallback */
  background: var(--surface-panel);
}

@media (max-width: 600px) {
  .action-bar {
    padding: 1.25rem !important;
    gap: 1rem !important;
  }
}

.action-bar .cta {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.8rem;
  border-radius: 20px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(27, 18, 12, 0) 50%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(rgba(27, 18, 12, 0.2), rgba(27, 18, 12, 0.5)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(192, 138, 85, 0.35);
  position: relative;
  font-size: 1.1rem;
  min-height: 160px;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), filter 0.4s var(--transition);
  overflow: hidden;
}

.action-bar .cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  opacity: 0.6;
}

.action-bar .cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  opacity: 0.6;
}

.action-bar .cta::after {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 19px;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.action-bar .cta .cta-inner-border {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(192, 138, 85, 0.2);
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}

.action-bar .cta-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  z-index: 3;
}

.action-bar .cta i {
  order: -1;
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

@media (max-width: 600px) {
  .action-bar .cta {
    padding: 1.1rem !important;
    min-height: auto !important;
  }

  .action-bar .cta-subtitle {
    font-size: 0.82rem !important;
  }
}

.action-bar .cta.primary,
.action-bar .cta.secondary {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.action-bar .cta:hover {
  transform: translateY(-8px);
  filter: brightness(1.1);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.7),
    inset 0 0 15px rgba(192, 138, 85, 0.15);
  border-color: var(--accent-primary);
}

.action-bar .cta:hover::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 1;
}

.action-bar .cta:hover .cta-inner-border {
  border-color: rgba(192, 138, 85, 0.5);
}

.action-bar .cta.cta--pulse {
  border-color: rgba(239, 197, 144, 0.95);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(224, 183, 130, 0.35),
    0 0 24px rgba(192, 138, 85, 0.24),
    inset 0 0 20px rgba(0, 0, 0, 0.35);
}

.action-bar .cta.cta--pulse::after {
  border-color: rgba(255, 230, 196, 0.48);
  box-shadow:
    inset 0 0 14px rgba(224, 183, 130, 0.18),
    inset 0 0 22px rgba(0, 0, 0, 0.22);
}

.action-bar .cta.cta--pulse .cta-inner-border {
  border-color: rgba(224, 183, 130, 0.55);
}

.action-bar .cta.cta--pulse:hover {
  border-color: #f1c999;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.72),
    0 0 0 3px rgba(224, 183, 130, 0.42),
    0 0 28px rgba(192, 138, 85, 0.32),
    inset 0 0 18px rgba(192, 138, 85, 0.2);
}

.action-bar .cta.cta--pulse:hover::after {
  border-color: rgba(255, 238, 212, 0.7);
}

.action-bar .cta.cta--pulse:hover .cta-inner-border {
  border-color: rgba(255, 226, 181, 0.8);
}

.action-bar .cta.cta--pulse .cta-title {
  position: relative;
  z-index: 3;
  display: inline-block;
  animation: ctaTextPulse 2.3s ease-in-out infinite;
  transform-origin: left center;
}

.action-bar .cta.cta--pulse .cta-subtitle {
  animation: ctaSubtitlePulse 2.3s ease-in-out infinite;
  animation-delay: 0.12s;
}

.action-bar .cta.cta--pulse:hover .cta-title,
.action-bar .cta.cta--pulse:focus-visible .cta-title,
.action-bar .cta.cta--pulse:hover .cta-subtitle,
.action-bar .cta.cta--pulse:focus-visible .cta-subtitle {
  animation: none;
  transform: none;
}

@keyframes ctaTextPulse {

  0%,
  100% {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
    transform: scale(1);
  }

  50% {
    color: #fff6ea;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.6),
      0 0 12px rgba(224, 183, 130, 0.65),
      0 0 18px rgba(192, 138, 85, 0.35);
    transform: scale(1.04);
  }
}

@keyframes ctaSubtitlePulse {

  0%,
  100% {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    transform: scale(1);
  }

  50% {
    color: #f7e8d6;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.6),
      0 0 9px rgba(224, 183, 130, 0.45);
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {

  .action-bar .cta.cta--pulse .cta-title,
  .action-bar .cta.cta--pulse .cta-subtitle {
    animation: none !important;
    transform: none !important;
  }
}

.lookbook-strip {
  margin-bottom: 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.9rem;
  background: var(--surface-panel);
}

.lookbook-strip__intro {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(115deg, rgba(20, 13, 8, 0.58), rgba(20, 13, 8, 0.35));
}

.lookbook-strip__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.35rem;
}

.lookbook-strip__intro h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.lookbook-strip__intro p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
}

.lookbook-strip__cta {
  width: calc(50% - 0.425rem);
  max-width: 100%;
  min-width: 260px;
  margin-left: auto;
  justify-content: space-between;
  min-height: auto !important;
  border-radius: 18px !important;
  padding: 1.05rem 1.2rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.65rem !important;
  border: 1px solid rgba(224, 183, 130, 0.4) !important;
  background-image:
    linear-gradient(140deg, rgba(255, 255, 255, 0.09) 0%, rgba(27, 18, 12, 0.08) 52%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(rgba(22, 15, 10, 0.2), rgba(22, 15, 10, 0.45)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-size: cover;
  background-position: center;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), filter 0.35s var(--transition);
}

.lookbook-strip__cta:hover {
  transform: translateY(-3px) !important;
  filter: brightness(1.08) !important;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.56),
    inset 0 0 22px rgba(0, 0, 0, 0.3);
}

.lookbook-strip__cta .cta-subtitle {
  margin-left: auto;
  margin-right: 0.75rem;
  text-align: right;
  color: #f0e2d0;
  opacity: 0.92;
}

.lookbook-strip__cta i {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(224, 183, 130, 0.45);
  background: rgba(17, 11, 8, 0.55);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.24);
}

@media (max-width: 900px) {
  .lookbook-strip__intro h2 {
    font-size: 1.35rem;
  }

  .lookbook-strip__cta {
    width: 100%;
    margin-left: 0;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .lookbook-strip__cta .cta-subtitle {
    margin: 0;
    text-align: left;
  }
}

.social-panel {
  margin-bottom: 4rem;
}

.social-panel .social-strip__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.85rem;
  width: 100%;
}

.social-panel .social-strip__cta {
  flex: 1 1 260px;
  min-height: auto !important;
  border-radius: 20px !important;
  padding: 1.05rem 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(27, 18, 12, 0) 50%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(rgba(27, 18, 12, 0.2), rgba(27, 18, 12, 0.5)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(192, 138, 85, 0.35);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    inset 0 0 18px rgba(0, 0, 0, 0.3);
}

.social-panel .social-strip__cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.32);
}

.social-panel .social-strip__title {
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.social-panel .social-strip__cta .cta-subtitle {
  margin-left: auto;
  margin-right: 0.65rem;
  text-align: right;
  color: var(--text-secondary);
  opacity: 0.96;
}

.social-panel .social-strip__cta i {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .social-panel .social-strip__actions {
    width: 100%;
    justify-content: stretch;
  }

  .social-panel .social-strip__cta {
    width: 100%;
    justify-content: space-between !important;
    gap: 0.75rem !important;
  }

  .social-panel .social-strip__cta .cta-subtitle {
    margin: 0 0 0 auto;
    text-align: right;
  }
}

@media (max-width: 600px) {

  .social-panel .social-strip__actions,
  .social-panel .social-strip__cta {
    width: 100%;
  }

  .social-panel .social-strip__cta {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
  }

  .social-panel .social-strip__cta .cta-subtitle {
    margin: 0;
    text-align: left;
  }

  .social-panel .social-strip__cta i {
    align-self: auto;
  }
}

.request-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  background: #24170f;
  /* Fallback */
  background: var(--surface-panel);
}

.request-panel__content {
  max-width: 520px;
}

.request-panel__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}

.request-panel h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.request-panel p {
  color: var(--text-secondary);
  margin: 0;
}

.request-panel__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.request-panel__actions .cta {
  padding: 0.85rem 1.4rem;
  width: 100%;
  justify-content: space-between;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  background: #24170f;
  background: var(--surface-panel);
}

.contact-panel.social-panel {
  display: block;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.35rem;
  background-color: #24170f;
  background-image: url('../../images/systeem/homepagina-bg-sociale-media.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-panel.social-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(100deg, rgba(18, 12, 8, 0.9) 0%, rgba(18, 12, 8, 0.82) 42%, rgba(18, 12, 8, 0.64) 68%, rgba(18, 12, 8, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34));
}

.contact-panel.social-panel>* {
  position: relative;
  z-index: 1;
}

.contact-panel__content {
  max-width: 520px;
}

.contact-panel.social-panel .contact-panel__content {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 2rem 2.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(115deg, rgba(14, 9, 6, 0.84), rgba(14, 9, 6, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: socialPanelPulse 4.2s ease-in-out infinite;
}

.contact-panel.social-panel .contact-panel__content>* {
  position: relative;
  z-index: 1;
}

.contact-panel.social-panel .contact-panel__content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 120% at 0% 0%, rgba(224, 183, 130, 0.14), rgba(224, 183, 130, 0) 52%);
  opacity: 0.45;
  animation: socialPanelAura 5.6s ease-in-out infinite;
}

.contact-panel.social-panel .contact-panel__content::after {
  content: '';
  position: absolute;
  top: -78%;
  left: -36%;
  width: 44%;
  height: 256%;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 48%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(14deg) translateX(-170%);
  filter: blur(1px);
  opacity: 0.42;
  animation: socialPanelSheen 6.4s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes socialPanelPulse {

  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.11);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 14px 30px rgba(0, 0, 0, 0.34),
      0 0 0 0 rgba(224, 183, 130, 0.1);
  }

  50% {
    border-color: rgba(224, 183, 130, 0.45);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 18px 34px rgba(0, 0, 0, 0.4),
      0 0 0 6px rgba(224, 183, 130, 0.1);
  }
}

@keyframes socialPanelAura {

  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes socialPanelSheen {
  0% {
    transform: rotate(14deg) translateX(-170%);
    opacity: 0;
  }

  18% {
    opacity: 0.42;
  }

  52% {
    opacity: 0.25;
  }

  100% {
    transform: rotate(14deg) translateX(360%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .contact-panel.social-panel .contact-panel__content,
  .contact-panel.social-panel .contact-panel__content::before,
  .contact-panel.social-panel .contact-panel__content::after,
  .contact-panel.social-panel h2 {
    animation: none !important;
  }
}

.contact-panel.social-panel .social-strip__actions {
  margin-top: 1rem;
}

.contact-panel__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}

.contact-panel h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-panel p {
  color: var(--text-secondary);
  margin: 0;
}

.contact-panel.social-panel h2 {
  color: #fff4e6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  animation: socialPanelTitleGlow 4.2s ease-in-out infinite;
}

.contact-panel.social-panel p {
  color: #f0e2d0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

@keyframes socialPanelTitleGlow {

  0%,
  100% {
    text-shadow:
      0 2px 10px rgba(0, 0, 0, 0.55),
      0 0 0 rgba(224, 183, 130, 0);
  }

  50% {
    text-shadow:
      0 2px 12px rgba(0, 0, 0, 0.62),
      0 0 14px rgba(224, 183, 130, 0.24);
  }
}

.contact-panel__actions .cta {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 20px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(27, 18, 12, 0) 50%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(rgba(27, 18, 12, 0.2), rgba(27, 18, 12, 0.5)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(192, 138, 85, 0.35);
  position: relative;
  font-size: 1.1rem;
  min-width: 240px;
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.6),
    inset 0 0 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), filter 0.4s var(--transition);
  overflow: hidden;
}

@media (max-width: 600px) {
  .contact-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem !important;
    gap: 1.5rem !important;
  }

  .contact-panel__actions,
  .contact-panel__actions .cta {
    width: 100%;
  }

  .contact-panel.social-panel {
    padding: 1rem !important;
  }

  .contact-panel.social-panel .contact-panel__content {
    padding: 1.35rem 1.2rem;
    border-radius: 16px;
  }
}

/* Visitor Counter / Live Status */
.live-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(14, 10, 7, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 138, 85, 0.4);
  z-index: 10;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 0 10px rgba(192, 138, 85, 0.1);
  white-space: nowrap;
  pointer-events: auto;
}

.live-status__dot {
  width: 7px;
  height: 7px;
  background-color: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
  animation: livePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.live-status__text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

@media (max-width: 600px) {
  .live-status {
    padding: 0.25rem 0.6rem;
    bottom: -8px;
  }
}

.last-minute-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 183, 130, 0.5);
  background: rgba(192, 138, 85, 0.15);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.availability {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  background: #24170f;
  /* Fallback */
  background: var(--surface-panel);
}

#availability-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #24170f;
  background-image: linear-gradient(115deg, rgba(18, 12, 8, 0.86), rgba(18, 12, 8, 0.64));
}

#availability-section>* {
  position: relative;
  z-index: 1;
}

.availability-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.availability-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}

.availability h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  /* Fallback */
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.availability-lead {
  color: var(--text-secondary);
  max-width: 560px;
}


.availability-updated {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.availability-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.7rem;
}

.availability-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 183, 130, 0.32);
  background: rgba(18, 12, 8, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.35);
}

.availability-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 183, 130, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(56, 38, 25, 0.9), rgba(29, 18, 12, 0.92));
  color: #fff4e6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  padding: 0.56rem 0.95rem;
  min-height: 40px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease,
    box-shadow 0.26s ease,
    opacity 0.26s ease;
}

.availability-nav-btn span {
  white-space: nowrap;
}

.availability-nav-btn i {
  width: 16px;
  height: 16px;
}

.availability-nav-btn:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(246, 214, 173, 0.86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(74, 49, 31, 0.94), rgba(36, 22, 14, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 26px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(224, 183, 130, 0.2);
}

.availability-nav-btn:focus-visible {
  outline: 2px solid rgba(255, 233, 201, 0.92);
  outline-offset: 2px;
}

.availability-nav-btn:disabled {
  opacity: 0.62;
  filter: saturate(0.65);
  cursor: not-allowed;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.availability-slider-stage {
  display: block;
  position: relative;
  min-height: 280px;
}

.availability-slider-stage.availability-slider-height-locked {
  min-height: var(--availability-slider-height);
}

.availability-slider-track {
  position: relative;
}

.availability-slider-stage.availability-slider-height-locked .availability-slider-track,
.availability-slider-stage.availability-slider-height-locked .availability-card {
  min-height: var(--availability-slider-height);
}

.availability-card-measure-probe {
  position: absolute;
  top: 0;
  left: -9999px;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
}

.availability-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(36, 23, 15, 0.4);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  backdrop-filter: blur(12px) saturate(180%);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), border-color 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.availability-card.availability-loading,
.availability-card.availability-error {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
}

.availability-card--slider {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.availability-card--slider.availability-card--enter-next {
  transform: translate3d(72px, 0, 0);
}

.availability-card--slider.availability-card--enter-prev {
  transform: translate3d(-72px, 0, 0);
}

.availability-card--slider.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {

  .availability-card--slider,
  .availability-card--slider.availability-card--enter-next,
  .availability-card--slider.availability-card--enter-prev {
    transition: opacity 0.18s ease;
    transform: none;
  }

  .availability-card--slider.is-visible {
    transform: none;
  }

  .availability-slider-spinner {
    animation-duration: 1.8s;
  }
}

.availability-slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: rgba(19, 12, 8, 0.72);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.availability-slider-overlay[hidden] {
  display: none !important;
}

.availability-slider-overlay-content {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(224, 183, 130, 0.45);
  background: rgba(36, 23, 15, 0.86);
  color: var(--text-primary);
  font-size: 0.86rem;
  font-weight: 600;
}

.availability-slider-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(247, 239, 228, 0.24);
  border-top-color: var(--accent-secondary);
  animation: availabilitySpinnerSpin 0.9s linear infinite;
}

@keyframes availabilitySpinnerSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/*
  Legacy viewport card animation classes kept for backward compatibility,
  but slider mode no longer applies this behavior.
*/
.availability-grid--motion-ready .availability-card {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(160px, 0, 0) scale(0.96);
  filter: blur(8px);
  pointer-events: none;
  will-change: transform, opacity, filter;
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.1s,
    box-shadow 0.4s var(--transition),
    border-color 0.4s var(--transition);
}

.availability-grid--motion-ready .availability-card.is-in-view {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s,
    box-shadow 0.4s var(--transition),
    border-color 0.4s var(--transition);
}

.availability-card:hover {
  transform: translate3d(0, -8px, 0) scale(1.02);
  border-color: rgba(192, 138, 85, 0.4);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(192, 138, 85, 0.15);
}

.availability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--transition);
}

.availability-card:hover::before {
  opacity: 1;
}

.availability-day {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.day-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.day-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.day-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.day-badge {
  background: rgba(192, 138, 85, 0.24);
  color: #f6e4d0;
  border: 1px solid rgba(192, 138, 85, 0.5);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.day-badge i {
  width: 12px;
  height: 12px;
}

.day-pill {
  background: rgba(36, 24, 16, 0.75);
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.availability-staff {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

.staff-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.staff-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}

.staff-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.staff-badge--outside-hours {
  background: rgba(56, 189, 248, 0.16);
  color: #bae6fd;
  border: 1px solid rgba(56, 189, 248, 0.38);
}

.staff-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.staff-status--unscheduled {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.slot-line {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.3s ease;
}

.slot-line:hover {
  background: rgba(255, 255, 255, 0.04);
}

.slot-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--accent-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}

.slot-label i {
  width: 14px;
  height: 14px;
}

.slot-value {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.availability-empty {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

  .availability-meta {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .availability {
    padding: 1.25rem !important;
  }

  .availability-header {
    align-items: flex-start;
  }

  .availability-meta {
    width: 100%;
    align-items: center;
  }

  .availability-nav {
    width: 100%;
  }

  .availability-nav-btn {
    flex: 1 1 0;
    justify-content: center;
  }

  .availability-grid {
    gap: 1rem;
  }

  .availability-slider-stage {
    min-height: 250px;
  }

  .availability-card {
    padding: 1.25rem !important;
  }

  .slot-line {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.modal-open {
  overflow: hidden;
}

.contact-modal .modal-content {
  background: rgba(30, 20, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(5, 8, 16, 0.5);
  color: var(--text-primary);
}

.contact-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 2rem 1rem;
}

.contact-modal .modal-body {
  padding: 1.5rem 2rem 2rem;
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.4rem;
}

.contact-modal .form-control {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.contact-modal .form-control:focus {
  border-color: rgba(224, 183, 130, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(192, 138, 85, 0.25);
}

.contact-modal .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.cta.primary {
  background-image:
    linear-gradient(rgba(192, 138, 85, 0.2), rgba(27, 18, 12, 0.6)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-size: cover;
  color: #fff;
  border: 1px solid rgba(192, 138, 85, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.cta.primary:hover {
  transform: translateY(-4px);
  filter: brightness(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.cta.secondary {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(27, 18, 12, 0.7)),
    url('../../images/afspraak/background/premium_wood_bg.png');
  background-size: cover;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.cta.secondary:hover {
  filter: brightness(1.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 320px));
  gap: 1.5rem;
  margin: 0 auto 4rem;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  background: var(--surface-panel);
}

.card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

button.card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: var(--surface-strong);
  border: 1px solid var(--glass-border);
}

button.card:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

.card:hover {
  background: var(--surface-soft);
  border-color: var(--accent-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.team-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
  border: 1px solid rgba(255, 232, 206, 0.2);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(224, 183, 130, 0.22), transparent 40%),
    linear-gradient(125deg, transparent 42%, rgba(255, 255, 255, 0.05) 75%, transparent 100%);
  pointer-events: none;
  opacity: 0.9;
  z-index: -1;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(224, 183, 130, 0.58);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(224, 183, 130, 0.18);
}

.team-avatar {
  width: 108px;
  height: 108px;
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(224, 183, 130, 0.52);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    0 0 0 4px rgba(224, 183, 130, 0.12);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-avatar img,
.team-card:focus-within .team-avatar img {
  transform: scale(1.06);
}

.team-info {
  min-width: 0;
}

.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.62;
  text-wrap: pretty;
  text-align: justify;
}

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

  .team-card {
    padding: 1rem;
    border-radius: 16px;
    gap: 0.85rem;
  }

  .team-avatar {
    width: 90px;
    height: 90px;
  }

  .team-name {
    font-size: 1.02rem;
  }

  .team-bio {
    font-size: 0.88rem;
    line-height: 1.52;
  }
}

.team-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 1.5rem;
}

.card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2rem;
  background-color: var(--surface-panel);
  background-image: linear-gradient(120deg, rgba(20, 12, 8, 0.62), rgba(20, 12, 8, 0.46));
}

.map-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.map-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.map-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  margin: 0;
}

.map-section p {
  color: var(--text-secondary);
  margin: 0;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--surface-strong);
  box-shadow: 0 18px 40px rgba(5, 8, 16, 0.45);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.salon-preview {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2rem;
  background: var(--surface-panel);
  margin-bottom: 3rem;
}

.salon-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 1s var(--transition);
}

.salon-preview:hover img {
  transform: scale(1.05);
}

.salon-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 18, 12, 0.85), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.salon-preview-overlay figcaption {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

body.test-notice-locked {
  overflow: hidden;
}

body.test-notice-locked .shell {
  filter: blur(3px) saturate(0.88);
}

body.test-notice-locked .cookie-banner {
  pointer-events: none;
}

.test-notice-overlay[hidden],
.test-notice[hidden] {
  display: none !important;
}

.test-notice-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 6, 4, 0.78);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 90;
}

.test-notice {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 560px);
  padding: 1.6rem 1.7rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 232, 206, 0.2);
  background: rgba(26, 17, 11, 0.97);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.58);
  z-index: 95;
}

.test-notice__eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.test-notice__title {
  margin: 0;
  font-family: 'Outfit', 'Inter', system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--text-primary);
}

.test-notice__body {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.test-notice__actions {
  margin-top: 1.3rem;
  display: flex;
  justify-content: flex-end;
}

.test-notice__confirm {
  min-width: 164px;
  justify-content: center;
}

.test-notice__confirm:focus-visible {
  outline: 2px solid rgba(224, 183, 130, 0.9);
  outline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: 22px;
  background: rgba(24, 16, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px) saturate(160%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12, 8, 5, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 30;
}

body.cookie-locked {
  overflow: hidden;
}

body.cookie-locked .shell {
  filter: blur(3px) saturate(0.9);
}

body.cookie-locked .cookie-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner__content {
  max-width: 620px;
}

.cookie-banner__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.cookie-banner__link {
  color: #f6e4d0;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.35rem;
  border-bottom: 1px solid rgba(246, 228, 208, 0.4);
}

.cookie-banner__link:hover {
  color: #fff7ee;
  border-bottom-color: rgba(246, 228, 208, 0.75);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner .cta {
  padding: 0.85rem 1.4rem;
}

@media (max-width: 600px) {
  .test-notice {
    width: calc(100vw - 1.5rem);
    padding: 1.25rem;
  }

  .test-notice__title {
    font-size: 1.55rem;
  }

  .test-notice__actions {
    justify-content: stretch;
  }

  .test-notice__confirm {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .test-notice {
    transition: none;
  }
}

.pwa-install {
  display: none !important;
  position: fixed;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pwa-install.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

html[data-pwa-installed="true"] .pwa-install {
  display: none;
}

body.cookie-locked .pwa-install {
  bottom: calc(6.5rem + env(safe-area-inset-bottom));
}

.pwa-install__button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 138, 85, 0.5);
  background: rgba(24, 16, 10, 0.92);
  color: #f7efe4;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pwa-install__button:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 183, 130, 0.9);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6);
}

.pwa-install__button:focus-visible {
  outline: 2px solid rgba(224, 183, 130, 0.9);
  outline-offset: 3px;
}

.pwa-install__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--accent-secondary);
}

.pwa-install__icon i {
  width: 18px;
  height: 18px;
}

.pwa-install__hint {
  max-width: 240px;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 16, 10, 0.95);
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pwa-install__hint.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pwa-install__hint strong {
  color: var(--accent-primary);
}

@media (max-width: 600px) {
  .pwa-install__button {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .pwa-install__hint {
    max-width: 220px;
  }
}

.footer-info {
  display: flex;
  gap: 2rem;
  justify-self: start;
}

.footer-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-phone {
  white-space: nowrap;
  align-self: flex-start;
}

.footer-actions {
  display: flex;
  justify-content: center;
  justify-self: center;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  justify-self: end;
  grid-column: 3;
}

.footer-version {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.48;
  color: rgba(203, 184, 163, 0.82);
}

.site-melding {
  margin: 0 0 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.site-melding::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 20px 20px 0 0;
  opacity: 0.6;
}

.site-melding.site-melding--pending {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-140px, 0, 0);
  filter: blur(6px);
  pointer-events: none;
  will-change: transform, opacity, filter;
  transition:
    transform 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 1.55s;
}

.site-melding.site-melding--pending.site-melding--visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  pointer-events: auto;
  transition:
    transform 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.55s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.site-melding.is-breathing {
  animation: siteMeldingBreath 5.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .site-melding.site-melding--pending {
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
    pointer-events: auto;
    will-change: auto;
    transition: none;
  }
}

.site-melding-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f6e4d0;
}

.site-melding-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-melding-item {
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 600;
}

@keyframes siteMeldingBreath {
  0% {
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 28px 54px -14px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.01);
  }

  100% {
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1);
  }
}

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

  .brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem 1.5rem;
  }

  .action-bar {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 1.5rem;
  }

  .action-bar .cta {
    min-height: auto;
    padding: 1.25rem;
  }

  .request-panel {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }

  .request-panel__actions {
    width: 100%;
    justify-content: center;
  }

  .request-panel__actions .cta {
    width: 100%;
    justify-content: center;
  }

  .cta {
    justify-content: center;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding-bottom: 2rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-self: center;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .footer-copy {
    align-items: center;
    justify-self: center;
    grid-column: auto;
  }

  .availability {
    padding: 1.5rem;
  }

  .availability-header {
    align-items: center;
    text-align: center;
  }

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

  .map-section {
    padding: 1.5rem;
  }

  .map-section h2 {
    font-size: 1.5rem;
  }

  .map-frame iframe {
    height: 260px;
  }

  .slot-line {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .site-melding {
    padding: 1.25rem;
    margin-bottom: 2rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-banner__actions .cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0.5rem;
    padding: calc(0.5rem + env(safe-area-inset-top)) calc(0.5rem + env(safe-area-inset-right)) calc(0.5rem + env(safe-area-inset-bottom)) calc(0.5rem + env(safe-area-inset-left));
  }

  .shell {
    padding: 1rem !important;
  }

  .brand,
  .action-bar,
  .lookbook-strip,
  .contact-panel,
  .request-panel,
  .availability,
  .grid,
  .map-section {
    padding: 1.25rem;
  }

  .availability-card {
    padding: 1rem;
  }

  .site-melding {
    padding: 1rem;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .shell.shell--pending {
    transform: translateX(40%);
    filter: none;
  }

  .shell.is-enter {
    animation-duration: 0.45s;
  }
}

/* Root Splash Screen */
.root-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(224, 183, 130, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(203, 184, 163, 0.14), transparent 50%),
    linear-gradient(160deg, rgba(27, 18, 12, 0.96), rgba(18, 12, 9, 0.94) 70%);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  visibility: visible;
}

.root-splash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

.root-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.root-splash__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 3rem 2.4rem;
  width: min(420px, 90vw);
  background: rgba(36, 24, 16, 0.78);
  border-radius: 28px;
  border: 1px solid rgba(255, 232, 206, 0.16);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px) saturate(130%);
}

.root-splash__logo {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(192, 138, 85, 0.18), 0 18px 40px rgba(0, 0, 0, 0.45);
  animation: rootSplashGlow 2.8s ease-in-out infinite;
}

.root-splash__logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.root-splash__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: -0.04em;
  animation: rootSplashPulse 2s infinite ease-in-out;
}

.root-splash__bar {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  margin: 1.1rem auto 0.85rem;
  overflow: hidden;
}

.root-splash__bar-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-secondary) 45%, #f3d7a4 62%, transparent 80%);
  transform: translateX(-100%);
  animation: rootSplashSlide 1.7s infinite ease-in-out;
}

.root-splash__title {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.root-splash__subtitle {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

@keyframes rootSplashGlow {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(192, 138, 85, 0.18), 0 18px 40px rgba(0, 0, 0, 0.45);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(224, 183, 130, 0.28), 0 24px 50px rgba(0, 0, 0, 0.55);
    transform: scale(1.02);
  }
}

@keyframes rootSplashPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes rootSplashSlide {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 480px) {
  .root-splash__content {
    padding: 2.2rem 1.8rem 2rem;
    border-radius: 22px;
  }

  .root-splash__bar {
    width: 170px;
  }

  .root-splash__title {
    letter-spacing: 0.24em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .root-splash {
    transition-duration: 0.2s;
  }

  .root-splash__logo,
  .root-splash__logo-text,
  .root-splash__bar-fill {
    animation: none;
  }
}

/* Fallback voor toestellen zonder backdrop-filter ondersteuning */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .root-splash__content {
    background: rgba(27, 18, 12, 0.98);
  }
}

/* Beperk animaties op kleine schermen (proxy voor low-end toestellen) */
@media (max-width: 480px) {
  .root-splash__logo {
    animation-iteration-count: 2;
  }

  .root-splash__logo-text {
    animation-iteration-count: 2;
  }

  .root-splash__bar-fill {
    animation-iteration-count: 4;
  }
}
