/* Elk Car Rental — High-end dark mode (Customizer-compatibel) */
:root {
  --bg: #070708;
  --bg-elevated: #0e0e11;
  --surface: #141418;
  --surface-2: #1a1a20;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(212, 175, 106, 0.35);
  --text: #eceae6;
  --text-muted: #9c9893;
  --accent: #d4af6a;
  --accent-dim: rgba(212, 175, 106, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 32px 100px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.22s var(--ease-luxury);
  --transition-smooth: 0.32s var(--ease-luxury);
  --scrollbar-track: rgba(255, 255, 255, 0.06);
  --scrollbar-thumb: rgba(212, 175, 106, 0.65);
  --scrollbar-thumb-hover: rgba(228, 195, 120, 0.92);
  /* Google Fonts (enqueue) primair; fallbacks als fonts geblokkeerd zijn. */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --tap: 44px;

  color-scheme: dark;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-optical-sizing: auto;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

body {
  margin: 0;
  min-height: 100svh;
  background-color: var(--bg);
  color: var(--text);
  position: relative;
}

/* Subtiele film grain + vignet (editorial, geen layout-impact) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 85% 70% at 50% 45%,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.elkcr-shell {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

/* Scrollbar: viewport = html (niet *) — anders blijft Windows/Chrome standaard */
html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

html::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

html::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(232, 200, 122, 0.75) 0%,
    rgba(212, 175, 106, 0.55) 45%,
    rgba(184, 137, 60, 0.7) 100%
  );
  border-radius: 999px;
  border: 2px solid rgba(7, 7, 8, 0.85);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(240, 210, 140, 0.95) 0%,
    rgba(212, 175, 106, 0.85) 100%
  );
}

/* Overige scrollbare panelen (modals, overflow) */
.elkcr-shell,
.elkcr-main,
textarea {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.elkcr-shell::-webkit-scrollbar,
.elkcr-main::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

.elkcr-shell::-webkit-scrollbar-thumb,
.elkcr-main::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Reveal bij scroll */
.elkcr-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease-luxury),
    transform 0.65s var(--ease-luxury);
  will-change: opacity, transform;
}

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

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

@media (min-width: 768px) {
  .elkcr-shell {
    padding: 0 2rem 4rem;
  }
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 {
  letter-spacing: -0.03em;
}

h2 {
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition-smooth),
    border-color var(--transition-smooth),
    opacity var(--transition-fast);
}

/* Header — onderlijn: zachte gradient (goud) i.p.v. vlakke rand */
.elkcr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 1rem;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 8, 0.96) 0%,
    rgba(7, 7, 8, 0.88) 100%
  );
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.elkcr-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 106, 0.15) 15%,
    rgba(212, 175, 106, 0.55) 50%,
    rgba(212, 175, 106, 0.15) 85%,
    transparent 100%
  );
  pointer-events: none;
}

.elkcr-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(200px, 52vw);
  line-height: 0;
}

.elkcr-header__logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.elkcr-header__nav,
.elkcr-header__menu {
  display: flex;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.elkcr-header__link,
.elkcr-header__menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition:
    color var(--transition-smooth),
    border-color var(--transition-smooth);
}

.elkcr-header__link:hover,
.elkcr-header__menu a:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* Mobiel: full-screen hero-nav (overlay); desktop: zelfde als hiervoor */
.elkcr-header__menu-toggle {
  display: none;
  position: relative;
  z-index: 10002;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(
    145deg,
    rgba(20, 20, 26, 0.9) 0%,
    var(--surface) 100%
  );
  color: var(--text);
  cursor: pointer;
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    box-shadow var(--transition-fast);
}

.elkcr-header__menu-toggle:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(212, 175, 106, 0.2);
}

.elkcr-header__menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.elkcr-header__menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}

.elkcr-header__menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(236, 234, 230, 0.85) 0%,
    var(--accent) 100%
  );
  transition:
    transform 0.35s var(--ease-luxury),
    opacity 0.25s ease,
    background 0.25s ease;
  transform-origin: center;
}

.elkcr-header__menu-toggle[aria-expanded='true'] .elkcr-header__menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.elkcr-header__menu-toggle[aria-expanded='true'] .elkcr-header__menu-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.elkcr-header__menu-toggle[aria-expanded='true'] .elkcr-header__menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.elkcr-header__nav-wrap {
  /* Desktop: normale flow */
  position: static;
  display: flex;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

@media (max-width: 767px) {
  .elkcr-header__menu-toggle {
    display: inline-flex;
  }

  .elkcr-header__nav-wrap {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(5.5rem, env(safe-area-inset-top, 0px) + 4rem) 1.5rem max(2rem, env(safe-area-inset-bottom, 0px));
    margin: 0;
    flex: none;
    min-height: 100svh;
    background:
      radial-gradient(ellipse 120% 80% at 50% 0%, rgba(212, 175, 106, 0.08) 0%, transparent 55%),
      linear-gradient(180deg, rgba(7, 7, 8, 0.97) 0%, rgba(10, 10, 12, 0.98) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.4s var(--ease-luxury),
      visibility 0.4s var(--ease-luxury),
      transform 0.45s var(--ease-luxury);
  }

  .elkcr-header__nav-wrap.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .elkcr-header__nav {
    width: 100%;
    max-width: 24rem;
  }

  .elkcr-header__nav,
  .elkcr-header__menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.15rem;
    text-align: center;
  }

  .elkcr-header__menu li {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.45s var(--ease-luxury),
      transform 0.45s var(--ease-luxury);
  }

  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(6) {
    transition-delay: 0.3s;
  }
  .elkcr-header__nav-wrap.is-open .elkcr-header__menu li:nth-child(n + 7) {
    transition-delay: 0.35s;
  }

  /* Fallback: losse <a> zonder <ul> */
  .elkcr-header__nav > .elkcr-header__link {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.45s var(--ease-luxury),
      transform 0.45s var(--ease-luxury);
  }

  .elkcr-header__nav-wrap.is-open .elkcr-header__nav > .elkcr-header__link:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.08s;
  }

  .elkcr-header__nav-wrap.is-open .elkcr-header__nav > .elkcr-header__link:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.14s;
  }

  .elkcr-header__link,
  .elkcr-header__menu a {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 7.5vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    padding: 0.65rem 0.5rem;
    border-bottom: none;
    border-left: 3px solid transparent;
    color: var(--text);
    transition:
      color var(--transition-smooth),
      border-color var(--transition-smooth),
      text-shadow var(--transition-fast);
  }

  .elkcr-header__link:hover,
  .elkcr-header__link:focus-visible,
  .elkcr-header__menu a:hover,
  .elkcr-header__menu a:focus-visible {
    color: var(--accent);
    border-color: rgba(212, 175, 106, 0.45);
    text-shadow: 0 0 28px rgba(212, 175, 106, 0.18);
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .elkcr-header__nav-wrap {
    transition: none;
    transform: none;
  }

  .elkcr-header__menu li,
  .elkcr-header__nav > .elkcr-header__link {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .elkcr-header__menu-toggle-bar {
    transition: none;
  }
}

@media (min-width: 768px) {
  .elkcr-header__nav-wrap {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

.elkcr-main {
  padding-top: 0.5rem;
}

body.elkcr-nav-open {
  overflow: hidden;
}

/* Hero (compact: merklogo staat in header) */
.elkcr-hero {
  padding: 1.25rem 0 1.35rem;
  text-align: center;
}

@media (min-width: 768px) {
  .elkcr-hero {
    padding: 1.75rem 0 1.75rem;
  }
}

.elkcr-hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.elkcr-hero__lead {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Fleet */
.elkcr-fleet {
  padding: 2rem 0 1rem;
}

.elkcr-fleet__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.elkcr-fleet__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.elkcr-fleet__subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.elkcr-fleet__search {
  margin: 0 auto 2rem;
  max-width: min(100%, 40rem);
  text-align: left;
  padding: 1.1rem 1.2rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(20, 20, 26, 0.65) 0%,
    var(--surface) 40%,
    rgba(12, 12, 14, 0.9) 100%
  );
  box-shadow: var(--shadow);
}

.elkcr-fleet__search-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.elkcr-fleet__search-field {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.elkcr-fleet__search-field:focus-within {
  border-color: rgba(212, 175, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.12);
}

.elkcr-fleet__search-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  color: var(--accent);
  background: rgba(212, 175, 106, 0.08);
}

.elkcr-fleet__search-input {
  flex: 1;
  min-width: 0;
  min-height: var(--tap);
  padding: 0.65rem 1rem 0.65rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-appearance: none;
  appearance: none;
}

.elkcr-fleet__search-input::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.elkcr-fleet__search-input:focus {
  outline: none;
}

.elkcr-fleet__search-input::-webkit-search-decoration,
.elkcr-fleet__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.elkcr-fleet__filter-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: -0.5rem auto 1.15rem;
  max-width: min(100%, 40rem);
}

.elkcr-fleet__filter-empty[hidden] {
  display: none !important;
}

.elkcr-fleet__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}

.elkcr-fleet__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

.elkcr-fleet__see-all {
  text-align: center;
  margin: 0.75rem 0 0;
}

.elkcr-fleet__see-all-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid rgba(212, 175, 106, 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.elkcr-fleet__see-all-link:hover {
  color: var(--text);
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .elkcr-fleet__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .elkcr-fleet__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Car card */
.car-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth),
    transform var(--transition-fast);
}

.car-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(212, 175, 106, 0.22);
}

/* Stagger reveal vloot */
.elkcr-fleet__grid .car-card.elkcr-reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.elkcr-fleet__grid .car-card.elkcr-reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.elkcr-fleet__grid .car-card.elkcr-reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.elkcr-fleet__grid .car-card.elkcr-reveal:nth-child(4) {
  transition-delay: 0.22s;
}
.elkcr-fleet__grid .car-card.elkcr-reveal:nth-child(5) {
  transition-delay: 0.28s;
}
.elkcr-fleet__grid .car-card.elkcr-reveal:nth-child(6) {
  transition-delay: 0.34s;
}

/* Vloot-filter: niet [hidden] — conflicteert met theme/plugin CSS */
.car-card.elkcr-fleet__card--hidden {
  display: none !important;
}

.car-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.car-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.car-card__media:hover .car-card__img {
  transform: scale(1.06);
}

.car-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(7, 7, 8, 0.92) 100%
  );
}

.car-card__title {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.car-card__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.car-card__booking {
  padding: 1rem 1.1rem 1.15rem;
}

/* Booking module */
.booking {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.booking--card .booking__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (max-width: 380px) {
  .booking--card .booking__dates {
    grid-template-columns: 1fr;
  }
}

.booking--detail .booking__dates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 520px) {
  .booking--detail .booking__dates {
    grid-template-columns: 1fr 1fr;
  }
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.booking__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking__input {
  min-height: var(--tap);
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
}

.booking__input:focus {
  outline: 2px solid var(--border-strong);
  outline-offset: 1px;
}

.booking__input::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
  opacity: 0.75;
}

.booking__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.booking__actions a {
  position: relative;
  z-index: 1;
}

@media (min-width: 420px) {
  .booking__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 0 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-smooth),
    border-color var(--transition-smooth),
    color var(--transition-smooth),
    filter var(--transition-fast),
    box-shadow var(--transition-smooth),
    transform var(--transition-fast);
}

a.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(
    135deg,
    #e8c87a 0%,
    var(--accent) 45%,
    #b8893c 100%
  );
  color: #1a1208;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(212, 175, 106, 0.18);
}

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

.btn--ghost:hover {
  border-color: var(--border-strong);
  background: var(--accent-dim);
}

/* Geen pointer-events: none — dan zijn klikken/tab naar “Meer informatie” soms problematisch;
   disabled huur-knop: JS vangt click af. Visueel geen “onzichtbare” tekst door lage opacity. */
.btn--disabled {
  cursor: not-allowed;
}

.btn.btn--primary.btn--disabled {
  opacity: 1;
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: var(--border);
  filter: none;
}

.btn.btn--primary.btn--disabled:hover {
  filter: none;
  background: var(--surface-2);
  color: var(--text-muted);
}

/* Expliciete kleuren (wint van theme/plugins die `a { color: inherit }` breken). */
.booking a.btn.btn--ghost {
  color: var(--text);
}

.booking a.btn.btn--primary:not(.btn--disabled) {
  color: #1a1208;
}

.booking__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}

.booking__hint.is-hidden {
  display: none;
}

.booking__trust {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

.booking--detail {
  gap: 1rem;
}

.booking--detail .booking__actions {
  margin-top: 0.25rem;
}

/* Service */
.service {
  padding: 3rem 0 1rem;
}

.service__inner {
  background: linear-gradient(
    160deg,
    var(--surface) 0%,
    var(--bg-elevated) 55%,
    var(--surface-2) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .service__inner {
    padding: 2.75rem 2.5rem;
  }
}

.service__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  text-align: center;
}

.service__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.15;
}

.service__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service__card {
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.service__card:hover {
  border-color: rgba(212, 175, 106, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.service__card-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.service__card-body {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Detail */
.elkcr-link-back {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 1rem 0 1.25rem;
  border-bottom: 1px solid transparent;
}

.elkcr-link-back:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.elkcr-detail__hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.35rem;
}

.elkcr-detail__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(42vh, 360px);
  object-fit: cover;
}

.elkcr-detail__hero-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(7, 7, 8, 0.95)
  );
}

.elkcr-detail__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 0.35rem;
}

.elkcr-detail__tagline {
  color: var(--text-muted);
  margin: 0;
}

.elkcr-car-gallery .elkcr-detail__hero-text {
  z-index: 1;
}

.elkcr-car-gallery__viewport {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

/* Track moet N × viewport breed zijn; anders is translateX(%) t.o.v. te smalle box en klopt de slide niet. */
.elkcr-car-gallery__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  width: calc(var(--elkcr-n, 1) * 100%);
}

.elkcr-car-gallery__slide {
  flex: 0 0 calc(100% / var(--elkcr-n, 1));
  margin: 0;
  min-width: 0;
}

.elkcr-car-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(42vh, 360px);
  object-fit: cover;
}

.elkcr-car-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 7, 8, 0.55);
  color: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.elkcr-car-gallery__nav:hover {
  background: rgba(7, 7, 8, 0.85);
  border-color: var(--accent);
  color: var(--accent);
}

.elkcr-car-gallery__nav--prev {
  left: 0.65rem;
}

.elkcr-car-gallery__nav--next {
  right: 0.65rem;
}

.elkcr-car-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.5rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.elkcr-car-gallery__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.elkcr-car-gallery__dot[aria-selected="true"] {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.15);
}

.elkcr-detail__hero--empty {
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(155deg, var(--surface), #0a0a0b);
}

.elkcr-detail__body {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .elkcr-detail__body {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.elkcr-detail__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.elkcr-detail__panel-title {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

.elkcr-detail__specs {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.elkcr-detail__spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.elkcr-detail__spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.elkcr-detail__spec-row dt {
  color: var(--text-muted);
  font-weight: 500;
}

.elkcr-detail__spec-row dd {
  margin: 0;
  text-align: right;
}

.elkcr-detail--empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.elkcr-detail__content {
  margin-top: 2rem;
  max-width: min(42rem, 720px);
  margin-left: auto;
  margin-right: auto;
}

.elkcr-detail__empty-specs {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.elkcr-generic {
  padding: 2rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.elkcr-generic__title {
  margin-bottom: 1rem;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.elkcr-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.elkcr-footer__line {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
  line-height: 1.45;
}

.elkcr-footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0.2rem auto 0;
  opacity: 0.85;
  line-height: 1.4;
}

.elkcr-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  margin: 0.65rem auto 0;
  max-width: 36rem;
}

.elkcr-footer__social-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 0.2rem 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.elkcr-footer__social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.elkcr-footer__credit-link {
  font-weight: 600;
  font-size: inherit;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.elkcr-footer__credit-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
