/* ============================================================
   SINGLE VEHICLE  (car-single.css)
   Header & footer styles intentionally excluded.
   ============================================================ */

/* --- Base tokens — DELETE this block if header.css already defines them --- */
:root {
  --bg: #0E0E0E;
  --ink: #0E0E0E;
  --accent: #6FBEF0;
  --accent-soft: rgba(111, 190, 240, .12);
  --line: rgba(14, 14, 14, .08);
  --muted: #5b5b62;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 30px 80px -30px rgba(14, 14, 14, .25);
}



.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0E0E0E;
  box-shadow: 0 14px 40px -10px rgba(111, 190, 240, .55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 20px 50px -10px rgba(255, 255, 255, .4);
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-3px);
}
/* --- end deletable base block --- */


/* --- Section shell --- */
section {
  padding: 120px 0;
  position: relative;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

h2 .accent {
  color: var(--accent);
  font-style: italic;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}


/* --- Page hero (dark band) --- */
.page-hero {
  position: relative;
  padding: 170px 0 60px;
  background: #0E0E0E;
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 190, 240, .25), transparent 70%);
  filter: blur(40px);
  animation: float 14s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(60px, -40px); }
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
}


/* --- Car hero (gallery + info) --- */
.car-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  z-index: 2;
}

.car-gallery {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .6);
}

.car-gallery .main {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
}

.car-gallery .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.car-gallery:hover .main img {
  transform: scale(1.05);
}

.car-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(14, 14, 14, .6);
  backdrop-filter: blur(10px);
}

.car-thumbs img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: .7;
  transition: all .3s;
}

.car-thumbs img:hover,
.car-thumbs img.active {
  opacity: 1;
  outline: 2px solid var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  padding: 6px 12px;
  background: rgba(111, 190, 240, .14);
  border: 1px solid rgba(111, 190, 240, .3);
  color: var(--accent);
  border-radius: 30px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}

.car-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: #fff;
}

.car-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  margin-bottom: 28px;
}

.price-box {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  margin-bottom: 24px;
}

.price-box .lbl {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  display: block;
  margin-bottom: 6px;
}

.price-box .val {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.price-box .vat {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 6px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.quick-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.qm {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.qm svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.qm .qm-l {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.qm .qm-v {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}


/* --- Specs --- */
.specs {
  background: #fafafa;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}

.spec-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px -20px rgba(14, 14, 14, .18);
}

.spec-table tr {
  border-bottom: 1px solid var(--line);
}

.spec-table tr:last-child {
  border: none;
}

.spec-table td {
  padding: 16px 22px;
  font-size: 14.5px;
}

.spec-table td:first-child {
  color: var(--muted);
  width: 40%;
  font-weight: 500;
}

.spec-table td:last-child {
  font-weight: 600;
  text-align: right;
}

.spec-table tr:hover {
  background: #f4faff;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px -20px rgba(14, 14, 14, .18);
}

.features-list .ft {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}

.features-list .ft:last-child {
  border: none;
}

.features-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}


/* --- Inspection --- */
.inspection {
  background: #fff;
}

.insp-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.insp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insp-card {
  padding: 28px 22px;
  background: linear-gradient(160deg, #fff, #f4faff);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: all .4s;
}

.insp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.insp-card .pct {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.insp-card h4 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.insp-card p {
  font-size: 13px;
  color: var(--muted);
}


/* --- Shipping --- */
.ship {
  background: #0E0E0E;
  color: #fff;
}

.ship .section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.ship h2 {
  color: #fff;
}

.ship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ship-card {
  padding: 32px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.ship-card:hover {
  transform: translateY(-8px);
  background: rgba(111, 190, 240, .06);
  border-color: var(--accent);
}

.ship-card.featured {
  background: linear-gradient(160deg, rgba(111, 190, 240, .15), rgba(111, 190, 240, .04));
  border-color: var(--accent);
}

.ship-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 11px;
  background: var(--accent);
  color: #0E0E0E;
  border-radius: 30px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ship-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.ship-card .sub {
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  margin-bottom: 22px;
}

.ship-card .pp {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 18px;
}

.ship-card .pp small {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  font-family: 'Inter', sans-serif;
}

.ship-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  padding: 0;
}

.ship-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}

.ship-card svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}


/* --- Related --- */
.related {
  background: #fafafa;
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prod {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  transition: all .5s cubic-bezier(.2, .8, .2, 1);
  border: 1px solid var(--line);
}

.prod:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.prod-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.prod:hover .prod-img img {
  transform: scale(1.1);
}

.prod-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0E0E0E;
}

.prod-body {
  padding: 24px;
}

.prod-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.prod-meta {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 18px;
}

.prod-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.prod-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0E0E0E;
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .3s;
}

.prod:hover .prod-arrow {
  background: var(--accent);
  color: #0E0E0E;
  transform: rotate(-45deg);
}


/* --- Overview / Description --- */
.overview {
  background: #fff;
}

.overview-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.overview-lead {
  font-size: 21px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.overview-inner h2 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 22px;
  padding-bottom: 16px;
}

.overview-inner h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.overview-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 44px 0 14px;
}

.overview-text {
  font-size: 17px;
  line-height: 1.9;
  color: #44454c;
}

.overview-text p {
  margin-bottom: 18px;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

.overview-text + h3 {
  margin-top: 48px;
}

.overview-text ul,
.overview-text ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.overview-text li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.overview-text li::marker {
  color: var(--accent);
}

.overview-text strong {
  color: var(--ink);
  font-weight: 600;
}


/* --- FAQ --- */
.car-faq {
  background: #fafafa;
}

.car-faq .faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.car-faq .faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}

.car-faq .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  transition: color .3s;
}

.car-faq .faq-item:hover .faq-q {
  color: var(--accent);
}

.car-faq .faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: all .4s;
  color: var(--ink);
}

.car-faq .faq-item.open .faq-icon {
  background: var(--accent);
  transform: rotate(45deg);
}

.car-faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .3s ease;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.car-faq .faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 18px;
}


/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }


/* --- Responsive --- */
@media (max-width: 1000px) {
  .car-hero,
  .specs-grid,
  .insp-grid,
  .ship-grid,
  .rel-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insp-grid,
  .ship-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .insp-grid,
  .ship-grid {
    grid-template-columns: 1fr;
  }

  .quick-meta {
    grid-template-columns: 1fr;
  }
}