﻿/* =============================================================
   YADOCH — main.css
   Design tokens → base → layout → components → utilities
   ============================================================= */

/* ── 1. TOKENS ──────────────────────────────────────────────── */
:root {
  /* Colors */
  --red:      #DC143C;
  --red-deep: #B8102A;
  --black:    #0C0C0A;
  --ink:      #1A1A1A;
  --white:    #FAFAF8;
  --surface:  #FFFFFF;
  --g100:     #F5F5F3;
  --g200:     #E8E8E6;
  --g400:     #9A9A98;
  --g600:     #636361;
  --g800:     #2A2A28;
  --success:  #10B981;
  --warn:     #F59E0B;

  /* Typography */
  --display: "Barlow Condensed";
  --body:    "DM Sans";

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 2. BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ── 3. GLOBAL CONTAINER ─────────────────────────────────────── */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ── 4. NAVBAR ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,12,10,0.6) 0%, transparent 100%);
  transition: opacity 0.4s;
}

.nav.solid {
  background: rgba(12,12,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav.solid::before { opacity: 0; }

/* Single car — nav sits in normal flow, always solid dark */
.single-car .nav {
  position: relative;
  top: auto; left: auto; right: auto;
  background: rgba(12, 12, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.single-car .nav::before { display: none; }

/* Single car — spec icon+text rows */
.single-car__specs li {
  display: flex; align-items: center; gap: 12px;
}
.single-car__spec-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  color: var(--red);
}
.single-car__spec-icon svg { width: 24px; height: 24px; }
.single-car__spec-text {
  display: flex; flex-direction: column; gap: 1px;
  font-size: 0.875rem;
}
.single-car__spec-text strong {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--g400);
}


.nav > .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 56px;
  width: 100%; position: relative;
}

/* Logo */
.logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 11px;
  flex-shrink: 0; z-index: 1;
}

.logo-img {
  height: 72px; width: auto;
  object-fit: contain; display: block;
}

.logo-text {
  font-family: var(--display);
  font-size: 24px; font-weight: 800;
  color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
}

/* Centered nav links */
.nav-menu {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}

.nav-menu a {
  display: block; padding: 8px 18px;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 3px; transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a { color: #fff; background: rgba(255,255,255,0.07); }

/* ── Desktop submenu ─────────────────────────────────────────────────────── */
.nav-menu .menu-item-has-children { position: relative; }

/* Invisible bridge fills the gap so hover isn't lost between item and menu */
.nav-menu .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 12px;
}

.nav-menu .sub-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--black);
  border-top: 2px solid var(--red);
  border-radius: 0 0 4px 4px;
  list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 9999;
}

/* Arrow tip */
.nav-menu .sub-menu::before {
  content: '';
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--red);
}

.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .sub-menu li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-menu .sub-menu li:last-child { border-bottom: none; }

.nav-menu .sub-menu a {
  display: block; padding: 12px 20px;
  font-family: var(--body);
  font-size: 0.8125rem; font-weight: 500;
  color: var(--g400); text-transform: none;
  letter-spacing: 0.01em;
  background: transparent;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  padding-left: 26px;
}

/* Right-align if near viewport edge */
.nav-menu > li:last-child .sub-menu,
.nav-menu > li:nth-last-child(2) .sub-menu {
  left: auto; right: 0; transform: translateY(-4px);
}
.nav-menu > li:last-child:hover .sub-menu,
.nav-menu > li:nth-last-child(2):hover .sub-menu,
.nav-menu > li:last-child:focus-within .sub-menu,
.nav-menu > li:nth-last-child(2):focus-within .sub-menu {
  transform: translateY(0);
}
.nav-menu > li:last-child .sub-menu::before,
.nav-menu > li:nth-last-child(2) .sub-menu::before {
  left: auto; right: 24px; transform: none;
}

/* Right side */
.nav-end {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; z-index: 1;
}

.nav-tel {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}

.nav-tel svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }
.nav-tel:hover { color: #fff; }

.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; border-radius: 3px;
  background: var(--red); color: #fff;
  font-family: var(--display); font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s, box-shadow 0.2s; white-space: nowrap;
}

.nav-cta:hover { background: var(--red-deep); box-shadow: 0 4px 20px rgba(220,20,60,0.4); }

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; z-index: 1; padding: 4px;
}

.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.25s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile fullscreen menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile-links {
  list-style: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-bottom: 48px;
}

.nav-mobile-links a {
  font-family: var(--display);
  font-size: clamp(1.5rem, 6vw, 2rem); font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s;
  display: block; padding: 4px 0;
}

.nav-mobile-links a:hover { color: #fff; }

/* Mobile submenu */
.nav-mobile-links .menu-item-has-children > a { position: relative; }
.nav-mobile-links .menu-item-has-children > a::after {
  content: '+';
  position: absolute; right: -24px; top: 50%; transform: translateY(-50%);
  font-size: 1.2em; color: var(--red); transition: transform 0.2s;
}
.nav-mobile-links .menu-item-has-children.open > a::after { content: '−'; }

.nav-mobile-links .sub-menu {
  list-style: none;
  display: none; flex-direction: column; align-items: center; gap: 2px;
  margin-top: 8px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-links .sub-menu.open { display: flex; }

.nav-mobile-links .sub-menu a {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.nav-mobile-links .sub-menu a:hover { color: var(--red); }

.nav-mobile-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: 3px;
  background: var(--red); color: #fff;
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}

.nav-mobile-cta:hover { background: var(--red-deep); }

.nav-mobile-footer {
  position: absolute; bottom: 40px;
  font-size: 0.8125rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* ── 5. BUTTONS (Elementor / content area) ───────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 16px 36px; border-radius: 3px; border: none; cursor: pointer;
  font-family: var(--display);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s var(--ease); white-space: nowrap;
}

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 8px 32px rgba(220,20,60,0.45);
  transform: translateY(-2px);
}

/* ── 6. CAR CARD ────────────────────────────────────────────── */
.car-card {
  background: var(--surface);
  border: 1px solid var(--g200);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.car-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.car-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.car-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.car-card:hover .car-card__thumb img { transform: scale(1.04); }

.car-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.car-card__badge--available   { background: var(--success); color: var(--white); }
.car-card__badge--unavailable { background: var(--g600);    color: var(--white); }

.car-card__body { padding: 20px; }

.car-card__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.car-card__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.car-card__specs li {
  font-size: 12px;
  font-weight: 500;
  color: var(--g600);
  background: var(--g100);
  padding: 4px 10px;
}

.car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.car-card__price {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}

.car-card__price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--g400);
  margin-left: 2px;
}

.car-card__cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s var(--ease);
}

.car-card__cta:hover { color: var(--red-deep); }

/* ── 7. CARS GRID ───────────────────────────────────────────── */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .cars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cars-grid { grid-template-columns: 1fr; } }

/* ── VCARD — unified vehicle card (archive, widget, single) ──── */
.vcard {
  background: var(--surface);
  border: 1px solid var(--g200);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.vcard:hover { border-color: var(--red); transform: translateY(-3px); }

/* Thumb */
.vcard__thumb-link { display: block; }

.vcard__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 20px;
}

.vcard__thumb img {
  width: 100% !important; height: 100% !important;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  display: block;
}

.vcard:hover .vcard__thumb img { transform: scale(1.04); }

.vcard__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.vcard__ph svg { width: 72px; height: auto; }

/* Category pill */
.vcard__cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
}

/* Unavailable overlay */
.vcard__unavail {
  position: absolute; inset: 0;
  background: rgba(12,12,10,0.55);
  display: flex; align-items: center; justify-content: center;
}

.vcard__unavail span {
  font-family: var(--display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
}

/* Body */
.vcard__body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; }

/* Head row — title + brand logo */
.vcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.vcard__title-link { text-decoration: none; flex: 1; min-width: 0; }

.vcard__title {
  font-family: var(--display);
  font-size: 21px; font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin: 0;
}

.vcard__brand-logo {
  height: 36px !important; width: auto !important;
  max-width: 64px !important;
  object-fit: contain;
  flex-shrink: 0;
}

.vcard__brand-name {
  font-family: var(--body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--g400);
  flex-shrink: 0;
}

/* Specs row */
.vcard__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--g200);
}

.vcard__spec {
  display: flex;
  align-items: center;
  gap: 7px;
}

.vcard__spec-icon {
  width: 32px; height: 32px;
  background: rgba(220,20,60,0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.vcard__spec-icon svg { width: 16px; height: 16px; stroke: var(--red); }

.vcard__spec-label {
  font-family: var(--body);
  font-size: 12px; font-weight: 500;
  color: var(--g600);
  white-space: nowrap;
}

/* Footer row — price + button */
.vcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.vcard__price { display: flex; align-items: baseline; gap: 4px; }

.vcard__price strong {
  font-family: var(--display);
  font-size: 22px; font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.vcard__price span {
  font-family: var(--body);
  font-size: 13px; font-weight: 400;
  color: var(--g400);
}

.vcard__btn {
  display: inline-flex; align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease);
}

.vcard__btn:hover { background: var(--red-deep); color: var(--white); }

/* ── VCARD SINGLE page overrides ────────────────────────────── */
.single-car-wrap {
  background: var(--black);
  padding: 80px 0;
}

.vcard--single {
  flex-direction: row;
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  gap: 0;
}

.vcard--single:hover { transform: none; border-color: var(--g200); }

.vcard__thumb--single {
  flex: 0 0 55%;
  aspect-ratio: unset;
  min-height: 420px;
}

.vcard__main-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.vcard__gallery-thumbs {
  display: flex; gap: 4px;
  border-top: 4px solid var(--black);
}

.vcard__gthumb {
  flex: 1; height: 80px;
  object-fit: cover; object-position: center;
  cursor: pointer; opacity: 0.8;
  transition: opacity 0.2s;
}

.vcard__gthumb:hover { opacity: 1; }

.vcard__body--single { flex: 1; padding: 36px 40px; }

.vcard__title--single {
  font-size: 32px;
  white-space: normal;
}

.vcard__specs--single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vcard__specs--single .vcard__spec-icon {
  width: 40px; height: 40px;
}

.vcard__specs--single .vcard__spec-icon svg { width: 20px; height: 20px; }

.vcard__specs--single .vcard__spec { flex-direction: row; align-items: center; gap: 12px; }

.vcard__spec-text { display: flex; flex-direction: column; gap: 1px; }

.vcard__spec-key {
  font-family: var(--body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--g400);
}

.vcard__spec-val {
  font-family: var(--body);
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}

.vcard__footer--single { margin-top: 28px; }

.vcard__btn--lg { padding: 14px 32px; font-size: 15px; }

/* Single desc area */
.single-car__desc { max-width: 1100px; margin: 0 auto; padding: 48px 20px; color: var(--white); }

/* Single features */
.single-car__features { margin: 20px 0; }

.single-car__features h3 {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--g600);
  margin-bottom: 10px;
}

.single-car__features ul {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none;
}

.single-car__features li {
  font-size: 12px; font-weight: 500;
  color: var(--g600);
  background: var(--g100);
  padding: 4px 12px;
}

/* Responsive — single */
@media (max-width: 900px) {
  .vcard--single { flex-direction: column; }
  .vcard__thumb--single { flex: none; min-height: 260px; }
  .vcard__body--single { padding: 24px 20px; }
  .vcard__title--single { font-size: 26px; }
  .vcard__specs--single { grid-template-columns: 1fr; }
}

/* ── 8. FILTER BAR ──────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--g200);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.filter-bar__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}

.filter-bar__group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g600);
}

.filter-bar__group select {
  appearance: none;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: var(--g100);
  border: 1px solid var(--g200);
  padding: 10px 36px 10px 14px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A98' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-bar__group select:focus {
  outline: none;
  border-color: var(--red);
}

/* ── 9. SECTION UTILITIES ───────────────────────────────────── */
.section { padding: 80px 0; }

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--light { background: var(--g100); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header { margin-bottom: 48px; }

.section-header__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.section-header__title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.section--dark .section-header__title { color: var(--white); }

/* ── 10. FOOTER ─────────────────────────────────────────────── */
/* Separator between content sections and footer */
.footer-sep {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 56px;
  height: 1px;
  position: relative;
}

.footer-sep::before,
.footer-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to var(--dir, right),
    transparent,
    rgba(255, 255, 255, 0.1)
  );
}

.footer-sep::before { --dir: right; }
.footer-sep::after  { --dir: left; }

.footer-sep-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
  margin: 0 16px;
}

.footer {
  background: var(--black);
  padding: 80px 0 0;
}

.footer .wrap { padding: 0 56px; }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 20px;
}

.footer-logo-img {
  height: 72px; width: auto;
  object-fit: contain; display: block;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.875rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8; margin-bottom: 28px; max-width: 280px;
}

.footer-contacts { display: flex; flex-direction: column; gap: 10px; }

.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}

.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-contact-item:hover { color: rgba(255,255,255,0.8); }

.footer-col h4 {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a,
.footer-col ul a {
  font-size: 0.875rem; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.2s;
}

.footer-col ul li a:hover,
.footer-col ul a:hover { color: #fff; }

/* WP nav_menu wraps in <ul> automatically — override default styling */
.footer-col .menu { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col .menu a { font-size: 0.875rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; text-transform: capitalize;}
.footer-col .menu a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

/* Footer map column */
.footer-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-map-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  line-height: 1.5;
}

.footer-map-name span {
  display: block;
  color: rgba(255,255,255,0.2);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
}

.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.2); }

.footer-social { display: flex; align-items: center; gap: 8px; }

.fsoc {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.fsoc svg { flex-shrink: 0; }
.fsoc:hover { border-color: var(--red); color: #fff; background: var(--red); }

/* ── 11. NO-RESULTS ─────────────────────────────────────────── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--g600);
  font-size: 16px;
}

/* ── 12. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav > .wrap { padding: 20px 32px; }
  .footer .wrap { padding: 0 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 768px) {
  .nav > .wrap { padding: 16px 20px; }
  .nav-tel { display: none; }
  .nav-divider { display: none; }

  .footer { padding: 56px 0 0; }
  .footer .wrap { padding: 0 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .cars-grid { grid-template-columns: 1fr; }
  .filter-bar__group { min-width: 100%; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .footer-bottom { align-items: center; text-align: center; }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* transparent top → solid dark bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(12, 12, 10, 0.98) 100%
  );
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.2s forwards;
}

.hero-title .ghost {
  display: block;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
  color: transparent;
}

.hero-title .solid { display: block; }
.hero-title .red   { display: block; color: var(--red); }

/* Hero CTA button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 36px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.42s forwards;
}

.hero-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.hero-cta:hover {
  background: var(--red-deep);
  box-shadow: 0 8px 32px rgba(220, 20, 60, 0.45);
  transform: translateY(-2px);
}

.hero-cta:hover svg { transform: translateX(3px); }

/* ── SEARCH PANEL ───────────────────────────────────────────── */
.search-panel {
  position: relative;
  z-index: 10;
  background: var(--black);
  padding: 32px 0 40px;
  display: flex;
  justify-content: center;
}

.search-panel .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
}

/* Glass bar */
.sp-bar {
  display: flex;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  overflow: hidden;
}

.sp-field {
  flex: 1;
  padding: 0 22px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.15s;
  min-width: 0;
}

.sp-field:hover { background: rgba(255, 255, 255, 0.05); }

.sp-field svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.3);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.sp-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.sp-chevron {
  position: absolute;
  right: 0;
  pointer-events: none;
  stroke: rgba(255, 255, 255, 0.3) !important;
  width: 14px !important;
  height: 14px !important;
}

.sp-field input,
.sp-field select {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  width: 100%;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-field input::placeholder { color: rgba(255, 255, 255, 0.35); }

.sp-field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

.sp-field input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  opacity: 0;
}

.sp-field select {
  appearance: none;
  -webkit-appearance: none;
}

.sp-field select option {
  color: var(--ink);
  background: var(--surface);
}

.sp-submit {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border: none;
  background: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s var(--ease);
  flex-shrink: 0;
}

.sp-submit:hover { background: var(--red-deep); }

.sp-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
}

/* ── RESPONSIVE: Hero + Search panel ───────────────────────── */
@media (max-width: 1100px) {
  .search-panel .wrap { padding: 0 32px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .search-panel { padding: 24px 0 28px; }
  .search-panel .wrap { padding: 0 20px; }
}

/* ── ARCHIVE BANNER ─────────────────────────────────────────── */
.archive-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-color: var(--black);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Gradient: image visible at top → solid black at bottom */
.archive-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 12, 10, 0.35) 0%,
    rgba(12, 12, 10, 1) 100%
  );
}

.archive-banner .wrap {
  position: relative;
  z-index: 1;
  padding: 0 56px;
  width: 100%;
}

.archive-banner-inner {
  padding: 48px 0 40px;
}

/* Breadcrumb */
.archive-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.archive-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.18s;
}

.archive-breadcrumb a:hover { color: #fff; }

.archive-breadcrumb-sep svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255, 255, 255, 0.25);
  fill: none;
  stroke-width: 2.5;
  display: block;
}

.archive-breadcrumb span[aria-current] {
  color: rgba(255, 255, 255, 0.7);
}

/* H1 */
.archive-banner-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.archive-banner-title-red { color: var(--red); }

.archive-banner-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.archive-banner-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.archive-banner-count {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ── ARCHIVE: CARS ──────────────────────────────────────────── */
.archive-cars {
  background: var(--black);
  min-height: 60vh;
  padding: 48px 0 100px;
}

.archive-cars .wrap { padding: 0 56px; }

/* Filter bar */
.archive-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 14px 20px;
}

.af-field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 160px;
}

.af-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 22px;
}

.af-field select option {
  color: var(--ink);
  background: var(--surface);
}

.af-chevron {
  position: absolute;
  right: 0;
  pointer-events: none;
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.3);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.af-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s var(--ease);
  white-space: nowrap;
}

.af-submit svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}

.af-submit:hover { background: var(--red-deep); }

.af-reset {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.18s;
  white-space: nowrap;
  padding: 0 4px;
}

.af-reset:hover { color: #fff; }

/* Grid */
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* ── FCARD ───────────────────────────────────────────────────── */
.fcard {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.fcard:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.fcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}

/* Image area */
.fcard-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--g800);
}

.fcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
  display: block;
}

.fcard:hover .fcard-img img { transform: scale(1.05); }

/* Placeholder when no image */
.fcard-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -52deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 28px
  );
  color: rgba(255, 255, 255, 0.12);
}

/* Price badge */
.fcard-price {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(12, 12, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 6px 12px;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.fcard-price-unit {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

/* Category badge */
.fcard-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-premium { background: var(--ink); color: #fff; border: 1px solid rgba(255, 255, 255, 0.15); }
.badge-sport   { background: var(--red); color: #fff; }
.badge-famille { background: #0D7A4E; color: #fff; }
.badge-eco     { background: #065F46; color: #fff; }
.badge-van     { background: #374151; color: #fff; }

/* Unavailable overlay badge */
.fcard-unavailable {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 10, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Card body */
.fcard-body { padding: 18px 20px 0; }

.fcard-name {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.fcard-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.fcard-meta span + span::before { content: ' • '; }

.fcard-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 16px;
}

/* Specs row */
.fcard-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  justify-content: space-between;
  padding: 0 10px;
}

.fspec {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fspec-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(220, 20, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
}

.fspec-icon-box svg {
  width: 30px;
  height: 30px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
}

.fspec-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

/* Reserve button */
.fcard-res {
  display: block;
  width: 100%;
  padding: 13px;
  cursor: pointer;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0 0 7px 7px;
  margin-top: auto;
}

.fcard-res:hover { background: var(--red-deep); }

/* Empty state */
.archive-empty {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.archive-empty-illustration {
  margin-bottom: 28px;
}
.archive-empty-illustration svg {
  width: 160px;
  height: auto;
  opacity: 0.7;
}
.archive-empty p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin: 0 0 24px;
  font-family: "DM Sans", system-ui, sans-serif;
}

/* Pagination */
/* ── LOAD MORE ───────────────────────────────────────────────── */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.load-more-btn:hover { background: var(--red); color: var(--white); }

.load-more-btn__icon {
  width: 18px; height: 18px;
  transition: transform 0.2s var(--ease);
}

.load-more-btn:hover .load-more-btn__icon { transform: translateY(3px); }

.load-more-btn__spinner {
  width: 18px; height: 18px;
  display: none;
  animation: spin 0.8s linear infinite;
}

.load-more-btn.is-loading .load-more-btn__text { opacity: 0.6; }
.load-more-btn.is-loading .load-more-btn__icon  { display: none; }
.load-more-btn.is-loading .load-more-btn__spinner { display: block; }
.load-more-btn.is-loading { pointer-events: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE: archive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .archive-banner .wrap { padding: 0 32px; }
  .archive-cars .wrap   { padding: 0 32px; }
  .fgrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .archive-banner .wrap  { padding: 0 20px; }
  .archive-banner-inner  { padding: 36px 0 32px; }
  .archive-cars          { padding: 36px 0 72px; }
  .archive-cars .wrap    { padding: 0 20px; }
  .fgrid { grid-template-columns: 1fr; }
  .archive-filters { gap: 10px; padding: 16px; }
  .af-field { min-width: calc(50% - 5px); flex: 1 1 calc(50% - 5px); padding: 10px 12px; border: none; border-bottom: 1px solid rgba(255,255,255,0.10); border-radius: 0; }
  .af-submit { width: 100%; justify-content: center; margin-top: 4px; }
}

@media (max-width: 480px) {
  .archive-filters { flex-direction: column; gap: 0; padding: 8px 12px; }
  .af-field {
    min-width: 100%; flex: 1 1 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
  }
  .af-field:last-of-type { border-bottom: none; }
  .af-submit { width: 100%; justify-content: center; margin-top: 8px; }
}

/* ── SINGLE CAR ─────────────────────────────────────────────── */
.scar {
  background: var(--g100);
  padding-bottom: 100px;
  padding-top: 40px;
}

/* Breadcrumb — inline above car title */
.scar-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--g400);
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.scar-breadcrumb a {
  color: var(--g400);
  text-decoration: none;
  transition: color 0.18s;
}

.scar-breadcrumb a:hover { color: var(--ink); }

.scar-breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: var(--g200);
  fill: none;
  stroke-width: 2.5;
  display: block;
}

.scar-breadcrumb span[aria-current] { color: var(--ink); }

/* Main layout */
.scar .wrap { padding: 0 56px; }

.scar-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 32px;
  padding-top: 0;
  align-items: stretch;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.scar-gallery {
  position: sticky;
  top: 90px;
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.scar-gallery-main {
  position: relative;
  flex: 1;
  min-height: 300px;
  background: var(--surface);
  overflow: hidden;
  margin-bottom: 0;
}

.scar-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.25s var(--ease);
  padding: 16px;
}

.scar-gallery-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g400);
}

.scar-gallery-ph svg { width: 80px; height: 50px; }

.scar-unavail-badge {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scar-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scar-fs-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(12, 12, 10, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}

.scar-fs-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 2;
}

.scar-fs-btn:hover { background: rgba(220, 20, 60, 0.8); }
.scar-fs-btn:hover svg { stroke: #fff; }

/* Image counter badge */
.scar-gallery-main::after {
  content: attr(data-counter);
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(12,12,10,0.65);
  color: #fff;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

/* Thumbnails */
.scar-thumbs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--g200);
}

.scar-thumb {
  flex: 1;
  height: 72px;
  overflow: hidden;
  border: none;
  border-right: 1px solid var(--g200);
  background: var(--surface);
  cursor: pointer;
  padding: 6px;
  transition: background 0.18s;
  flex-shrink: 0;
}

.scar-thumb:last-child { border-right: none; }

.scar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.scar-thumb:hover  { background: var(--g100); }
.scar-thumb.active { background: var(--g100); outline: 2px solid var(--red); outline-offset: -2px; }

/* ── INFO PANEL ──────────────────────────────────────────────── */
.scar-info {
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 12px;
  padding: 28px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Info top row */
.scar-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.scar-cat-pill {
  display: inline-block;
  background: var(--g100);
  border: 1px solid var(--g200);
  color: var(--g600);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.scar-info-top-right {
  text-align: right;
  flex-shrink: 0;
}

.scar-brand-logo {
  height: 36px !important;
  width: auto !important;
  max-width: 80px !important;
  object-fit: contain;
  display: block;
}

.scar-brand-name {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g400);
}

/* Price footer at bottom of info panel */
.scar-price-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--g200);
}

.scar-price-footer-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.scar-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.scar-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--g200);
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g600);
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}

.scar-tag:hover { border-color: var(--g400); color: var(--ink); }
.scar-tag-cat   { border-color: rgba(220, 20, 60, 0.3); color: var(--red); }

.scar-title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.scar-short-desc {
  font-size: 0.9375rem;
  color: var(--g600);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Price row */
.scar-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--g200);
}

.scar-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.scar-price-num {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.scar-price-currency {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--g600);
}

.scar-price-unit {
  font-size: 0.875rem;
  color: var(--g400);
  font-weight: 400;
}

.scar-avail {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 20px;
}

.scar-avail--yes { background: rgba(16, 185, 129, 0.12); color: #10B981; }
.scar-avail--no  { background: rgba(220, 20, 60, 0.12);  color: var(--red); }

/* Divider */
.scar-divider {
  height: 1px;
  background: var(--g200);
  margin: 24px 0;
}

/* Specs grid — 3 per row, icon centred above value */
.scar-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 4px;
  border: 1px solid var(--g200);
  border-radius: 8px;
  overflow: hidden;
}

.scar-spec-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--g200);
  border-bottom: 1px solid var(--g200);
  text-align: left;
}

.scar-spec-item:nth-child(2n) { border-right: none; }
.scar-spec-item:nth-last-child(-n+2) { border-bottom: none; }

.scar-spec-icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}

.scar-spec-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.5;
}

.scar-spec-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.scar-spec-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--g600);
  text-transform: none;
  letter-spacing: 0;
}

.scar-spec-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

/* Features */
.scar-section-label {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 24px;
}
.scar-section-label span,
.scar-related-title span { color: var(--red); }

.scar-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.scar-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--g600);
}

.scar-feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--g100);
  border: 1px solid var(--g200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scar-feat-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--g600);
  fill: none;
  stroke-width: 1.75;
}

/* CTA group */
.scar-cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--g200);
}

.scar-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.scar-price-block .scar-price-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.scar-price-block .scar-price-unit {
  font-size: 0.875rem;
  color: var(--g400);
  font-weight: 400;
}

.scar-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s;
}

.scar-btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.scar-btn-whatsapp:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}

/* Description */
.scar-desc {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--g200);
}

.scar-desc-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--g600);
  max-width: 720px;
}

.scar-desc-content p { margin-bottom: 1em; }

/* Related */
.scar-related {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--g200);
}

.scar-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.scar-related-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}

.scar-related-title span { color: var(--red); }

.scar-related-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--g400);
  text-decoration: none;
  transition: color 0.18s;
}

.scar-related-all svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}

.scar-related-all:hover { color: var(--ink); }
.scar-related-all:hover svg { transform: translateX(3px); }

/* Related fcard overrides — light surface */
.scar-related .fcard {
  background: var(--surface);
  border-color: var(--g200);
}

.scar-related .fcard:hover { border-color: var(--g400); }
.scar-related .fcard-name  { color: var(--ink); }
.scar-related .fcard-meta  { color: var(--g400); }
.scar-related .fcard-divider { background: var(--g200); }
.scar-related .fspec-label { color: var(--g600); }

/* ── AVIS CLIENTS ─────────────────────────────────────────────── */
.scar-reviews { margin: 48px 0; }
.scar-reviews .scar-section-label { margin-bottom: 20px; }

/* ── VEHICLE REQUIREMENTS ─────────────────────────────────────── */
.scar-requirements { margin: 48px 0; }
.scar-requirements .scar-section-label { margin-bottom: 20px; }
.scar-requirements-list {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--g200);
}
.scar-req-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
}
.scar-req-item + .scar-req-item { border-top: 1px solid var(--g200); }
.scar-req-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(220, 20, 60, 0.1);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.scar-req-content { display: flex; flex-direction: column; gap: 4px; }
.scar-req-label {
  font-family: var(--body); font-size: 1rem; font-weight: 600;
  color: var(--ink);
}
.scar-req-desc {
  font-family: var(--body); font-size: 0.875rem; font-weight: 400;
  color: var(--g600); margin: 0;
}

/* Inline requirements (inside info panel) */
.scar-req-inline {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--g200);
}
.scar-req-inline-title {
  font-family: var(--body); font-size: 0.8125rem; font-weight: 700;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.scar-req-inline .scar-req-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  background: none;
}
.scar-req-inline .scar-req-item + .scar-req-item {
  border-top: 1px solid var(--g200);
}
.scar-req-inline .scar-req-icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g100);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.scar-req-inline .scar-req-label {
  font-size: 0.875rem; font-weight: 600; color: var(--ink);
  display: block;
}
.scar-req-inline .scar-req-desc {
  font-size: 0.75rem; color: var(--g400); margin: 2px 0 0;
}

/* ── PLAN DE PROTECTION ───────────────────────────────────────── */
.scar-protection { margin: 48px 0; }

.scar-protection-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g200);
  margin-bottom: 24px;
}
.scar-protection-icon {
  width: 36px; height: 36px;
  background: var(--g100);
  border: 1px solid var(--g200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.scar-protection-icon svg { width: 18px; height: 18px; color: var(--g600); }

.scar-protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scar-plan {
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 12px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}

.scar-plan-name {
  font-family: var(--body); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin: 0;
}

.scar-plan-badges {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.scar-plan-badge {
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; letter-spacing: 0.02em;
}
.scar-plan-badge--price {
  background: var(--g200); color: var(--ink);
}
.scar-plan-badge--rate {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  text-transform: uppercase; letter-spacing: 0.06em;
}

.scar-plan-desc {
  font-size: 0.875rem; color: var(--g600); margin: 0;
}

.scar-plan-caution {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-family: var(--body); font-size: 0.875rem; font-weight: 600;
}
.scar-plan-caution svg { width: 16px; height: 16px; flex-shrink: 0; }
.scar-plan-caution--warn {
  background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E;
}
.scar-plan-caution--warn svg { color: #D97706; }
.scar-plan-caution--green {
  background: #ECFDF5; border: 1px solid #6EE7B7; color: #065F46;
}
.scar-plan-caution--green svg { color: var(--success); }

.scar-plan-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.scar-plan-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--ink);
}
.scar-plan-list li svg {
  flex-shrink: 0; width: 16px; height: 16px;
  color: var(--success); margin-top: 2px;
}

@media (max-width: 900px) {
  .scar-protection-grid { grid-template-columns: 1fr; }
}


/* ── FLEET CAROUSEL WIDGET ───────────────────────────────────── */
.yw-fleet {
  background: var(--black);
  padding: 80px 0 96px;
}

.yw-fleet-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.fleet-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}

.fleet-title span { color: var(--red); }

.fleet-head-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fleet-viewall {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.fleet-viewall svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}

.fleet-viewall:hover { color: var(--white); }
.fleet-viewall:hover svg { transform: translateX(3px); }

.fleet-arrows {
  display: flex;
  align-items: center;
  gap: 2px;
}

.arr-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.arr-btn:first-child { border-radius: 4px 0 0 4px; }
.arr-btn:last-child  { border-radius: 0 4px 4px 0; }

.arr-btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.6);
  fill: none;
  stroke-width: 2;
}

.arr-btn:hover { background: var(--red); border-color: var(--red); }
.arr-btn:hover svg { stroke: var(--white); }

.fleet-track-wrap { overflow: hidden; }

.fleet-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.fleet-track .vcard {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

@media (max-width: 1100px) {
  .yw-fleet-wrap { padding: 0 32px; }
  .fleet-track .vcard { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  .yw-fleet { padding: 56px 0 64px; }
  .yw-fleet-wrap { padding: 0 20px; }
  .fleet-track .vcard { flex: 0 0 100%; }
  .fleet-viewall { display: none; }
}

/* ── SEARCH PANEL WIDGET ──────────────────────────────────────── */
.ywf-outer {
  background: var(--black);
  padding: 32px 0 40px;
  width: 100%;
}

.ywf-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
  width: 100%;
}

@media (max-width: 1100px) { .ywf-wrap { padding: 0 32px; } }
@media (max-width: 768px)  { .ywf-wrap { padding: 0 20px; } }

/* Glass pill bar — matches yanoch.html .sp-bar */
.sp-bar {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
}

/* Each field cell */
.sp-field {
  flex: 1;
  padding: 0 22px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.15s;
  min-width: 0;
  position: relative;
}

.sp-field--wide { flex: 2; }

.sp-field:hover,
.sp-field:focus-within { background: rgba(255,255,255,0.05); }

/* Text inputs */
.sp-field input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  width: 100%;
  cursor: text;
  z-index: 1;
}

.sp-field input::placeholder { color: rgba(255,255,255,0.35); }

.sp-field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  cursor: pointer;
}

/* Select wrapper — fills entire field so any click opens the dropdown */
.sp-select-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 18px 0 22px;
  min-width: 0;
}

.sp-select-wrap select {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

/* Visible label shown instead of native select */
.sp-select-label {
  flex: 1;
  font-family: var(--body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 1;
}

.sp-select-label.is-placeholder { color: rgba(255,255,255,0.35); }

.sp-chevron {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.25);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.2s var(--ease);
}

.sp-field:focus-within .sp-chevron { transform: rotate(180deg); }

/* Red search button */
.sp-submit {
  background: var(--red);
  border: none;
  cursor: pointer;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sp-submit:hover { background: var(--red-deep); }

.sp-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

/* Results meta row */
.ywf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 16px;
}

.ywf-count {
  font-size: 0.82rem;
  color: var(--g400);
  font-weight: 500;
}

.ywf-reset-link {
  background: none;
  border: none;
  font-family: var(--body);
  font-size: 0.8rem;
  color: var(--g400);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.15s;
}

.ywf-reset-link:hover { color: var(--red); }

.ywf-grid {
  transition: opacity 0.25s;
}

.ywf-empty {
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
  color: var(--g400);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .sp-bar { flex-wrap: wrap; }
  .sp-field--wide { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 900px) {
  .sp-bar    { border-radius: 6px; }
  .sp-field  { flex: 1 1 calc(50% - 1px); height: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sp-field--wide { flex: 1 1 100%; }
  .sp-submit { width: 100%; height: 52px; }
}

@media (max-width: 600px) {
  .sp-bar   { border-radius: 4px; }
  .sp-field { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); height: 56px; padding: 0 16px; }
  .sp-field:last-of-type { border-bottom: none; }
  .sp-submit { height: 52px; }
  .ywf-outer { padding: 20px 0 28px; }
  .sp-chevron { margin-right: 4px; }
  .sp-select-wrap { padding-right: 24px; }
}

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.scar-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(12, 12, 10, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.2s var(--ease);
}

.scar-lightbox[hidden] { display: none; }

.scar-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scar-lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

.scar-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}

.scar-lightbox-close svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.scar-lightbox-close:hover { background: var(--red); }

.scar-lightbox-prev,
.scar-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}

.scar-lightbox-prev { left: 16px; }
.scar-lightbox-next { right: 16px; }

.scar-lightbox-prev svg,
.scar-lightbox-next svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 2;
}

.scar-lightbox-prev:hover,
.scar-lightbox-next:hover { background: var(--red); }
.scar-lightbox-prev:hover svg,
.scar-lightbox-next:hover svg { stroke: #fff; }

/* ── RESPONSIVE: single car ─────────────────────────────────────  */
@media (max-width: 1100px) {
  .scar .wrap            { padding: 0 32px; }
  .scar-breadcrumb-bar .wrap { padding: 0 32px; }
  .scar-grid             { grid-template-columns: 1fr; gap: 40px; }
  .scar-gallery          { position: static; }
  .scar-specs            { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .scar .wrap            { padding: 0 20px; }
  .scar-breadcrumb-bar .wrap { padding: 0 20px; }
  .scar-specs            { grid-template-columns: 1fr 1fr; }
  .scar-features-grid    { grid-template-columns: 1fr; }
  .scar-lightbox-prev    { left: 8px; }
  .scar-lightbox-next    { right: 8px; }
}

@media (max-width: 480px) {
  .scar-thumb { width: 64px; height: 44px; }
  .scar-specs { grid-template-columns: 1fr; }
}

/* ── ABOUT WIDGET ─────────────────────────────────────────────── */
.yw-about { background: var(--white); padding: 100px 0; }
.yw-about-wrap { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; display: block; }
.about-img-ph { width: 100%; aspect-ratio: 4/3; border-radius: 8px; background: var(--g100); border: 1px solid var(--g200); display: flex; align-items: center; justify-content: center; color: var(--g400); font-size: 0.8125rem; text-align: center; }
.about-stat-card { position: absolute; bottom: -24px; right: -24px; background: var(--black); border-radius: 8px; padding: 20px 28px; display: flex; flex-direction: column; gap: 4px; }
.about-stat-num { font-family: var(--display); font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.about-stat-num em { color: var(--red); font-style: normal; }
.about-stat-lbl { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.about-kicker { display: flex; align-items: center; gap: 10px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.about-kicker-bar { display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.about-title { font-family: var(--display); font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 24px; }
.about-desc { font-size: 1rem; font-weight: 300; color: var(--g600); line-height: 1.85; max-width: 460px; margin-bottom: 40px; }
.about-cta { display: inline-flex; align-items: center; padding: 14px 60px; border-radius: 3px; background: var(--red); color: #fff; font-family: var(--display); font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.about-cta:hover { background: var(--red-deep); transform: translateY(-2px); }
@media (max-width: 1100px) { .yw-about-wrap { padding: 0 32px; } .about-inner { gap: 48px; } }
@media (max-width: 768px) { .yw-about { padding: 64px 0; } .yw-about-wrap { padding: 0 20px; } .about-inner { grid-template-columns: 1fr; } .about-stat-card { right: 0; bottom: -20px; } }

/* ── SERVICES WIDGET ──────────────────────────────────────────── */
.yw-services { background: var(--g200); border-top: 1px solid var(--g200); }
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.svc { background: var(--white); padding: 48px 32px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; transition: background 0.3s var(--ease); }
.svc:hover { background: var(--black); }
.svc-icon { width: 88px; height: 88px; border-radius: 50%; background: var(--g100); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; transition: background 0.3s var(--ease); flex-shrink: 0; }
.svc-icon svg { width: 40px; height: 40px; stroke: var(--ink); fill: none; stroke-width: 1.5; transition: stroke 0.3s var(--ease); }
.svc:hover .svc-icon { background: var(--red); }
.svc:hover .svc-icon svg { stroke: #fff; }
.svc-title { font-family: var(--display); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; transition: color 0.3s; }
.svc:hover .svc-title { color: #fff; }
.svc-desc { font-size: 0.875rem; font-weight: 300; color: var(--g600); line-height: 1.75; transition: color 0.3s; }
.svc:hover .svc-desc { color: rgba(255,255,255,0.5); }
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ── FAQ WIDGET ───────────────────────────────────────────────── */
.yw-faq { background: var(--black); padding: 100px 0; }
.yw-faq-wrap { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-kicker { display: flex; align-items: center; gap: 10px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.faq-kicker-bar { display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.faq-title { font-family: var(--display); font-size: clamp(2rem,3.5vw,3rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.02em; color: #fff; margin-bottom: 20px; }
.faq-desc { font-size: 0.9375rem; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 32px; }
.faq-contact { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; border-radius: 4px; border: 1px solid var(--red); color: #fff; background: rgba(220,20,60,0.08); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.faq-contact:hover { background: rgba(220,20,60,0.18); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-family: var(--body); font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.75); text-align: left; transition: color 0.2s; }
.faq-q:hover { color: #fff; }
.faq-item.open .faq-q { color: #fff; }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--red); fill: none; stroke-width: 2; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-a p { padding-bottom: 22px; font-size: 0.9375rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85; }
@media (max-width: 1100px) { .yw-faq-wrap { padding: 0 32px; } .faq-inner { gap: 48px; } }
@media (max-width: 768px) { .yw-faq { padding: 64px 0; } .yw-faq-wrap { padding: 0 20px; } .faq-inner { grid-template-columns: 1fr; gap: 40px; } .faq-left { position: static; } }

/* ── DUAL CTA WIDGET ──────────────────────────────────────────── */
.yw-dual-cta { background: var(--white); padding: 80px 0; }
.yw-dcta-wrap { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
.dcta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dcta-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.dcta-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--g800); transition: transform 0.6s var(--ease); }
.dcta-card:hover .dcta-img-bg { transform: scale(1.04); }
.dcta-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,12,10,0.1) 0%, rgba(12,12,10,0.75) 100%); pointer-events: none; }
.dcta-price-tag { position: absolute; top: 20px; left: 20px; background: rgba(12,12,10,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 12px 16px; display: flex; flex-direction: column; gap: 1px; }
.dcta-price-tag::before { content: ''; position: absolute; top: -4px; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px rgba(220,20,60,0.7); }
.dcta-from { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.dcta-amount { font-family: var(--display); font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.dcta-period { font-size: 0.6875rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.dcta-content { position: relative; z-index: 2; padding: 24px 28px; }
.dcta-title { font-family: var(--display); font-size: 1.625rem; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 4px; }
.dcta-sub { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.dcta-btn { display: inline-flex; align-items: center; padding: 9px 22px; border-radius: 100px; background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.03em; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
.dcta-btn:hover { background: var(--red); border-color: var(--red); }
@media (max-width: 1100px) { .yw-dcta-wrap { padding: 0 32px; } }
@media (max-width: 768px) { .yw-dual-cta { padding: 56px 0; } .yw-dcta-wrap { padding: 0 20px; } .dcta-grid { grid-template-columns: 1fr; } .dcta-card { aspect-ratio: 4/3; } }

/* ── ASSURANCE WIDGET ─────────────────────────────────────────── */
.yw-assurance { background: var(--white); padding: 100px 0; }
.yw-assurance-wrap { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
.assurance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: stretch; }
.ins-left { display: flex; }
.ins-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; flex: 1; }
.ins-text { display: flex; flex-direction: column; justify-content: center; }
.ins-kicker { display: flex; align-items: center; gap: 10px; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.ins-kicker-bar { display: block; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.ins-title { font-family: var(--display); font-size: clamp(2.25rem,4vw,3.5rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 20px; }
.ins-desc { font-size: 1rem; font-weight: 300; color: var(--g600); line-height: 1.85; margin-bottom: 36px; max-width: 440px; }
.ins-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.ins-feat { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: var(--ink); }
.ins-feat-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--success); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ins-feat-dot svg { width: 10px; height: 10px; stroke: var(--success); fill: none; stroke-width: 3; }
.ins-cta { display: flex; align-items: center; justify-content: center; padding: 16px; border-radius: 3px; background: var(--red); color: #fff; font-family: var(--display); font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.ins-cta:hover { background: var(--red-deep); transform: translateY(-2px); }
@media (max-width: 1100px) { .yw-assurance-wrap { padding: 0 32px; } .assurance-inner { gap: 48px; } }
@media (max-width: 768px) { .yw-assurance { padding: 64px 0; } .yw-assurance-wrap { padding: 0 20px; } .assurance-inner { grid-template-columns: 1fr; } }

/* ── BRANDS TICKER WIDGET ─────────────────────────────────────── */
.yw-ticker { background: var(--black); padding: 32px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.yw-ticker .ticker-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: tickerScroll 50s linear infinite; }
.yw-ticker:hover .ticker-track { animation-play-state: paused; }
.yw-ticker .ticker-item { display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0.45; transition: opacity 0.2s; user-select: none; }
.yw-ticker .ticker-item:hover { opacity: 0.85; }
.yw-ticker .ticker-item img { width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.yw-ticker .ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; opacity: 0.5; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── PAGE TITLE WIDGET ───────────────────────────────────────── */
.yw-page-title {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  background: var(--black);
  background-size: cover;
  background-position: center;
}
.yw-page-title-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,10,0.55) 0%, rgba(12,12,10,0.92) 100%);
}
.yw-page-title-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 56px 44px;
}
.yw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-family: "DM Sans", system-ui, sans-serif;
}
.yw-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.yw-breadcrumb a:hover { color: var(--white); }
.yw-breadcrumb-sep { display: flex; align-items: center; }
.yw-breadcrumb-sep svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.yw-breadcrumb span[aria-current] { color: rgba(255,255,255,0.7); }
.yw-page-title-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.yw-page-title-heading span { color: var(--red); }
.yw-page-title-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  font-family: "DM Sans", system-ui, sans-serif;
  margin: 0;
  max-width: 560px;
}
@media (max-width: 1100px) {
  .yw-page-title-inner { padding: 40px 32px 36px; }
}
@media (max-width: 768px) {
  .yw-page-title { min-height: 200px; }
  .yw-page-title-inner { padding: 36px 20px 32px; }
}

/* ── CONTACT WIDGET ──────────────────────────────────────────── */
.yw-contact {
  background: var(--white);
  padding: 80px 0 96px;
}
.yw-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
  align-items: start;
}
/* ── Left panel ── */
.yw-contact-kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.yw-contact-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.yw-contact-title span { color: var(--red); }
.yw-contact-desc {
  font-size: 0.9375rem;
  color: var(--g600);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 380px;
}
/* ── Info cards ── */
.yw-contact-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.yw-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--g200);
  border-radius: 4px;
  background: var(--g100);
  transition: border-color 0.2s, background 0.2s;
}
.yw-contact-card:hover {
  border-color: var(--red);
  background: var(--white);
}
.yw-contact-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 4px;
  color: var(--red);
}
.yw-contact-card-icon--wa { color: #25D366; }
.yw-contact-card-icon svg { width: 18px; height: 18px; }
.yw-contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.yw-contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g400);
  font-family: var(--body);
}
.yw-contact-card-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--body);
  transition: color 0.2s;
}
a.yw-contact-card-value:hover { color: var(--red); }
/* ── Right panel: form ── */
.yw-contact-form-panel {
  background: var(--surface);
  border: 1px solid var(--g200);
  border-radius: 4px;
  padding: 40px 40px 44px;
}
/* Forminator reset — match site tokens */
.yw-contact-form-panel .forminator-custom-form .forminator-field input,
.yw-contact-form-panel .forminator-custom-form .forminator-field textarea,
.yw-contact-form-panel .forminator-custom-form .forminator-field select {
  border: 1px solid var(--g200) !important;
  border-radius: 3px !important;
  background: var(--g100) !important;
  color: var(--ink) !important;
  font-family: var(--body) !important;
  font-size: 0.9375rem !important;
  padding: 12px 16px !important;
  transition: border-color 0.2s !important;
}
.yw-contact-form-panel .forminator-custom-form .forminator-field input:focus,
.yw-contact-form-panel .forminator-custom-form .forminator-field textarea:focus {
  border-color: var(--red) !important;
  outline: none !important;
  background: var(--white) !important;
}
.yw-contact-form-panel .forminator-custom-form label {
  font-family: var(--body) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: var(--g800) !important;
  letter-spacing: 0.02em !important;
}
.yw-contact-form-panel .forminator-custom-form .forminator-btn-submit,
.yw-contact-form-panel .forminator-custom-form button[type="submit"] {
  background: var(--red) !important;
  color: #fff !important;
  font-family: var(--display) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 3px !important;
  padding: 14px 36px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  width: 100% !important;
}
.yw-contact-form-panel .forminator-custom-form .forminator-btn-submit:hover,
.yw-contact-form-panel .forminator-custom-form button[type="submit"]:hover {
  background: var(--red-deep) !important;
}
/* Placeholder */
.yw-contact-form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px;
  color: var(--g400);
  text-align: center;
}
.yw-contact-form-placeholder svg { width: 48px; height: 48px; opacity: 0.35; }
.yw-contact-form-placeholder p { font-size: 0.875rem; margin: 0; }
/* ── Responsive ── */
@media (max-width: 1024px) {
  .yw-contact-wrap { grid-template-columns: 1fr; gap: 48px; padding: 0 32px; }
  .yw-contact-desc { max-width: none; }
}
@media (max-width: 768px) {
  .yw-contact { padding: 56px 0 64px; }
  .yw-contact-wrap { padding: 0 20px; gap: 36px; }
  .yw-contact-form-panel { padding: 28px 20px 32px; }
}


/* ── SERVICES PAGE WIDGET ────────────────────────────────────── */
.yw-services-page {
  background: var(--white);
}

/* ── Row ── */
.yw-spage-row {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 560px;
  position: relative;
}
.yw-spage-row--reverse {
  grid-template-columns: 45% 55%;
}
.yw-spage-row--reverse .yw-spage-img-col  { order: 2; }
.yw-spage-row--reverse .yw-spage-content-col { order: 1; }

/* ── Image column ── */
.yw-spage-img-col {
  position: relative;
  overflow: hidden;
}
.yw-spage-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.yw-spage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.yw-spage-row:hover .yw-spage-img {
  transform: scale(1.04);
}
.yw-spage-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g200);
}
.yw-spage-img-ph svg { width: 80px; opacity: 0.4; }

/* ── Content column ── */
.yw-spage-content-col {
  display: flex;
  align-items: center;
  padding: 64px 0;
  background: var(--white);
}

/* Normal row: card overlaps left, pulled left */
.yw-spage-row:not(.yw-spage-row--reverse) .yw-spage-content-col {
  padding-left: 0;
  padding-right: 56px;
}
.yw-spage-row:not(.yw-spage-row--reverse) .yw-spage-card {
  margin-left: -56px;
}

/* Reverse row: card overlaps right, pulled right */
.yw-spage-row--reverse .yw-spage-content-col {
  padding-left: 56px;
  padding-right: 0;
  justify-content: flex-end;
}
.yw-spage-row--reverse .yw-spage-card {
  margin-right: -56px;
}

/* ── Card ── */
.yw-spage-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--g200);
  padding: 52px 48px 48px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.08), 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}
.yw-spage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

/* Big background number */
.yw-spage-num {
  position: absolute;
  top: -18px;
  right: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--g200);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.yw-spage-kicker {
  display: inline-block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.yw-spage-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.yw-spage-title span { color: var(--red); }
.yw-spage-desc {
  font-size: 0.9rem;
  color: var(--g600);
  line-height: 1.75;
  margin: 0 0 24px;
}
.yw-spage-desc p { margin: 0; }

/* ── Feature list ── */
.yw-spage-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.yw-spage-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
}
.yw-spage-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ── Button ── */
.yw-spage-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  background: var(--g100);
  border: 1px solid var(--g200);
  padding: 11px 22px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.yw-spage-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.2s;
}
.yw-spage-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.yw-spage-btn:hover svg { transform: translateX(3px); }

/* ── CTA banner ── */
.yw-spage-cta {
  background: var(--black);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.yw-spage-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}
.yw-spage-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.yw-spage-cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.02;
  margin: 0 0 12px;
}
.yw-spage-cta-sub {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  max-width: 480px;
  line-height: 1.65;
}
.yw-spage-cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.yw-spage-cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.yw-spage-cta-btn--primary {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
.yw-spage-cta-btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}
.yw-spage-cta-btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.yw-spage-cta-btn--secondary:hover {
  border-color: rgba(255,255,255,0.6);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .yw-spage-card { padding: 40px 36px; max-width: 460px; }
  .yw-spage-row:not(.yw-spage-row--reverse) .yw-spage-card { margin-left: -40px; }
  .yw-spage-row--reverse .yw-spage-card { margin-right: -40px; }
}
@media (max-width: 768px) {
  .yw-spage-row,
  .yw-spage-row--reverse {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .yw-spage-row--reverse .yw-spage-img-col  { order: 1; }
  .yw-spage-row--reverse .yw-spage-content-col { order: 2; }
  .yw-spage-img-col { aspect-ratio: 16 / 9; position: relative; }
  .yw-spage-img-wrap { position: relative; inset: auto; width: 100%; height: 100%; }
  .yw-spage-content-col,
  .yw-spage-row--reverse .yw-spage-content-col {
    padding: 0 20px 48px;
    justify-content: flex-start;
  }
  .yw-spage-card,
  .yw-spage-row--reverse .yw-spage-card {
    margin: -28px 0 0;
    max-width: none;
    padding: 32px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  }
  .yw-spage-num { font-size: 5rem; }
  .yw-spage-cta { padding: 56px 24px; }
  .yw-spage-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .yw-spage-cta-actions { flex-direction: column; width: 100%; }
  .yw-spage-cta-btn { justify-content: center; }
}

/* ── MAP + HORAIRES WIDGET ───────────────────────────────────── */
.ymh-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border: 1px solid var(--g200);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.ymh-wrap--dark {
  background: var(--black);
  border-color: rgba(255,255,255,0.08);
}

/* Map column */
.ymh-map {
  position: relative;
  min-height: 300px;
  background: var(--g200);
}

.ymh-map iframe { display: block; }

.ymh-map-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g100);
  color: var(--g400);
}

.ymh-directions {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}

.ymh-directions:hover { background: var(--red-deep); }

/* Info panel */
.ymh-panel {
  padding: 32px 28px;
  border-left: 1px solid var(--g200);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ymh-wrap--dark .ymh-panel { border-left-color: rgba(255,255,255,0.07); }

/* Agency header */
.ymh-agency {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.ymh-pin { color: var(--red); flex-shrink: 0; margin-top: 2px; }

.ymh-agency-name {
  display: block;
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.ymh-wrap--dark .ymh-agency-name { color: var(--white); }

.ymh-agency-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--g400);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.ymh-address {
  font-size: 0.8125rem;
  color: var(--g600);
  margin-bottom: 18px;
  padding-left: 28px;
  line-height: 1.5;
}

.ymh-wrap--dark .ymh-address { color: rgba(255,255,255,0.35); }

/* Contact chips */
.ymh-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ymh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--g200);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.ymh-chip svg { flex-shrink: 0; stroke: var(--red); }

.ymh-chip:hover {
  border-color: var(--red);
  color: var(--red);
}

.ymh-chip--wa svg { stroke: none; fill: #25D366; }
.ymh-chip--wa:hover { border-color: #25D366; color: #25D366; }

.ymh-wrap--dark .ymh-chip {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.ymh-wrap--dark .ymh-chip:hover { border-color: var(--red); color: #fff; }

/* Hours block */
.ymh-hours {
  border-top: 1px solid var(--g200);
  padding-top: 20px;
  margin-top: auto;
}

.ymh-wrap--dark .ymh-hours { border-top-color: rgba(255,255,255,0.07); }

.ymh-hours-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: 14px;
}

.ymh-hours-title svg { stroke: var(--red); }

.ymh-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.ymh-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.875rem;
}

.ymh-days { color: var(--g600); }
.ymh-wrap--dark .ymh-days { color: rgba(255,255,255,0.4); }

.ymh-hrs {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.ymh-wrap--dark .ymh-hrs { color: rgba(255,255,255,0.8); }

.ymh-hrs--closed {
  color: var(--g400) !important;
  font-style: italic;
  font-weight: 400 !important;
}

.ymh-closed .ymh-days { color: var(--g400); }

.ymh-hours-note {
  font-size: 0.75rem;
  color: var(--g400);
  font-style: italic;
  border-top: 1px solid var(--g200);
  padding-top: 10px;
  margin: 0;
}

.ymh-wrap--dark .ymh-hours-note { border-top-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.25); }

/* Responsive */
@media (max-width: 900px) {
  .ymh-wrap { grid-template-columns: 1fr; }
  .ymh-panel { border-left: none; border-top: 1px solid var(--g200); }
  .ymh-wrap--dark .ymh-panel { border-top-color: rgba(255,255,255,0.07); }
}

@media (max-width: 480px) {
  .ymh-panel { padding: 24px 20px; }
}
