/*
  styles.css – Approved Motion (licht, mobile-first, dark header)
  --------------------------------------------------------------
  1. Tokens & reset
  2. Base & typography
  3. Layout utilities
  4. Header & navigation
  5. Hero
  6. Waarom Approved Motion (USP's)
  7. Voorraad / auto cards
  8. Reviews
  9. Ons verhaal
  10. Importaanvraag
  11. Footer
  12. Floating WhatsApp
  13. Detail page (gallery, summary, info-cards)
  14. Lightbox
  15. Responsive breakpoints
*/

/* 1. TOKENS & RESET --------------------------------------- */

:root {
  --primary: #111827;
  --primary-soft: #1f2937;
  --primary-header: #020617;
  --bg: #f3f4f6;
  --bg-muted: #eef1f4;
  --white: #ffffff;
  --accent: #4eaf7c;
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: #e5e7eb;
  --border-strong: #d1d5db;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --transition-fast: 0.18s ease-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* 2. BASE & TYPOGRAPHY ------------------------------------ */

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.1rem, 4.1vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.2rem);
}

h3 {
  font-size: 1.05rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.text-accent {
  color: var(--accent);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-accent:hover,
.btn-accent:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(78, 175, 124, 0.35);
}

.btn-ghost {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--border-subtle);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.btn-accent-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent-outline:hover,
.btn-accent-outline:focus {
  background-color: rgba(78, 175, 124, 0.08);
}

.btn-full {
  width: 100%;
}

/* 3. LAYOUT UTILITIES ------------------------------------- */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.section {
  padding: 3rem 0;
}

.section-why {
  background-color: #f5f6f8;
}

.section-stock {
  padding-top: 2.75rem;
}

.section-reviews {
  background-color: var(--white);
}

.section-story {
  background-color: #f5f6f8;
}

.section-import {
  background-color: var(--bg-muted);
}

.section-header {
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.section-header-inline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background-color: #e5e7eb;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* 4. HEADER & NAVIGATION ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: var(--primary-header);
  color: #f9fafb;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  transition:
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.site-header--scrolled {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  color: #f9fafb;
  text-decoration: none;
}

.logo__img {
  height: 30px;
  width: auto;
  display: block;
}

/* Nav */

.site-nav {
  display: none; /* mobile: toggled with JS */
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.6rem 0 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-end;
}

.site-nav__list a {
  color: #e5e7eb;
  font-size: 0.94rem;
  padding: 0.35rem 0;
}

.site-nav__list a:hover,
.site-nav__list a:focus {
  color: var(--accent);
  text-decoration: none;
}

/* Nav toggle */

.nav-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #e5e7eb;
}

/* 5. HERO ------------------------------------------------- */

.hero {
  padding: 2.7rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(78, 175, 124, 0.18), transparent 50%),
    linear-gradient(to bottom, var(--white), var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-subtitle {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.hero-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.hero-inline span {
  color: var(--muted);
}

.hero-whatsapp {
  font-weight: 600;
}

.hero-card {
  background-color: var(--primary);
  color: #e5e7eb;
  border-radius: 16px;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.55);
}

.hero-card__top {
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  font-size: 0.75rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background-color: rgba(31, 41, 55, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  margin-bottom: 0.7rem;
}

.hero-car-name {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-car-detail {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #d1d5db;
}

.hero-specs {
  margin: 0.9rem 0 0.9rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  font-size: 0.82rem;
}

.hero-specs div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-specs dt {
  color: #9ca3af;
}

.hero-specs dd {
  margin: 0;
  color: #f9fafb;
}

.hero-card-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.7rem;
}

/* 6. WAAROM APPROVED MOTION (USP'S) ---------------------- */

.why-header-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}

.why-header-row p {
  max-width: 560px;
}

.usp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.usp-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.07);
}

.usp-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.usp-title {
  margin: 0 0 0.3rem;
}

/* 7. VOORRAAD / AUTO CARDS ------------------------------- */

.section-stock .section-header {
  margin-bottom: 1.6rem;
}

.stock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-group label {
  font-size: 0.84rem;
  color: var(--muted);
}

.filter-group select {
  min-width: 170px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background-color: var(--white);
  font-size: 0.9rem;
}

/* Car grid & card */

.car-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.car-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.car-card:hover,
.car-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(78, 175, 124, 0.7);
  box-shadow: var(--shadow-soft);
}

.car-image-wrapper {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(120deg, #e5e7eb, #d1d5db);
}

.car-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out;
}

.car-card:hover .car-image-wrapper img,
.car-card:focus-within .car-image-wrapper img {
  transform: scale(1.03);
}

.car-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.car-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.car-title {
  font-size: 1rem;
  margin: 0;
  max-width: 70%;
}

.car-price {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.car-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem 0.75rem;
  font-size: 0.85rem;
}

.car-meta span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
}

.car-highlights {
  font-size: 0.86rem;
  margin-bottom: 0;
}

/* 8. REVIEWS ---------------------------------------------- */

.section-reviews .section-header {
  margin-bottom: 1.8rem;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.review-card {
  background-color: var(--bg-muted);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border-subtle);
}

.review-stars {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #facc15;
}

.review-text {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.review-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-soft);
}

/* 9. ONS VERHAAL ------------------------------------------ */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.story-main h2 {
  margin-bottom: 0.8rem;
}

.story-main p {
  font-size: 0.98rem;
}

.story-cta {
  margin-top: 1.1rem;
}

.story-side {
  width: 100%;
}

.story-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.07);
}

.story-card h3 {
  margin-bottom: 0.7rem;
}

.story-card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.story-card li {
  margin-bottom: 0.35rem;
}

/* 10. IMPORTAANVRAAG ------------------------------------- */

.card-import {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.card-title {
  margin-bottom: 0.3rem;
}

.card-subtitle {
  margin-bottom: 1.4rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem 1rem;
}

.form-grid-2 {
  grid-template-columns: minmax(0, 1fr);
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* Inputs */

.input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.75rem;
  font: inherit;
  background-color: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input::placeholder {
  color: #9ca3af;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(78, 175, 124, 0.25);
}

.input-textarea {
  min-height: 120px;
  resize: vertical;
}

.import-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* 11. FOOTER ---------------------------------------------- */

.site-footer {
  margin-top: 3rem;
  background-color: #020617;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-inline: 1.25rem;
  padding-top: 2.2rem;
  padding-bottom: 1.7rem;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f9fafb;
}

.footer-tagline {
  margin-top: 0.25rem;
}

.footer-columns {
  display: grid;
  gap: 1.75rem;
}

.footer-column h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.footer-column p,
.footer-column a {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--accent);
}

.footer-social {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid #020617;
  background-color: #020617;
  padding: 0.8rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-back-to-top {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-back-to-top:hover,
.footer-back-to-top:focus {
  color: var(--accent);
  text-decoration: underline;
}

/* 12. FLOATING WHATSAPP ----------------------------------- */

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  z-index: 50;
}

/* 13. DETAIL PAGE (gallery + summary + info cards) -------- */

.detail-page main {
  padding-top: 0.5rem;
}

.detail-hero {
  padding-top: 2.25rem;
  padding-bottom: 2.75rem;
  background-color: #f9fafb;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
  align-items: flex-start;
}

/* Gallery */

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-main-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(120deg, #e5e7eb, #d1d5db);
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  max-height: 460px;
}

.detail-main-cta {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  border-radius: 999px;
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  background-color: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  cursor: pointer;
}

.detail-thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.detail-thumb {
  border: none;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
  flex: 0 0 23%;
  position: relative;
  border: 2px solid transparent;
}

.detail-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumb.is-active {
  border-color: var(--accent);
}

/* Summary card */

.detail-summary {
  background-color: var(--white);
  border-radius: 20px;
  padding: 1.6rem 1.4rem 1.7rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.detail-title {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.detail-location {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.detail-price {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.1rem;
  margin: 0 0 1rem;
  padding: 0;
}

.detail-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.detail-meta dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.detail-meta dd {
  margin: 0;
  font-size: 0.94rem;
}

.detail-usp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.detail-usp-chips span {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: #f3f4f6;
  color: #4b5563;
}

.detail-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-cta-link {
  font-size: 0.86rem;
}

/* Onderste info-kaarten */

.detail-info {
  background-color: #f5f6f8;
  padding-top: 2.3rem;
  padding-bottom: 3rem;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
}

.detail-info-card {
  background-color: var(--white);
  border-radius: 26px;
  padding: 1.6rem 1.8rem 1.8rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.06);
}

.detail-info-card h2 {
  margin-bottom: 0.5rem;
}

.detail-subheading {
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

/* Highlights list met groene bullets */

.detail-highlights-list {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 0.4rem;
  font-size: 0.96rem;
}

.detail-highlights-list li {
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1.1rem;
}

.detail-highlights-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* Opties in twee kolommen */

.detail-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.6rem 1.6rem;
}

.detail-options-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.detail-options-grid li {
  margin-bottom: 0.25rem;
}

/* Technische gegevens compacte stijl */

.detail-specs-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem 1.8rem;
  margin: 0.6rem 0 1.4rem;
  padding: 0;
}

.detail-specs-compact div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.detail-specs-compact dt {
  font-size: 0.9rem;
  color: #6b7280;
}

.detail-specs-compact dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

/* Financieringsknoppen */

.detail-finance-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

/* 14. LIGHTBOX -------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  color: #f9fafb;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background-color: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  font-size: 1.3rem;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-prev {
  left: 0.8rem;
}

.lightbox-next {
  right: 0.8rem;
}

.lightbox-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background-color: rgba(148, 163, 184, 0.7);
  cursor: pointer;
}

.lightbox-dot.is-active {
  width: 18px;
  background-color: var(--accent);
}

/* 15. RESPONSIVE BREAKPOINTS ------------------------------ */

/* >= 640px (small tablets) */
@media (min-width: 640px) {
  .usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-specs-compact {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* >= 768px (tablets) */
@media (min-width: 768px) {
  .hero {
    padding: 3.2rem 0 3.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .section {
    padding: 3.4rem 0;
  }

  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.3rem;
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 2rem;
  }

  .detail-info-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
  }

  .detail-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* >= 960px (desktop) */
@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block !important;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.3rem;
    padding: 0;
  }

  .section-header-inline {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .why-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .car-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* >= 1120px (large desktop) */
@media (min-width: 1120px) {
  .hero-subtitle {
    font-size: 1.02rem;
  }
}