﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DANO AUTO AS â€” Premium Automotive Design System
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ CSS Custom Properties / Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Colors */
  --white: #FFFFFF;
  --offwhite: #F7F7F5;
  --stone: #EFEFEA;
  --silver: #D9D9D4;
  --metallic: #A7A9AE;
  --graphite: #6B6D71;
  --charcoal: #2A2A2E;
  --dark: #17181B;
  --black: #0E0E10;

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.12);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1320px;
  --header-height: 72px;
}


/* â”€â”€â”€ Reset & Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}


/* â”€â”€â”€ Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAVIGATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.site-header--transparent {
  background: transparent;
  /* Header background is transparent over hero, but nav text is ALWAYS dark */
}

.site-header--solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-icon {
  height: 28px;
  width: auto;
}

/* Logo image styles */
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}

.logo-img:hover {
  opacity: 0.85;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: var(--space-md);
  /* Natural logo (has background), add glow for footer dark bg */
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.08));
}

/* Search / Filter Bar */
.search-section {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.search-bar__filters {
  display: flex;
  align-items: flex-end;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.search-bar__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
  min-width: 140px;
}

.search-bar__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
}

.search-bar__select {
  height: 48px;
  padding: 0 40px 0 var(--space-md);
  background: var(--offwhite);
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6D71' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.search-bar__select:focus {
  outline: none;
  border-color: var(--dark);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  /* Always dark — never inherits white from transparent header */
  color: var(--dark);
  transition: opacity 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--dark);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 0.7;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  transition: background 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.header__icon-btn:hover {
  opacity: 0.7;
}

.favorites-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header--solid .favorites-count {
  background: var(--dark);
}

.favorites-count.active {
  opacity: 1;
}

.header__cta {
  font-size: 12px !important;
}

/* ─── Language Toggle ─────────────────────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lang-switch__btn {
  color: var(--graphite);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch__btn:hover {
  color: var(--dark);
  background: var(--stone);
}

.lang-switch__btn--active {
  color: var(--dark);
  font-weight: 800;
}

.lang-switch__divider {
  color: var(--silver);
  margin: 0 2px;
}

/* ─── Premium Select / Dropdown Styling ──────────────────────────────────── */
.select-wrapper {
  position: relative;
  display: block;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--graphite);
  pointer-events: none;
  transition: border-top-color 0.2s ease;
}

.select-wrapper:focus-within::after {
  border-top-color: var(--dark);
}

/* Global premium select style — used everywhere across the site */
.premium-select {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 var(--space-md);
  background: var(--offwhite);
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Remove default arrow, we use ::after pseudo on wrapper */
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}

.premium-select:hover {
  border-color: var(--metallic);
  background: var(--white);
}

.premium-select:focus {
  border-color: var(--dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 42, 46, 0.06);
}

/* Also apply to .input selects (contact form drop-down) */
select.input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

/* Alert messages */
.alert {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.alert--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.alert--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

/* Outline White button (for dark hero backgrounds) */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Outline Light alias */
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}


.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.header__hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.mobile-menu__link {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.active .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active .mobile-menu__link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.active .mobile-menu__link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.active .mobile-menu__link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.active .mobile-menu__link:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu.active .mobile-menu__link:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu__link:hover {
  opacity: 0.7;
}

.mobile-menu__footer {
  position: absolute;
  bottom: var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu__contact {
  color: var(--metallic);
  font-size: 14px;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--offwhite);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 14px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 12px;
}

.btn--search {
  padding: 14px 28px;
  gap: var(--space-sm);
}


/* Link Arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
}

.link-arrow svg {
  transition: transform 0.3s var(--ease-out);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-arrow--light {
  color: var(--white);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INPUTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.input {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  background: var(--white);
  border: 1.5px solid var(--silver);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.input:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(23, 24, 27, 0.06);
}

.input::placeholder {
  color: var(--metallic);
}

.input--textarea {
  height: auto;
  padding: var(--space-md);
  resize: vertical;
  min-height: 120px;
}

select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6D71' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION COMMONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section {
  padding: var(--space-5xl) 0;
}

.section--white {
  background: var(--white);
}

.section--offwhite {
  background: var(--offwhite);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.editorial-values-heading {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.editorial-values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.editorial-values-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: var(--space-lg);
  position: relative;
}

.editorial-values-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--silver);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--metallic);
  margin-bottom: var(--space-md);
}

.eyebrow--light {
  color: var(--metallic);
}

.eyebrow--metallic {
  color: var(--silver);
}

.section-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 17px;
  color: var(--graphite);
  max-width: 500px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-3xl);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 14, 16, 0.7) 0%,
      rgba(14, 14, 16, 0.3) 40%,
      rgba(14, 14, 16, 0.15) 70%,
      rgba(14, 14, 16, 0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: var(--space-5xl);
  color: var(--white);
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2xl);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.js-enabled .reveal-text {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-text.visible {
  animation: revealUp 1s var(--ease-out) forwards;
}

.hero__eyebrow.visible {
  animation-delay: 0.2s;
}

.hero__title.visible {
  animation-delay: 0.4s;
}

.hero__subtitle.visible {
  animation-delay: 0.6s;
}

.hero__ctas.visible {
  animation-delay: 0.8s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SEARCH BAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.search-section {
  position: relative;
  z-index: 10;
  padding: 0;
  margin-top: -40px;
}

.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-xl);
}

.search-bar__filters {
  display: flex;
  align-items: flex-end;
  gap: var(--space-md);
}

.search-bar__field {
  flex: 1;
}

.search-bar__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--metallic);
  margin-bottom: var(--space-xs);
}

.search-bar__select {
  width: 100%;
  height: 44px;
  padding: 0 var(--space-md);
  background: var(--offwhite);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23A7A9AE' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  transition: all 0.3s ease;
}

.search-bar__select:focus {
  outline: none;
  border-color: var(--dark);
  background-color: var(--white);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BRAND MARQUEE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.brand-marquee {
  padding: var(--space-2xl) 0;
  background: var(--offwhite);
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  animation: marqueeScroll 30s linear infinite;
}

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--metallic);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.brand-logo-text:hover {
  opacity: 1;
}

.brand-dot {
  color: var(--silver);
  font-size: 20px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VEHICLE CARDS & GRID
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--stone);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vehicle-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--stone);
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.vehicle-card:hover .vehicle-card__image img {
  transform: scale(1.04);
}

.vehicle-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.vehicle-card__favorite {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--graphite);
}

.vehicle-card__favorite:hover {
  background: var(--white);
  transform: scale(1.1);
}

.vehicle-card__favorite.active {
  color: #e74c3c;
}

.vehicle-card__favorite.active svg {
  fill: #e74c3c;
}

.vehicle-card__info {
  padding: var(--space-lg);
}

.vehicle-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.vehicle-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: var(--space-md);
}

.vehicle-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vehicle-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--silver);
}

.vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--stone);
}

.vehicle-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.vehicle-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.vehicle-card:hover .vehicle-card__cta {
  color: var(--dark);
}

.vehicle-card__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.vehicle-card:hover .vehicle-card__cta svg {
  transform: translateX(3px);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TRUST SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
}

.trust-card {
  text-align: center;
  padding: var(--space-xl);
}

.trust-card__icon {
  color: var(--metallic);
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.trust-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.trust-card__text {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.6;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EDITORIAL SECTION (DARK)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.editorial-section {
  overflow: hidden;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.editorial-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.editorial-image:hover img {
  transform: scale(1.03);
}

.editorial-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.editorial-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATEGORIES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.category-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.category-tile:hover img {
  transform: scale(1.06);
}

.category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 14, 16, 0.6) 0%,
      rgba(14, 14, 16, 0.3) 100%);
  transition: background 0.4s ease;
}

.category-tile:hover .category-tile__overlay {
  background: linear-gradient(to top,
      rgba(14, 14, 16, 0.4) 0%,
      rgba(14, 14, 16, 0.15) 100%);
}

.category-tile__label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--silver);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--silver);
  line-height: 0.8;
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-lg);
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.testimonial-card__car {
  font-size: 13px;
  color: var(--metallic);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SELL CTA SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sell-cta-section {
  text-align: center;
}

.sell-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.sell-cta-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.sell-cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FINANCING SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.financing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.financing-text {
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.financing-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
}

.financing-stat {
  display: flex;
  flex-direction: column;
}

.financing-stat__value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}

.financing-stat__label {
  font-size: 13px;
  color: var(--metallic);
  margin-top: 2px;
}

.financing-calculator {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--stone);
}

.financing-calculator__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.financing-calculator__field {
  margin-bottom: var(--space-md);
}

.financing-calculator__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: var(--space-xs);
}

.financing-calculator__result {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--silver);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 14px;
  color: var(--graphite);
}

.calc-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding-top: var(--space-lg);
}

.contact-info__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--metallic);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
}

.contact-info__value a {
  transition: color 0.3s ease;
}

.contact-info__value a:hover {
  color: var(--graphite);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Cars listing utility
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cars-count-label {
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: var(--space-xl);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.no-cars-message {
  text-align: center;
  padding: var(--space-5xl) 0;
}

.no-cars-message h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-tagline {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--metallic);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a,
.footer-contact-line {
  font-size: 14px;
  color: var(--graphite);
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--graphite);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 13px;
  color: var(--graphite);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
  }

  .hero__title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .editorial-title {
    font-size: 36px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .financing-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .hero {
    height: 85vh;
    min-height: 500px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__content {
    padding-bottom: var(--space-4xl);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .search-bar__filters {
    flex-direction: column;
  }

  .search-bar__field {
    width: 100%;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    aspect-ratio: 16 / 9;
  }

  .editorial-title {
    font-size: 32px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    max-width: 100%;
  }

  .sell-cta-title {
    font-size: 36px;
  }

  .financing-grid {
    grid-template-columns: 1fr;
  }

  .financing-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .section {
    padding: var(--space-4xl) 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .sell-cta-title {
    font-size: 28px;
  }

  .btn--lg {
    padding: 16px 32px;
    font-size: 13px;
  }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PREFERS REDUCED MOTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__video {
    display: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .reveal-text {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   VEHICLE CARD — CLICKABLE LINK VARIANT
═══════════════════════════════════════════════════════════════ */
.vehicle-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--stone);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.vehicle-card--link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  color: inherit;
}

.vehicle-card--link .vehicle-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-card--link .vehicle-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.vehicle-card--link .vehicle-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.vehicle-card--link:hover .vehicle-card__image {
  transform: scale(1.04);
}

.vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.vehicle-card__badge--sold {
  background: var(--graphite);
  color: var(--white);
}

.vehicle-card__badge--featured {
  background: var(--black);
  color: var(--white);
}

.vehicle-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.vehicle-card__variant {
  font-size: 0.8rem;
  color: var(--graphite);
  margin-bottom: var(--space-sm);
}

.vehicle-card__price-row {
  margin-bottom: var(--space-sm);
}

.vehicle-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
}

.vehicle-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--stone);
}

.vehicle-card__spec {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}

.vehicle-card__spec span {
  color: var(--graphite);
}

.vehicle-card__spec strong {
  color: var(--charcoal);
  font-weight: 600;
}

.btn--view-details {
  margin-top: auto;
  text-align: center;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.details-hero {
  padding: var(--space-lg) 0;
  background: var(--dark);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span:last-child {
  color: var(--white);
}

.breadcrumb__sep {
  opacity: 0.35;
}

/* ═══════════════════════════════════════════════════════════════
   CAR DETAILS PAGE
═══════════════════════════════════════════════════════════════ */
.details-section {
  padding-top: var(--space-3xl);
}

.details-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .details-layout {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.details-gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stone);
}

.details-gallery__main img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.details-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.details-badge--sold {
  background: var(--graphite);
  color: var(--white);
}

.details-badge--featured {
  background: var(--black);
  color: var(--white);
}

.details-gallery__thumbs {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: none;
  width: 96px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  background: none;
  padding: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.gallery-thumb:hover,
.gallery-thumb--active {
  border-color: var(--black);
}

/* Description + features blocks */
.details-block {
  margin-bottom: var(--space-3xl);
}

.details-block__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--stone);
  margin-bottom: var(--space-xl);
}

.details-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--graphite);
  white-space: pre-line;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl) var(--space-3xl);
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-category__name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--graphite);
}

.feature-list__item svg {
  color: #2d7d46;
  flex-shrink: 0;
}

/* Sidebar / Details Card */
.details-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.details-card {
  background: var(--offwhite);
  border: 1px solid var(--stone);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.status-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.status-pill--available {
  background: var(--black);
  color: var(--white);
}

.status-pill--sold {
  background: var(--silver);
  color: var(--charcoal);
}

.details-card__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 4px;
}

.details-card__variant {
  font-size: 0.85rem;
  color: var(--graphite);
  margin-bottom: var(--space-md);
}

.details-card__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  border-bottom: 1px solid var(--stone);
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.details-card__price-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--graphite);
}

.quick-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.quick-spec {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.quick-spec__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--metallic);
}

.quick-spec__value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlights-list__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.highlights-list__dot {
  color: var(--black);
  flex-shrink: 0;
}

.details-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.details-sold-notice {
  background: var(--stone);
  color: var(--graphite);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

/* Specs Table */
.specs-table {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.specs-table__header {
  background: var(--offwhite);
  border-bottom: 1px solid var(--stone);
  padding: var(--space-md) var(--space-xl);
}

.specs-table__header h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0;
}

.specs-table__body {
  padding: 0 var(--space-xl);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--stone);
  font-size: 0.875rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row dt {
  color: var(--graphite);
  font-weight: 500;
}

.spec-row dd {
  color: var(--black);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

/* Location card */
.location-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--offwhite);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  font-size: 0.85rem;
  color: var(--graphite);
}

.location-card svg {
  flex-shrink: 0;
  color: var(--charcoal);
  margin-top: 2px;
}

.location-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-card strong {
  color: var(--black);
  font-weight: 700;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   MODAL (Viewing Request)
═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 16, 0.82);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--graphite);
  transition: color 0.2s;
  padding: 4px;
}

.modal-close:hover {
  color: var(--black);
}

.modal-header {
  background: var(--offwhite);
  border-bottom: 1px solid var(--stone);
  padding: var(--space-xl) var(--space-2xl);
}

.modal-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--graphite);
  margin: 0;
}

.modal-form {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════
   STICKY FILTER BAR (Cars/Index)
═══════════════════════════════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  box-shadow: none;
  transition: box-shadow 0.3s var(--ease-out), background 0.3s;
  z-index: 500;
}

.filter-bar--sticky {
  position: sticky;
  top: 72px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.filter-bar .container {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.filter-bar__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.filter-bar__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--space-sm);
}

.filter-bar__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}

.filter-bar__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--graphite);
}

.btn--search {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 0.85rem;
  align-self: flex-end;
}

/* Price slider */
.filter-bar__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

.price-slider-wrap {
  flex: 1;
  min-width: 220px;
}

.price-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.price-range-track {
  position: relative;
  height: 4px;
  background: var(--stone);
  border-radius: 4px;
}

.price-range-fill {
  position: absolute;
  height: 100%;
  background: var(--black);
  border-radius: 4px;
  pointer-events: none;
}

.price-thumb {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  outline: none;
  left: 0;
}

.price-thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--black), var(--shadow-sm);
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.15s;
}

.price-thumb::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.price-thumb::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--black);
  pointer-events: all;
  cursor: pointer;
}

/* Year range */
.year-range-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Clear button */
.filter-reset-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--graphite);
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1px solid var(--stone);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.filter-reset-btn:hover {
  color: var(--black);
  border-color: var(--charcoal);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   SELL YOUR CAR PAGE
═══════════════════════════════════════════════════════════════ */
/* Benefits row */
.sell-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .sell-benefits {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.sell-benefit {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stone);
}

.sell-benefit__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--white);
}

.sell-benefit h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.sell-benefit p {
  font-size: 0.875rem;
  color: var(--graphite);
  line-height: 1.6;
  margin: 0;
}

/* Two-column form layout */
.sell-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

@media (max-width: 900px) {
  .sell-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sell-image-col {
    display: none;
  }
}

.sell-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.sell-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sell-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.sell-image-quote {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Sell form */
.sell-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--metallic);
  text-align: center;
  line-height: 1.5;
  margin-top: var(--space-sm);
}

/* File Upload Zone */
.file-upload-zone {
  position: relative;
  border: 2px dashed var(--silver);
  border-radius: var(--radius-lg);
  background: var(--offwhite);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.file-upload-zone:hover,
.file-upload-zone--drag {
  border-color: var(--charcoal);
  background: var(--stone);
}

.file-upload-zone--selected {
  border-color: var(--charcoal);
  border-style: solid;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--space-2xl);
  pointer-events: none;
  color: var(--graphite);
}

.file-upload-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.file-upload-hint {
  font-size: 0.75rem;
  color: var(--metallic);
}

/* Page Header utility */
.page-header {
  text-align: center;
}

.page-header .section-title {
  margin-bottom: var(--space-sm);
}


/* ═══════════════════════════════════════════════════════════════════════════
   ADMIN PANEL DESIGN SYSTEM
   Premium admin UI that matches the Dano Auto public-facing aesthetic.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Admin Layout ────────────────────────────────────────────────────────── */
.admin-page {
  padding-top: calc(var(--header-height) + var(--space-xl));
  padding-bottom: var(--space-4xl);
  min-height: 100vh;
  background: var(--offwhite);
}

.admin-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .admin-container {
    padding: 0 var(--space-md);
  }
}

/* ─── Admin Header (page top bar) ─────────────────────────────────────────── */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.admin-header__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.admin-header__actions {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.admin-page-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.admin-page-subtitle {
  font-size: 0.875rem;
  color: var(--graphite);
  line-height: 1.4;
}

/* ─── Breadcrumbs ─────────────────────────────────────────────────────────── */
.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: var(--space-sm);
}

.admin-breadcrumb a {
  color: var(--graphite);
  transition: color 0.2s ease;
}

.admin-breadcrumb a:hover {
  color: var(--dark);
}

.admin-breadcrumb__sep {
  color: var(--silver);
  margin: 0 2px;
  font-size: 0.75rem;
}

.admin-breadcrumb__current {
  color: var(--dark);
  font-weight: 600;
}

/* ─── Admin Toast / Alert Messages ────────────────────────────────────────── */
.admin-toast {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  animation: admin-toast-in 0.35s var(--ease-out);
}

@keyframes admin-toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-toast--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.admin-toast--success::before {
  content: '✓';
  font-weight: 700;
  font-size: 1rem;
}

.admin-toast--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.admin-toast--error::before {
  content: '!';
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #991b1b;
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

/* ─── Stat Cards ──────────────────────────────────────────────────────────── */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.admin-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.admin-stat-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
}

.admin-stat-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.admin-stat-card--green .admin-stat-card__value {
  color: #059669;
}

.admin-stat-card--blue .admin-stat-card__value {
  color: #2563eb;
}

.admin-stat-card--amber .admin-stat-card__value {
  color: #d97706;
}

.admin-stat-card--red .admin-stat-card__value {
  color: #dc2626;
}

.admin-stat-card--gray .admin-stat-card__value {
  color: var(--graphite);
}

/* ─── Admin Cards / Panels ────────────────────────────────────────────────── */
.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  overflow: hidden;
}

.admin-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.admin-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
}

.admin-card__body {
  padding: var(--space-xl);
}

.admin-card__body--flush {
  padding: 0;
}

/* ─── Admin Data Table ────────────────────────────────────────────────────── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.admin-table thead {
  background: var(--offwhite);
}

.admin-table thead th {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  border-bottom: 1px solid var(--stone);
  white-space: nowrap;
}

.admin-table tbody tr {
  border-bottom: 1px solid var(--stone);
  transition: background 0.2s ease;
}

.admin-table tbody tr:last-child {
  border-bottom: none;
}

.admin-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.015);
}

.admin-table td {
  padding: var(--space-md) var(--space-lg);
  vertical-align: middle;
  color: var(--dark);
}

.admin-table .cell-primary {
  font-weight: 600;
  color: var(--dark);
}

.admin-table .cell-sub {
  font-size: 0.75rem;
  color: var(--graphite);
  margin-top: 2px;
}

.admin-table .cell-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ─── Badges / Pills ──────────────────────────────────────────────────────── */
.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-badge--green {
  background: #ecfdf5;
  color: #065f46;
}

.admin-badge--red {
  background: #fef2f2;
  color: #991b1b;
}

.admin-badge--blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.admin-badge--gray {
  background: var(--stone);
  color: var(--graphite);
}

.admin-badge--amber {
  background: #fffbeb;
  color: #92400e;
}

/* ─── Admin Action Links / Buttons ────────────────────────────────────────── */
.admin-action {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
}

.admin-action--edit {
  color: #2563eb;
}

.admin-action--edit:hover {
  background: #eff6ff;
}

.admin-action--delete {
  color: #dc2626;
}

.admin-action--delete:hover {
  background: #fef2f2;
}

.admin-action--view {
  color: var(--graphite);
}

.admin-action--view:hover {
  color: var(--dark);
  background: var(--stone);
}

/* btn--outline-dark (used in admin) */
.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

/* ─── Admin Form System ───────────────────────────────────────────────────── */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.admin-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .admin-form__grid {
    grid-template-columns: 1fr;
  }
}

.admin-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.admin-form__field--full {
  grid-column: 1 / -1;
}

.admin-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.admin-form__label .required {
  color: #dc2626;
  margin-left: 2px;
}

.admin-form__input {
  width: 100%;
  height: 48px;
  padding: 0 var(--space-md);
  background: var(--white);
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.admin-form__input:hover {
  border-color: var(--metallic);
}

.admin-form__input:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(42, 42, 46, 0.06);
}

.admin-form__input::placeholder {
  color: var(--metallic);
}

.admin-form__textarea {
  min-height: 160px;
  height: auto;
  padding: var(--space-md);
  resize: vertical;
  line-height: 1.6;
}

.admin-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6D71' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ─── Admin Settings Panel (checkboxes) ───────────────────────────────────── */
.admin-settings {
  background: var(--offwhite);
  border: 1px solid var(--stone);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.admin-settings__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.admin-settings__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.admin-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.admin-checkbox:hover {
  background: var(--white);
}

.admin-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--silver);
  accent-color: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
}

.admin-checkbox__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}

.admin-checkbox__hint {
  font-size: 0.75rem;
  color: var(--graphite);
  margin-left: auto;
}

/* ─── Admin Form Actions ──────────────────────────────────────────────────── */
.admin-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--stone);
}

/* ─── Admin Image Grid ────────────────────────────────────────────────────── */
.admin-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .admin-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

.admin-image-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--stone);
  background: var(--offwhite);
  transition: box-shadow 0.25s ease;
}

.admin-image-card:hover {
  box-shadow: var(--shadow-md);
}

.admin-image-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.admin-image-card__primary {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--dark);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.admin-image-card__delete {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  opacity: 0;
  background: rgba(220, 38, 38, 0.9);
  color: var(--white);
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.admin-image-card:hover .admin-image-card__delete {
  opacity: 1;
}

/* ─── Admin Add Image Bar ─────────────────────────────────────────────────── */
.admin-add-image {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.admin-add-image .admin-form__input {
  flex: 1;
  min-width: 200px;
}

.admin-add-image__checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}

.admin-add-image__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--dark);
}

/* ─── Admin Empty State ───────────────────────────────────────────────────── */
.admin-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  color: var(--graphite);
}

.admin-empty__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.admin-empty__text {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ─── Admin Lead Card ─────────────────────────────────────────────────────── */
.admin-leads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .admin-leads-grid {
    grid-template-columns: 1fr;
  }
}

.admin-lead-section__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.admin-lead-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.admin-lead-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  padding: var(--space-lg);
  position: relative;
  transition: box-shadow 0.2s ease;
}

.admin-lead-card:hover {
  box-shadow: var(--shadow-sm);
}

.admin-lead-card--unread {
  border-left: 3px solid #2563eb;
}

.admin-lead-card__dot {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
}

.admin-lead-card__meta {
  font-size: 0.75rem;
  color: var(--graphite);
  margin-bottom: var(--space-xs);
}

.admin-lead-card__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.admin-lead-card__contacts {
  display: flex;
  gap: var(--space-md);
  font-size: 0.8125rem;
  margin-bottom: var(--space-md);
}

.admin-lead-card__contacts a {
  color: var(--graphite);
  transition: color 0.2s;
}

.admin-lead-card__contacts a:hover {
  color: var(--dark);
}

.admin-lead-card__message {
  background: var(--offwhite);
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  font-size: 0.8125rem;
  color: var(--charcoal);
  font-style: italic;
  white-space: pre-wrap;
  line-height: 1.6;
}

/* ─── Admin Viewing Request Card ──────────────────────────────────────────── */
.admin-viewing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid #bfdbfe;
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.admin-viewing-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3b82f6;
}

.admin-viewing-card__type {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--graphite);
  margin-bottom: var(--space-sm);
}

.admin-viewing-card__car {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
}

.admin-viewing-card__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--graphite);
  margin-bottom: var(--space-md);
}

.admin-viewing-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.admin-viewing-card__detail-box {
  background: var(--offwhite);
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
}

.admin-viewing-card__detail-box--blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.admin-viewing-card__detail-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: var(--space-xs);
}

.admin-viewing-card__detail-box--blue .admin-viewing-card__detail-label {
  color: #1d4ed8;
}

.admin-viewing-card__detail-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.admin-viewing-card__detail-box--blue .admin-viewing-card__detail-value {
  color: #1e40af;
}

.admin-viewing-card__detail-sub {
  font-size: 0.75rem;
  color: var(--graphite);
  margin-top: 2px;
}

/* ─── Admin Responsive Table Wrapper ──────────────────────────────────────── */
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── Admin Car Thumbnail in Table ────────────────────────────────────────── */
.admin-car-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.admin-car-thumb {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--stone);
  flex-shrink: 0;
}

.admin-car-name {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.admin-car-sub {
  font-size: 0.75rem;
  color: var(--graphite);
  margin-top: 1px;
}

/* ─── Logout Inline Form ──────────────────────────────────────────────────── */
.admin-logout-btn {
  background: transparent;
  color: var(--graphite);
  border: 1.5px solid var(--stone);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-logout-btn:hover {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fecaca;
}

/* ─── Admin Dashboard Two-Column Grid ────────────────────────────────────── */
.admin-leads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .admin-leads-grid {
    grid-template-columns: 1fr;
  }
}

.admin-lead-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

/* ─── Global Success Toast (fixed position) ──────────────────────────────── */
.global-toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  animation: toastSlide 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.global-toast--success {
  background: #065f46;
  color: #fff;
  border-left: 4px solid #10b981;
}

@keyframes toastSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Form Validation Styles ──────────────────────────────────────────── */
.form-error {
  display: block;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  min-height: 0;
}

.input--invalid {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08) !important;
}

.required {
  color: #dc2626;
  font-weight: 700;
}

/* ─── Alert Error State ──────────────────────────────────────────────── */
.alert--error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}

/* ─── Vehicle Card as Link ──────────────────────────────────────────── */
.vehicle-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.vehicle-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.vehicle-card--link:hover .btn--view-details {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.vehicle-card__variant {
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: 8px;
}

/* ─── Cell Actions in Admin Table ────────────────────────────────────── */
.cell-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─── Mark-as-Read Button ────────────────────────────────────────────── */
.admin-lead-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.admin-lead-card__header .admin-lead-card__meta {
  flex: 1;
  min-width: 0;
}

.admin-mark-read-form {
  margin-left: auto;
  flex-shrink: 0;
}

.admin-mark-read-btn {
  background: transparent;
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  cursor: pointer;
  color: var(--graphite);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-mark-read-btn:hover {
  background: #eef2ff;
  color: var(--primary);
  border-color: var(--primary);
}

/* ─── Viewing Card Unread State ──────────────────────────────────────── */
.admin-viewing-card--unread {
  border-left: 3px solid var(--primary);
}

/* ─── Pagination ─────────────────────────────────────────────────────── */
.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  margin-top: var(--space-md);
}

.admin-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--stone);
  text-decoration: none;
  transition: all 0.2s ease;
}

.admin-pagination__btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.admin-pagination__info {
  font-size: 0.8125rem;
  color: var(--graphite);
  font-weight: 500;
}