:root {
  --bg: #05070d;
  --bg-2: #0b0f18;
  --panel: rgba(255,255,255,0.05);
  --panel-2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --text: #f4f4f7;
  --muted: #b9bfca;
  --primary: #df2a24;
  --primary-soft: rgba(223, 42, 36, 0.16);
  --container: 1240px;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(223,42,36,0.14), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(42,104,223,0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.05), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #090d15 45%, #06080d 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}


[hidden] {
  display: none !important;
}

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 85%);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }
code { font-family: monospace; color: #ffd9d8; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(6, 8, 13, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; flex-direction: column; }
.brand-subtitle { color: #ff766f; letter-spacing: 0.32em; font-size: 0.72rem; }
.brand-title { color: var(--text); font-size: 1rem; font-weight: 700; }

.menu, .nav-actions { display: flex; align-items: center; gap: 26px; }
.menu a { color: rgba(255,255,255,0.82); }
.menu a:hover { color: #fff; }

.btn, .cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f03a32, #bf1712);
  color: white;
  box-shadow: 0 14px 32px rgba(223,42,36,0.22);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.08);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.12);
}

.btn-ghost-vip {
  background: rgba(33, 33, 34, 0.527);
  color: #f7f7fb;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.24);
}

.btn-ghost-vip:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 14px 32px rgba(223,42,36,0.18);
}

.btn-ghost-vip:focus-visible {
  outline: none;
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 3px rgba(223,42,36,0.16), 0 14px 32px rgba(223,42,36,0.18);
}

.cart-link {
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
}
.cart-count {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-size: 0.9rem;
}

.hero, .catalogue-hero {
  position: relative;
  overflow: hidden;
}
.hero-home {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(223,42,36,0.22), transparent 18%),
    radial-gradient(circle at 70% 35%, rgba(255,255,255,0.08), transparent 26%),
    linear-gradient(90deg, rgba(5,7,13,0.96) 0%, rgba(5,7,13,0.74) 55%, rgba(5,7,13,0.52) 100%);
}

.hero-grid, .catalogue-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  padding: 82px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: #ff8d87;
  margin-bottom: 16px;
}

.hero-copy h1, .catalogue-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  max-width: 640px;
  max-width: 820px;
  margin-bottom: 20px;
}
.hero-description, .catalogue-hero p { color: var(--muted); font-size: 1.06rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.hero-stats article, .catalogue-summary > div {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 18px;
}
.hero-stats strong, .catalogue-summary strong { font-size: 1.8rem; display: block; }
.hero-stats span, .catalogue-summary span { color: var(--muted); font-size: 0.92rem; }

.hero-panel {
  display: grid;
  gap: 18px;
}
.hero-panel-card, .partnership-card, .vehicle-card, .empty-state {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel-card { padding: 28px; }
.panel-label, .card-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff8d87;
}
.hero-panel-card h2 { margin: 10px 0 8px; font-size: 1.7rem; }
.hero-panel-card p { color: var(--muted); }

.section { padding: 92px 0; }
.section-soft { padding-top: 36px; }
.section-head { text-align: center; max-width: 860px; margin: 0 auto 34px; }
.section-head.compact { margin-bottom: 0; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.1; margin-bottom: 12px; }
.section-head p { color: var(--muted); }

.partnerships-grid,
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.partnership-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 100%;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(160deg, rgba(20,24,36,0.96), rgba(9,12,19,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partnership-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88,101,242,0.14), transparent 42%, rgba(223,42,36,0.08) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.partnership-card > * {
  position: relative;
  z-index: 1;
}

.partnership-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 30px 65px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.02);
}

.partnership-card h3 {
  margin: 12px 0 0;
  font-size: clamp(1.55rem, 0.5vw, 1.9rem);
  line-height: 1.1;
}

.partnership-top {
  display: grid;
  gap: 6px;
}

.partnership-top-with-avatar {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.partnership-top-copy {
  min-width: 0;
}

.partnership-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 12px 24px rgba(88,101,242,0.18), 0 0 0 6px rgba(255,255,255,0.03);
  background: rgba(255,255,255,0.06);
}

.partnership-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff4d8;
}

.partnership-body {
  display: grid;
  gap: 10px;
  color: rgba(244,244,247,0.82);
}

.partnership-body p {
  color: rgba(244,244,247,0.78);
}

.partnership-body strong {
  color: #ffffff;
}

.partnership-created-by {
  margin-top: 10px;
  color: rgba(244,244,247,0.8);
  font-size: 0.98rem;
}

.partnership-created-by strong {
  color: #ffffff;
}

.partnership-meta { color: var(--muted); }
.card-link { display: inline-block; margin-top: 18px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); }

.partnership-discord-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f03a32, #bf1712);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 28px rgba(242, 88, 88, 0.22);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.partnership-discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(242, 88, 88, 0.28);
  filter: brightness(1.04);
}

.partnership-discord-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 88, 88, 0.22), 0 18px 34px rgba(242, 88, 88, 0.28);
}

.partnership-discord-btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  font-size: 0.95rem;
}

.empty-state { padding: 28px; text-align: center; grid-column: 1 / -1; }
.empty-state p { color: var(--muted); }

.catalogue-page .catalogue-hero, .panier-hero {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.catalogue-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.catalogue-summary > div:last-child { grid-column: 1 / -1; }

.filters-bar {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr) auto;
  gap: 10px;
  margin-bottom: 28px;
  align-items: end;
}
.filters-bar label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filters-bar span { color: var(--muted); font-size: 0.9rem; }
.filters-bar input,
.filters-bar select {
  min-height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0 14px;
}

.vehicle-card { overflow: hidden; }
.vehicle-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.vehicle-image img { width: 100%; height: 100%; object-fit: cover; }
.image-fallback { height: 100%; display: grid; place-items: center; color: var(--muted); }
.vehicle-body { padding: 20px; }
.vehicle-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.vehicle-id { color: var(--muted); font-size: 0.9rem; }
.vehicle-body h3 { font-size: 1.5rem; margin: 10px 0 6px; }
.vehicle-price { font-size: 1.1rem; color: #fff; margin-bottom: 14px; }
.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.vehicle-specs span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.88rem;
}
.vehicle-actions { display: flex; gap: 10px; }

.pagination-bar, .panier-actions, .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pagination-bar { margin-top: 28px; }
.panier-actions { margin-top: 24px; }
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
}
.footer-content { padding: 28px 0; color: var(--muted); }

@media (max-width: 1100px) {
  .hero-grid,
  .catalogue-hero-grid,
  .partnerships-grid,
  .catalogue-grid,
  .filters-bar {
    grid-template-columns: 1fr 1fr;
  }
  .filters-bar label:first-child { grid-column: 1 / -1; }
  .filters-bar .btn { width: 100%; }
}

@media (max-width: 820px) {
  .nav { flex-wrap: wrap; padding: 16px 0; }
  .menu, .nav-actions { width: 100%; justify-content: space-between; }
  .hero-grid,
  .catalogue-hero-grid,
  .partnerships-grid,
  .catalogue-grid,
  .filters-bar,
  .hero-stats,
  .catalogue-summary {
    grid-template-columns: 1fr;
  }
  .pagination-bar, .panier-actions, .footer-content {
    flex-direction: column;
    align-items: stretch;
  }
}


.filters-wrap {
  display: grid;
  gap: 16px;
}

.filters-actions-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.advanced-toggle {
  min-width: 140px;
}

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.advanced-filters label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filters-bar input::placeholder,
.advanced-filters input::placeholder {
  color: rgba(244,244,247,0.45);
}

.filters-bar input,
.filters-bar select,
.advanced-filters input,
.advanced-filters select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(17,20,30,0.94), rgba(13,16,24,0.94));
  color: #f6f7fb;
  padding: 0 16px;
}

.filters-bar select,
.advanced-filters select {
  background-image: 
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%),
    linear-gradient(180deg, rgba(17,20,30,0.94), rgba(13,16,24,0.94));
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.filters-bar select option,
.advanced-filters select option {
  background: #11141e;
  color: #f6f7fb;
}

.filters-bar input:focus,
.filters-bar select:focus,
.advanced-filters input:focus,
.advanced-filters select:focus {
  outline: none;
  border-color: rgba(223,42,36,0.45);
  box-shadow: 0 0 0 4px rgba(223,42,36,0.12);
}

@media (max-width: 1080px) {
  .advanced-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .filters-actions-row {
    flex-wrap: wrap;
  }

  .advanced-filters {
    grid-template-columns: 1fr;
  }
}

.hidden { display: none !important; }

.home-hero-simple {
  position: relative;
  padding: 84px 0 56px;
}

.home-hero-grid-simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: calc(100vh - 220px);
}

.home-intro-text {
  color: var(--muted);
  max-width: 620px;
  font-size: 1.08rem;
}

.home-search-bar {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  max-width: 640px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.home-search-bar input {
  flex: 1;
  min-width: 0;
}

.simple-actions {
  margin-top: 18px;
}

.home-selection-section {
  padding-top: 10px;
}

.home-section-head {
  margin-bottom: 28px;
}

.home-section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
}

.catalogue-header-simple {
  padding: 72px 0 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.catalogue-header-simple h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
  max-width: 640px;
  margin-bottom: 12px;
}

.catalogue-header-simple p:last-child {
  color: var(--muted);
  max-width: 720px;
}

.catalogue-section-simple {
  padding-top: 40px;
}

.simple-filters {
  margin-bottom: 18px;
}

.simple-grid {
  grid-template-columns: 2fr 1.1fr 1fr 1fr 1.1fr auto;
}

.compact-row {
  margin-top: 16px;
}

.catalogue-feedback {
  margin: 10px 0 18px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}

.catalogue-feedback.error {
  border-color: rgba(223,42,36,0.35);
  background: rgba(223,42,36,0.12);
}

.catalogue-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
  color: var(--muted);
}

.catalogue-mini-stats strong {
  color: var(--text);
}

.vehicle-card {
  overflow: hidden;
}

.vehicle-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.vehicle-image img {
  height: 100%;
  object-fit: cover;
}

.vehicle-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(5,7,13,0.84);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.vehicle-body {
  padding: 22px;
}

.vehicle-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.vehicle-id {
  color: var(--muted);
  font-size: 0.9rem;
}

.vehicle-card h3 {
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.vehicle-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.vehicle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.image-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
}

.empty-state {
  padding: 26px;
  grid-column: 1 / -1;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.pagination-bar p {
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 90px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
}

.vehicle-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.vehicle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}

.vehicle-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,16,25,0.98), rgba(9,12,19,0.98));
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
}

.vehicle-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.vehicle-gallery {
  position: relative;
  background: rgba(255,255,255,0.03);
  min-height: 420px;
}

.vehicle-gallery img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(5,7,13,0.76);
  color: white;
  font-size: 2rem;
  z-index: 2;
}

.gallery-arrow-prev { left: 18px; }
.gallery-arrow-next { right: 18px; }

.vehicle-gallery-count {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(5,7,13,0.8);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.vehicle-modal-body {
  padding: 32px;
}

.vehicle-modal-body h2 {
  font-size: 2.2rem;
  line-height: 1.05;
  margin: 10px 0 12px;
}

.vehicle-modal-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.vehicle-modal-description {
  color: var(--muted);
  margin-top: 18px;
  white-space: pre-line;
}

.vehicle-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5,7,13,0.72);
  color: white;
  font-size: 1.8rem;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .home-search-bar {
    flex-direction: column;
  }

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

  .footer-content,
  .pagination-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .catalogue-grid,
  .partnerships-grid,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .partnership-top-with-avatar {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .partnership-avatar {
    width: 64px;
    height: 64px;
  }

  .btn,
  .cart-link {
    min-height: 46px;
  }

  .vehicle-modal {
    padding: 10px;
  }

  .vehicle-gallery,
  .vehicle-gallery img {
    min-height: 280px;
  }

  .vehicle-modal-body {
    padding: 22px;
  }
}



.topbar-home {
  position: fixed;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.topbar-home.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.home-hero-soft {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 44px 0 56px;
  isolation: isolate;
}

.home-hero-soft::before {
  content: '';
  position: absolute;
  inset: -3%;
  background-image: url("/assets/img/showroom-sunrise-autos.png");
  background-size: cover;
  background-position: center 44%;
  filter: blur(7px) saturate(0.9) brightness(0.42);
  transform: scale(1.08);
  z-index: -2;
}

.home-hero-soft::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.5) 0%, rgba(5,7,13,0.14) 20%, rgba(5,7,13,0.32) 48%, rgba(5,7,13,0.72) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.28) 0%, rgba(6,8,13,0.18) 34%, rgba(7,14,34,0.2) 68%, rgba(12,37,88,0.3) 100%),
    radial-gradient(circle at 14% 26%, rgba(223,42,36,0.18), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(42,104,223,0.16), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.08), transparent 20%);
  z-index: -1;
}

.home-soft-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.9;
}

.home-soft-glow-left {
  width: 520px;
  height: 520px;
  left: -140px;
  top: 10%;
  background: radial-gradient(circle, rgba(120,21,18,0.22) 0%, rgba(120,21,18,0.06) 42%, transparent 74%);
}

.home-soft-glow-right {
  width: 620px;
  height: 620px;
  right: -180px;
  top: 6%;
  background: radial-gradient(circle, rgba(18,43,97,0.22) 0%, rgba(18,43,97,0.06) 42%, transparent 74%);
}

.home-hero-soft-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-soft-badge {
  width: min(100%, 980px);
  display: grid;
  gap: 10px;
  margin-top: 44px;
  margin-bottom: 18px;
  padding: 20px 28px 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(16,16,20,0.86), rgba(8,10,16,0.8));
  box-shadow: 0 22px 60px rgba(0,0,0,0.28), inset 0 0 24px rgba(255,69,61,0.04);
}

.hero-soft-badge-main {
  display: block;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #ff4a43;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 8px rgba(255,74,67,0.78),
    0 0 18px rgba(255,52,43,0.54),
    0 0 34px rgba(255,38,28,0.26);
}

.hero-soft-badge-sub {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
}

.hero-soft-panel {
  width: min(100%, 1120px);
  padding: 44px 36px 40px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(23,20,22,0.88), rgba(11,13,20,0.82));
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.hero-soft-logo {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,69,61,0.18), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 28px rgba(0,0,0,0.22);
}

.hero-soft-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25) translateY(6px);
  transform-origin: center;
}

.hero-soft-logo span {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff5f4;
}

.hero-soft-eyebrow {
  margin-bottom: 10px;
}

.home-hero-soft h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  max-width: 900px;
  margin: 0 auto 18px;
  letter-spacing: -0.04em;
}

.hero-soft-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(244,244,247,0.78);
  font-size: 1.08rem;
}

.hero-soft-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-soft-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
}

.hero-actions-center {
  justify-content: center;
}

.hero-actions-soft {
  margin-top: 30px;
}

.scroll-indicator-soft {
  margin-top: 44px;
}

.scroll-indicator {
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 42px;
  margin: 12px auto 0;
  background: linear-gradient(180deg, rgba(255,69,61,0.7), transparent);
}

.compact-home-head {
  text-align: left;
  max-width: none;
}

@media (max-width: 820px) {
  .topbar-home .menu {
    gap: 18px;
  }

  .home-hero-soft {
    padding-top: 24px;
  }

  .hero-soft-badge {
    width: min(100%, 100%);
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-soft-badge-main {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .hero-soft-badge-sub {
    letter-spacing: 0.2em;
    font-size: 0.72rem;
  }

  .hero-soft-panel {
    width: min(100%, 100%);
    padding: 26px 18px 24px;
    border-radius: 24px;
  }

  .hero-soft-chips {
    gap: 10px;
  }

  .hero-soft-chips span {
    width: 100%;
  }
}


.hero-soft-panel.hero-benny-panel {
  width: min(100%, 1120px);
  max-width: 1120px;
  padding: 28px 42px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(23,20,22,0.92), rgba(11,13,20,0.88));
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.hero-benny-title {
  max-width: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(1.85rem, 3vw, 2.95rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  white-space: nowrap;
}

.hero-benny-title span {
  color: #ff4a43;
  text-shadow: 0 0 10px rgba(255,74,67,0.35);
}

.hero-benny-line {
  width: min(340px, 46%);
  height: 2px;
  margin: 14px auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,74,67,0.92), transparent);
  box-shadow: 0 0 18px rgba(255,74,67,0.28);
}

.hero-benny-text {
  max-width: 720px;
  font-size: 0.98rem;
  color: rgba(244,244,247,0.72);
}

.hero-status-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.status-pill {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.86);
}

.status-pill-wide {
  min-width: 210px;
}

.status-pill-label {
  color: rgba(255,255,255,0.7);
}

.status-pill strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b5b8c0;
  box-shadow: 0 0 10px rgba(181,184,192,0.3);
}

.status-pill.is-open {
  border-color: rgba(0, 200, 83, 0.42);
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.15);
}

.status-pill.is-open .status-dot {
  background: #00c853;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.65);
}

.status-pill.is-off {
  border-color: rgba(255, 74, 67, 0.42);
  box-shadow: 0 0 18px rgba(255, 74, 67, 0.14);
}

.status-pill.is-off .status-dot {
  background: #ff4a43;
  box-shadow: 0 0 12px rgba(255, 74, 67, 0.58);
}

.hero-actions-compact {
  margin-top: 16px;
}

@media (max-width: 820px) {
  .hero-soft-panel.hero-benny-panel {
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .hero-benny-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero-benny-line {
    width: 90%;
  }

  .hero-status-row {
    flex-direction: column;
    align-items: stretch;
  }

  .status-pill,
  .status-pill-wide {
    width: 100%;
    min-width: 0;
  }
}


.hero-benny-title {
  text-wrap: balance;
}

.hero-soft-panel.hero-benny-panel .hero-soft-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
}

.hero-soft-panel.hero-benny-panel .hero-soft-eyebrow {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.hero-status-row .status-pill strong {
  font-size: 1rem;
}

@media (max-width: 820px) {
  .hero-soft-panel.hero-benny-panel {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px 22px;
  }

  .hero-benny-title {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}


.hero-soft-badge-compact {
  max-width: 980px;
  margin: 0 auto 20px;
  padding: 22px 28px 18px;
  border-radius: 28px;
}

.hero-soft-badge-compact .hero-soft-badge-main {
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hero-soft-badge-compact .hero-soft-badge-sub {
  margin-top: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
}

.hero-benny-panel-compact {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 34px 28px;
  border-radius: 30px;
}

.hero-benny-panel-compact .hero-soft-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.hero-benny-panel-compact .hero-soft-eyebrow {
  margin-bottom: 14px;
  font-size: 0.88rem;
  letter-spacing: 0.28em;
}

.hero-benny-panel-compact .hero-benny-title {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-benny-panel-compact .hero-benny-title span {
  font-size: 0.8em;
  margin: 0 0.15em;
}

.hero-benny-panel-compact .hero-benny-line {
  width: min(320px, 45%);
  margin: 0 auto 18px;
}

.hero-benny-panel-compact .hero-benny-text {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-benny-panel-compact .hero-status-row {
  gap: 12px;
  margin: 0 auto 16px;
}

.hero-benny-panel-compact .status-pill {
  min-width: 0;
  padding: 12px 18px;
  border-radius: 999px;
}

.hero-benny-panel-compact .status-pill strong {
  font-size: 1.05rem;
}

.hero-benny-panel-compact .status-pill-label {
  font-size: 0.98rem;
}

.status-pill.is-unknown {
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

.status-pill.is-unknown .status-dot {
  background: #9ca3af;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .hero-soft-badge-compact,
  .hero-benny-panel-compact {
    max-width: 92%;
  }

  .hero-soft-badge-compact .hero-soft-badge-main {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero-benny-panel-compact {
    padding: 24px 18px 22px;
  }

  .hero-benny-panel-compact .hero-benny-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-benny-panel-compact .hero-benny-title span {
    display: inline-block;
    margin: 0 0.08em;
  }
}


/* --- HERO COMPACT WIDE FIX --- */
.hero-soft-panel,
.hero-benny-panel{
    max-width:1500px;
    width:92%;
    padding:26px 70px;
    margin:auto;
}

.hero-benny-title{
    font-size:44px !important;
    line-height:1.1;
}

.hero-benny-text{
    font-size:14px;
    max-width:720px;
}

.status-pill{
    padding:6px 14px;
    font-size:13px;
}

.hero-actions .btn{
    padding:10px 20px;
    font-size:14px;
}


.reviews-summary {
  margin-bottom: 22px;
}

.reviews-summary-card,
.review-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(160deg, rgba(20,24,36,0.96), rgba(9,12,19,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
}

.reviews-summary-card {
  padding: 32px;
}

.reviews-summary-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 6px;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.reviews-summary-score span {
  font-size: 1.4rem;
  color: var(--muted);
}

.reviews-summary-stars {
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: #fff0b3;
}

.reviews-summary-text {
  margin-top: 14px;
  max-width: 760px;
  color: rgba(244,244,247,0.8);
}

.reviews-summary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.reviews-summary-metrics > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.reviews-summary-metrics strong {
  display: block;
  font-size: 1.8rem;
}

.reviews-summary-metrics span {
  color: var(--muted);
}

.reviews-slider {
  overflow: hidden;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 22px;
  will-change: transform;
}

.reviews-track.is-animated {
  transition: transform 0.75s ease;
}

.reviews-track-static {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}

.review-card-top,
.review-meta-row,
.review-person {
  display: flex;
  align-items: center;
}

.review-card-top,
.review-meta-row {
  justify-content: space-between;
  gap: 16px;
}

.review-person {
  gap: 12px;
  min-width: 0;
}

.review-person h3 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.review-avatar-small {
  width: 36px;
  height: 36px;
}

.review-rating-badge {
  text-align: right;
}

.review-rating-badge strong {
  display: block;
  font-size: 1.1rem;
}

.review-rating-badge span {
  color: #fff0b3;
  letter-spacing: 0.08em;
}

.review-comment {
  margin: 0;
  color: rgba(244,244,247,0.86);
  line-height: 1.7;
}

.review-meta-row {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .reviews-track-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .reviews-summary-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-track-static {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: 100%;
  }

  .review-card-top,
  .review-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Background showroom refinement */
.hero-soft-badge,
.hero-soft-panel.hero-benny-panel {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-soft-badge {
  background: linear-gradient(180deg, rgba(10,12,18,0.78), rgba(8,10,16,0.68));
}

.hero-soft-panel.hero-benny-panel {
  background: linear-gradient(180deg, rgba(18,18,22,0.78), rgba(10,12,18,0.72));
}

@media (max-width: 768px) {
  .home-hero-soft::before {
    background-position: center center;
    filter: blur(6px) saturate(0.9) brightness(0.36);
    transform: scale(1.12);
  }
}


/* showroom banner refined */
.hero-showroom-wrap{
  position: relative;
  width: min(100%, 1360px);
  margin: 26px auto 28px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 90px rgba(0,0,0,0.42);
  isolation: isolate;
}

.hero-showroom-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(223,42,36,0.26) 0%, transparent 28%),
    linear-gradient(270deg, rgba(42,104,223,0.24) 0%, transparent 28%),
    linear-gradient(180deg, rgba(5,7,13,0.12) 0%, transparent 34%, rgba(5,7,13,0.22) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-showroom-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 90px rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 2;
}

.hero-showroom-img{
  width: 100%;
  aspect-ratio: 21 / 8;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
  filter: contrast(1.05) saturate(1.04) brightness(0.98);
  transform: scale(1.01);
}

/* remove blurred background */
.home-hero-soft::before{background:none !important;filter:none !important}

/* scroll reveal */
.reveal-on-scroll{
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1{ transition-delay: 0.08s; }
.reveal-delay-2{ transition-delay: 0.16s; }
.reveal-delay-3{ transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 900px){
  .hero-showroom-wrap{
    width: min(100%, 100%);
    border-radius: 22px;
  }

  .hero-showroom-img{
    aspect-ratio: 16 / 8;
    min-height: 280px;
    border-radius: 22px;
  }
}

/* Home hero redesign: fixed background + floating panel */
body[data-page="home"] {
  background: #05070d;
}

.home-hero-soft {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: clip;
}

.home-hero-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/showroom-sunrise-autos.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: none !important;
  transform: none !important;
  z-index: -3;
}

.home-hero-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.60) 0%, rgba(5,7,13,0.28) 30%, rgba(5,7,13,0.30) 55%, rgba(5,7,13,0.82) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.22) 0%, rgba(6,8,13,0.14) 36%, rgba(7,14,34,0.18) 70%, rgba(12,37,88,0.24) 100%);
  z-index: -2;
}

.home-soft-glow {
  display: none;
}

.home-hero-soft-inner {
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 180px;
  align-items: center;
  justify-content: center;
}

.hero-panel-floating {
  width: min(100%, 760px) !important;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,13,18,0.84), rgba(7,9,15,0.78)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
}

.home-content-stack {
  position: relative;
  z-index: 3;
  margin-top: -110px;
  padding-top: 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  background: linear-gradient(180deg, rgba(8,10,16,0.98), rgba(8,10,16,1));
  box-shadow: 0 -24px 70px rgba(0,0,0,0.28);
}

.home-content-stack .home-selection-section:first-child {
  padding-top: 150px;
}

.home-content-stack .home-selection-section {
  position: relative;
  z-index: 1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  filter: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }

@media (max-width: 900px) {
  .home-hero-soft::before {
    background-attachment: scroll;
  }

  .home-hero-soft-inner {
    padding-top: 104px;
    padding-bottom: 140px;
  }

  .hero-panel-floating {
    width: min(100%, 100%) !important;
    border-radius: 24px;
  }

  .home-content-stack {
    margin-top: -72px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .home-content-stack .home-selection-section:first-child {
    padding-top: 110px;
  }
}


/* === Home refresh: fixed navbar + showroom background + cinematic scroll === */
.topbar-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-home.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

body[data-page="home"] {
  background: #05070d;
}

body[data-page="home"] main {
  overflow: clip;
}


.home-hero-soft {
  min-height: 100vh;
  padding: 0;
  overflow: clip;
}

.home-hero-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/showroom-sunrise-autos.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: none !important;
  transform: none !important;
  z-index: -3;
}

.home-hero-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.52) 0%, rgba(5,7,13,0.22) 28%, rgba(5,7,13,0.30) 56%, rgba(5,7,13,0.88) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.18) 0%, rgba(6,8,13,0.10) 38%, rgba(7,14,34,0.16) 70%, rgba(12,37,88,0.22) 100%);
  z-index: -2;
}

.home-soft-glow {
  display: none;
}

.home-hero-soft-inner {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 190px;
  align-items: center;
  justify-content: center;
}

.hero-panel-floating {
  width: min(100%, 760px) !important;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,13,18,0.82), rgba(7,9,15,0.76)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
  will-change: transform, opacity;
}

.home-content-stack {
  position: relative;
  z-index: 3;
  margin-top: -130px;
  padding-top: 0;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  background: linear-gradient(180deg, rgba(8,10,16,0.98), rgba(8,10,16,1));
  box-shadow: 0 -28px 80px rgba(0,0,0,0.32);
}

.home-content-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.home-content-stack .home-selection-section:first-child {
  padding-top: 160px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  filter: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

@media (max-width: 900px) {
  .home-hero-soft::before {
    background-attachment: scroll;
  }

  .home-hero-soft-inner {
    padding-top: 104px;
    padding-bottom: 140px;
  }

  .hero-panel-floating {
    width: min(100%, 100%) !important;
    border-radius: 24px;
  }

  .home-content-stack {
    margin-top: -78px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .home-content-stack .home-selection-section:first-child {
    padding-top: 112px;
  }
}


/* === FINAL FIX: fixed showroom background + cover on scroll === */
body[data-page="home"] {
  background: #05070d;
}

body[data-page="home"]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/assets/img/showroom-sunrise-autos.png") center center / cover no-repeat;
  z-index: -10;
  pointer-events: none;
}

body[data-page="home"]::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.52) 0%, rgba(5,7,13,0.22) 28%, rgba(5,7,13,0.30) 56%, rgba(5,7,13,0.88) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.18) 0%, rgba(6,8,13,0.10) 38%, rgba(7,14,34,0.16) 70%, rgba(12,37,88,0.22) 100%);
  z-index: -9;
  pointer-events: none;
}

body[data-page="home"] main {
  position: relative;
  z-index: 1;
}

.home-hero-soft {
  position: relative;
  min-height: 100vh;
  background: transparent !important;
}

.home-hero-soft::before,
.home-hero-soft::after {
  background: none !important;
}

.home-hero-soft-inner {
  min-height: 100vh;
  padding-top: 118px;
  padding-bottom: 220px;
}

.hero-panel-floating {
  position: relative;
  z-index: 3;
}

.home-content-stack {
  position: relative;
  z-index: 4;
  margin-top: -150px;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  background: linear-gradient(180deg, rgba(8,10,16,0.985), rgba(8,10,16,1));
  box-shadow: 0 -28px 80px rgba(0,0,0,0.34);
}

.home-content-stack .home-selection-section:first-child {
  padding-top: 150px;
}

@media (max-width: 900px) {
  body[data-page="home"]::before,
  body[data-page="home"]::after {
    position: absolute;
  }

  .home-content-stack {
    margin-top: -82px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .home-content-stack .home-selection-section:first-child {
    padding-top: 110px;
  }
}


.menu a.is-current,
.menu a.is-current-home,
body[data-page="passvip"] .menu a[href="/passvip"],
body[data-page="catalogue"] .menu a[href="/catalogue"],
body[data-page="panier"] .menu a[href="/panier"],
body[data-page="home"] .menu a[href="/"] {
  color: #ffffff;
}

.passvip-page {
  min-height: calc(100vh - 84px);
}

.passvip-hero {
  padding: 88px 0 8px;
}

.passvip-hero-inner {
  text-align: center;
}

.passvip-hero .eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d7a06a;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.passvip-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 840px;
  margin: 0 auto;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.passvip-spacer {
  height: 42px;
}

.passvip-section {
  padding: 0 0 92px;
}

.vip-carousel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 24px;
}

.vip-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  will-change: transform, filter;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.vip-card {
  will-change: transform, opacity, filter, box-shadow;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.vip-cards-wrap.vip-wrap-next {
  animation: vipWrapDriftNext 1.08s cubic-bezier(0.2, 0.85, 0.22, 1);
}

.vip-cards-wrap.vip-wrap-prev {
  animation: vipWrapDriftPrev 1.08s cubic-bezier(0.2, 0.85, 0.22, 1);
}

@keyframes vipWrapDriftNext {
  0% { transform: translate3d(0, 0, 0) rotateX(0deg); }
  28% { transform: translate3d(-10px, 0, 0) rotateX(0.5deg); }
  52% { transform: translate3d(-18px, -3px, 0) rotateX(1deg); }
  100% { transform: translate3d(0, 0, 0) rotateX(0deg); }
}

@keyframes vipWrapDriftPrev {
  0% { transform: translate3d(0, 0, 0) rotateX(0deg); }
  28% { transform: translate3d(10px, 0, 0) rotateX(0.5deg); }
  52% { transform: translate3d(18px, -3px, 0) rotateX(1deg); }
  100% { transform: translate3d(0, 0, 0) rotateX(0deg); }
}

.vip-card.vip-anim-left-out {
  animation: vipLeftOut 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-center-to-left {
  animation: vipCenterToLeft 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-right-to-center {
  animation: vipRightToCenter 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-card.vip-anim-right-out {
  animation: vipRightOut 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-center-to-right {
  animation: vipCenterToRight 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-left-to-center {
  animation: vipLeftToCenter 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-card.vip-anim-left-settle {
  animation: vipLeftSettle 0.56s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.vip-card.vip-anim-center-settle {
  animation: vipCenterSettle 0.56s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.vip-card.vip-anim-right-settle {
  animation: vipRightSettle 0.56s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

@keyframes vipLeftOut {
  0% { transform: perspective(1800px) translate3d(0, 10px, 0) rotateY(12deg) scale(0.96); opacity: 0.96; filter: blur(0px); }
  45% { transform: perspective(1800px) translate3d(-26px, 8px, -70px) rotateY(28deg) scale(0.93); opacity: 0.9; }
  100% { transform: perspective(1800px) translate3d(-56px, 12px, -120px) rotateY(40deg) scale(0.88); opacity: 0.72; filter: blur(1.2px); }
}

@keyframes vipCenterToLeft {
  0% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
  34% { transform: perspective(1800px) translate3d(-10px, -2px, -10px) rotateY(7deg) scale(1); opacity: 0.98; }
  100% { transform: perspective(1800px) translate3d(-82px, 10px, -85px) rotateY(20deg) scale(0.945); opacity: 0.88; }
}

@keyframes vipRightToCenter {
  0% { transform: perspective(1800px) translate3d(82px, 12px, -130px) rotateY(-32deg) scale(0.88); opacity: 0.74; filter: blur(1px); }
  55% { transform: perspective(1800px) translate3d(18px, 2px, -12px) rotateY(-8deg) scale(0.99); opacity: 0.98; filter: blur(0px); }
  100% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
}

@keyframes vipRightOut {
  0% { transform: perspective(1800px) translate3d(0, 10px, 0) rotateY(-12deg) scale(0.96); opacity: 0.96; filter: blur(0px); }
  45% { transform: perspective(1800px) translate3d(26px, 8px, -70px) rotateY(-28deg) scale(0.93); opacity: 0.9; }
  100% { transform: perspective(1800px) translate3d(56px, 12px, -120px) rotateY(-40deg) scale(0.88); opacity: 0.72; filter: blur(1.2px); }
}

@keyframes vipCenterToRight {
  0% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
  34% { transform: perspective(1800px) translate3d(10px, -2px, -10px) rotateY(-7deg) scale(1); opacity: 0.98; }
  100% { transform: perspective(1800px) translate3d(82px, 10px, -85px) rotateY(-20deg) scale(0.945); opacity: 0.88; }
}

@keyframes vipLeftToCenter {
  0% { transform: perspective(1800px) translate3d(-82px, 12px, -130px) rotateY(32deg) scale(0.88); opacity: 0.74; filter: blur(1px); }
  55% { transform: perspective(1800px) translate3d(-18px, 2px, -12px) rotateY(8deg) scale(0.99); opacity: 0.98; filter: blur(0px); }
  100% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
}

@keyframes vipLeftSettle {
  0% { transform: perspective(1800px) translate3d(-30px, 8px, -40px) rotateY(20deg) scale(0.92); opacity: 0.84; }
  70% { transform: perspective(1800px) translate3d(2px, 8px, 0) rotateY(8deg) scale(0.968); opacity: 0.96; }
  100% { transform: perspective(1800px) rotateY(10deg) scale(0.96) translateY(10px); opacity: 0.96; }
}

@keyframes vipCenterSettle {
  0% { transform: perspective(1800px) translate3d(0, 0, -8px) rotateY(-6deg) scale(0.985); opacity: 0.94; }
  62% { transform: perspective(1800px) translate3d(0, -4px, 0) rotateY(1deg) scale(1.03); opacity: 1; }
  100% { transform: scale(1.02) rotateY(0deg); opacity: 1; }
}

@keyframes vipRightSettle {
  0% { transform: perspective(1800px) translate3d(30px, 8px, -40px) rotateY(-20deg) scale(0.92); opacity: 0.84; }
  70% { transform: perspective(1800px) translate3d(-2px, 8px, 0) rotateY(-8deg) scale(0.968); opacity: 0.96; }
  100% { transform: perspective(1800px) rotateY(-10deg) scale(0.96) translateY(10px); opacity: 0.96; }
}

.vip-card {
  position: relative;
  min-height: 580px;
  padding: 36px 36px 38px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 44%),
    linear-gradient(180deg, rgba(7,10,16,0.94), rgba(3,6,12,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 22px 50px rgba(0,0,0,0.22);
  transition: transform 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), border-color 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), filter 0.55s cubic-bezier(0.2, 0.85, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vip-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.08) 34%, transparent 52%);
  transform: translateX(-135%) skewX(-18deg);
  opacity: 0;
}

.vip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 28%, transparent 72%, rgba(255,255,255,0.02));
  opacity: 0.8;
}

.vip-render-enter::before {
  animation: vipShineSweep 0.7s ease-out;
}

@keyframes vipShineSweep {
  0% { transform: translateX(-135%) skewX(-18deg); opacity: 0; }
  24% { opacity: 0.22; }
  100% { transform: translateX(135%) skewX(-18deg); opacity: 0; }
}

.vip-side {
  opacity: 0.96;
  filter: saturate(0.92);
  transform: scale(0.96) translateY(10px);
}

.vip-left {
  transform: perspective(1800px) rotateY(10deg) scale(0.96) translateY(10px);
}

.vip-right {
  transform: perspective(1800px) rotateY(-10deg) scale(0.96) translateY(10px);
}

.vip-center {
  min-height: 580px;
  transform: perspective(1800px) translateZ(0) scale(1.02);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.05), transparent 46%),
    linear-gradient(180deg, rgba(11,15,24,0.96), rgba(4,7,13,0.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 66px rgba(0,0,0,0.28);
}

.vip-card[data-theme="bronze"] {
  border-color: rgba(176, 117, 58, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(176, 117, 58, 0.08);
}

.vip-card[data-theme="argent"] {
  border-color: rgba(175, 180, 190, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(175, 180, 190, 0.06);
}

.vip-card[data-theme="or"] {
  border-color: rgba(210, 174, 40, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(210, 174, 40, 0.08);
}

.vip-center[data-theme="bronze"],
.vip-center[data-theme="argent"],
.vip-center[data-theme="or"] {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 66px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.03);
}

.vip-center[data-theme="bronze"] {
  border-color: rgba(176, 117, 58, 0.58);
}

.vip-center[data-theme="argent"] {
  border-color: rgba(195, 200, 210, 0.52);
}

.vip-center[data-theme="or"] {
  border-color: rgba(222, 190, 72, 0.56);
}

.vip-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  color: #ffffff;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.vip-arrow:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.vip-arrow:disabled {
  opacity: 0.55;
  cursor: default;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  align-self: flex-start;
}

.vip-badge-bronze {
  color: #d8a16a;
  background: rgba(88, 54, 28, 0.18);
  border-color: rgba(176, 117, 58, 0.52);
}

.vip-badge-argent {
  color: #f0f0f0;
  background: rgba(122, 122, 128, 0.16);
  border-color: rgba(175, 180, 190, 0.42);
}

.vip-badge-or {
  color: #f7d86a;
  background: rgba(112, 91, 15, 0.16);
  border-color: rgba(210, 174, 40, 0.56);
}

.vip-card-text {
  margin-top: 24px;
  color: rgba(244,244,247,0.9);
  font-size: 1.02rem;
  line-height: 1.7;
  min-height: 136px;
}

.vip-price {
  margin-top: 28px;
  font-size: clamp(1.92rem, 2.2vw, 3.05rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
  font-weight: 700;
}

.vip-side .vip-price {
  font-size: clamp(1.72rem, 1.95vw, 2.72rem);
}

.vip-center .vip-price {
  font-size: clamp(2.02rem, 2.35vw, 3.18rem);
}

.vip-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  margin: 28px 0 20px;
}

.vip-perks {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 26px;
}

.vip-perks li {
  position: relative;
  padding-left: 26px;
  color: rgba(244,244,247,0.92);
  line-height: 1.5;
}

.vip-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8d87;
  font-weight: 700;
}

.vip-card-btn {
  width: 100%;
  margin-top: auto;
  min-height: 56px;
  color: #ffffff;
}

.vip-card-btn-placeholder {
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
}

.vip-card-btn[data-theme="bronze"] {
  background: linear-gradient(135deg, #a4693f, #6f4324);
  box-shadow: 0 18px 32px rgba(164, 105, 63, 0.26);
}

.vip-card-btn[data-theme="argent"] {
  background: linear-gradient(135deg, #d6d9df, #9ca3ad);
  color: #13161d;
  box-shadow: 0 18px 32px rgba(168, 175, 186, 0.28);
}

.vip-card-btn[data-theme="or"] {
  background: linear-gradient(135deg, #e1c15a, #b48a16);
  color: #16120a;
  box-shadow: 0 18px 32px rgba(210, 174, 40, 0.3);
}

.vip-render-enter .vip-badge,
.vip-render-enter .vip-card-text,
.vip-render-enter .vip-price,
.vip-render-enter .vip-divider,
.vip-render-enter .vip-perks li,
.vip-render-enter .vip-card-btn {
  opacity: 0;
  transform: translateY(12px);
  animation: vipContentRise 0.6s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.vip-render-enter .vip-badge { animation-delay: 0.04s; }
.vip-render-enter .vip-card-text { animation-delay: 0.1s; }
.vip-render-enter .vip-price { animation-delay: 0.16s; }
.vip-render-enter .vip-divider { animation-delay: 0.22s; }
.vip-render-enter .vip-perks li:nth-child(1) { animation-delay: 0.28s; }
.vip-render-enter .vip-perks li:nth-child(2) { animation-delay: 0.34s; }
.vip-render-enter .vip-perks li:nth-child(3) { animation-delay: 0.4s; }
.vip-render-enter .vip-card-btn { animation-delay: 0.46s; }

@keyframes vipContentRise {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.vip-center {
  padding-bottom: 48px;
}

.vip-card-btn.is-added {
  filter: brightness(1.06);
}
.vip-cart-card .vehicle-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vip-cart-image {
  display: grid;
  place-items: center;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.vip-cart-badge {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vip-cart-specs {
  margin-bottom: 0;
}

.vip-cart-perks {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 4px;
  padding: 0;
}

.vip-cart-perks li {
  position: relative;
  padding-left: 22px;
  color: rgba(244,244,247,0.88);
}

.vip-cart-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8d87;
  font-weight: 700;
}

.vip-common-box {
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  padding: 28px;
}

.vip-common-box h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  margin-bottom: 22px;
}

.vip-common-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vip-common-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.vip-common-grid h3 {
  margin-bottom: 4px;
}

.vip-common-grid p {
  color: var(--muted);
}

.vip-common-icon {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 1120px) {
  .vip-carousel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vip-arrow {
    display: none;
  }

  .vip-cards-wrap {
    grid-template-columns: 1fr;
  }

  .vip-side,
  .vip-center {
    transform: none;
    opacity: 1;
    min-height: auto;
  }

  .vip-common-grid {
    grid-template-columns: 1fr;
  }
}


.catalogue-page {
  padding-top: 118px;
}


.contact-page {
  padding-top: 118px;
}

.contact-hero {
  padding: 28px 0 20px;
}

.contact-hero-inner {
  max-width: 780px;
}

.contact-hero-text {
  max-width: 720px;
  color: rgba(246, 247, 251, 0.78);
}

.contact-section {
  padding: 8px 0 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-preview-card {
  padding: 28px;
  border-radius: 30px;
  color-scheme: dark;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label,
.contact-radio-group {
  display: grid;
  gap: 10px;
}

.contact-form label > span,
.contact-radio-group legend {
  font-weight: 600;
  color: #f7f7fb;
}

.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(23,27,39,0.96), rgba(16,20,30,0.96));
  color: #f7f7fb;
  padding: 0 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-form textarea {
  min-height: 180px;
  padding: 16px 18px;
  resize: vertical;
}

.contact-form select {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: auto;
}

.contact-form select option,
.contact-form select optgroup {
  background: #121722;
  color: #f7f7fb;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(223,42,36,0.42);
  box-shadow: 0 0 0 4px rgba(223,42,36,0.12);
}

.contact-radio-group {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(9, 12, 18, 0.48);
}

.contact-radio-group legend {
  padding: 0 8px;
}

.contact-radio-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 0;
}

.contact-radio-option input {
  width: 18px;
  min-height: 18px;
  accent-color: #df2a24;
  box-shadow: none;
}

.contact-helper {
  margin: -4px 0 0;
  color: rgba(246, 247, 251, 0.62);
  font-size: 0.95rem;
}

.contact-preview-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 209, 130, 0.86);
  font-size: 0.76rem;
}

.contact-preview-card h2 {
  margin-top: 0;
}

.contact-preview-content {
  display: grid;
  gap: 12px;
  color: rgba(246, 247, 251, 0.86);
}

.contact-preview-content p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalogue-page {
    padding-top: 104px;
  }

  .contact-page {
    padding-top: 104px;
  }

  .contact-form-card,
  .contact-preview-card {
    padding: 22px;
    border-radius: 24px;
  }
}



.performance-page {
  padding-top: 118px;
}

.performance-hero {
  padding: 34px 0 18px;
}

.performance-hero-inner,
.performance-layout {
  display: grid;
  gap: 24px;
}

.performance-section {
  padding: 24px 0 64px;
}

.performance-search-card,
.performance-selected-card {
  padding: 28px;
  border-radius: 28px;
}

.performance-search-head,
.performance-search-row,
.performance-selected-meta,
.performance-vehicle-header,
.performance-config-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.performance-search-row {
  align-items: end;
  margin: 18px 0 10px;
}

.performance-search-row label,
.performance-config-field {
  flex: 1;
  display: grid;
  gap: 8px;
}

.performance-search-row input,
.performance-config-field select {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(9, 12, 18, 0.48);
  color: #f6f7fb;
  padding: 0 16px;
}

.performance-search-row input:focus,
.performance-config-field select:focus {
  outline: none;
  border-color: rgba(223,42,36,0.42);
  box-shadow: 0 0 0 4px rgba(223,42,36,0.12);
}

.performance-results {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.performance-result-item,
.performance-option-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 12, 18, 0.48);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.performance-result-item {
  border-color: rgba(255, 74, 67, 0.35);
  background: linear-gradient(180deg, rgba(68, 11, 16, 0.8), rgba(44, 6, 12, 0.86));
}

.performance-result-item:hover,
.performance-option-row:hover,
.performance-option-row.is-selected {
  transform: translateY(-1px);
  border-color: rgba(255, 110, 102, 0.65);
  background: linear-gradient(180deg, rgba(82, 14, 20, 0.88), rgba(52, 8, 14, 0.92));
}

.performance-result-item span,
.performance-option-row span:first-child {
  display: grid;
  gap: 6px;
}

.performance-result-item small {
  color: var(--text-muted);
}

.performance-vehicle-shell {
  display: grid;
  grid-template-columns: minmax(260px, 460px) 1fr;
  gap: 28px;
  align-items: start;
}

.performance-vehicle-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 12, 18, 0.42);
  min-height: 280px;
}

.performance-vehicle-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.performance-selected-card h3,
.performance-search-head h2,
.performance-config-head h4 {
  margin: 0;
}

.performance-selected-meta {
  margin-top: 14px;
  color: rgba(246, 247, 251, 0.82);
  justify-content: flex-start;
}

.performance-header-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.performance-fullperf-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(9, 12, 18, 0.48);
  cursor: pointer;
}

.performance-fullperf-toggle input {
  accent-color: #df2a24;
}

.performance-total-box {
  display: grid;
  gap: 4px;
  text-align: right;
}

.performance-total-box span {
  color: rgba(246, 247, 251, 0.62);
  font-size: 0.92rem;
}

.performance-total-box strong {
  font-size: 1.4rem;
}

.performance-tabs-wrap {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.performance-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.performance-tab-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 12, 18, 0.48);
  color: rgba(246, 247, 251, 0.78);
  cursor: pointer;
}

.performance-tab-button.is-active {
  border-color: rgba(255, 110, 102, 0.65);
  background: linear-gradient(180deg, rgba(82, 14, 20, 0.88), rgba(52, 8, 14, 0.92));
  color: #fff;
}

.performance-tab-panel,
.performance-config-card,
.performance-config-list {
  display: grid;
  gap: 16px;
}

.performance-config-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 12, 18, 0.42);
}

.performance-config-summary {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.performance-config-summary span {
  color: rgba(246, 247, 251, 0.72);
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .catalogue-grid,
  .partnerships-grid,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .partnership-top-with-avatar {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .partnership-avatar {
    width: 64px;
    height: 64px;
  }

  .btn,
  .cart-link {
    min-height: 46px;
  }

  .vehicle-modal {
    padding: 10px;
  }

  .vehicle-gallery,
  .vehicle-gallery img {
    min-height: 280px;
  }

  .vehicle-modal-body {
    padding: 22px;
  }
}



.topbar-home {
  position: fixed;
  width: 100%;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.topbar-home.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.home-hero-soft {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 44px 0 56px;
  isolation: isolate;
}

.home-hero-soft::before {
  content: '';
  position: absolute;
  inset: -3%;
  background-image: url("/assets/img/showroom-sunrise-autos.png");
  background-size: cover;
  background-position: center 44%;
  filter: blur(7px) saturate(0.9) brightness(0.42);
  transform: scale(1.08);
  z-index: -2;
}

.home-hero-soft::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.5) 0%, rgba(5,7,13,0.14) 20%, rgba(5,7,13,0.32) 48%, rgba(5,7,13,0.72) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.28) 0%, rgba(6,8,13,0.18) 34%, rgba(7,14,34,0.2) 68%, rgba(12,37,88,0.3) 100%),
    radial-gradient(circle at 14% 26%, rgba(223,42,36,0.18), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(42,104,223,0.16), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.08), transparent 20%);
  z-index: -1;
}

.home-soft-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.9;
}

.home-soft-glow-left {
  width: 520px;
  height: 520px;
  left: -140px;
  top: 10%;
  background: radial-gradient(circle, rgba(120,21,18,0.22) 0%, rgba(120,21,18,0.06) 42%, transparent 74%);
}

.home-soft-glow-right {
  width: 620px;
  height: 620px;
  right: -180px;
  top: 6%;
  background: radial-gradient(circle, rgba(18,43,97,0.22) 0%, rgba(18,43,97,0.06) 42%, transparent 74%);
}

.home-hero-soft-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-soft-badge {
  width: min(100%, 980px);
  display: grid;
  gap: 10px;
  margin-top: 44px;
  margin-bottom: 18px;
  padding: 20px 28px 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(16,16,20,0.86), rgba(8,10,16,0.8));
  box-shadow: 0 22px 60px rgba(0,0,0,0.28), inset 0 0 24px rgba(255,69,61,0.04);
}

.hero-soft-badge-main {
  display: block;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #ff4a43;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 8px rgba(255,74,67,0.78),
    0 0 18px rgba(255,52,43,0.54),
    0 0 34px rgba(255,38,28,0.26);
}

.hero-soft-badge-sub {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
}

.hero-soft-panel {
  width: min(100%, 1120px);
  padding: 44px 36px 40px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(23,20,22,0.88), rgba(11,13,20,0.82));
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.hero-soft-logo {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,69,61,0.18), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 28px rgba(0,0,0,0.22);
}

.hero-soft-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25) translateY(6px);
  transform-origin: center;
}

.hero-soft-logo span {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff5f4;
}

.hero-soft-eyebrow {
  margin-bottom: 10px;
}

.home-hero-soft h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  max-width: 900px;
  margin: 0 auto 18px;
  letter-spacing: -0.04em;
}

.hero-soft-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(244,244,247,0.78);
  font-size: 1.08rem;
}

.hero-soft-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-soft-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
}

.hero-actions-center {
  justify-content: center;
}

.hero-actions-soft {
  margin-top: 30px;
}

.scroll-indicator-soft {
  margin-top: 44px;
}

.scroll-indicator {
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 42px;
  margin: 12px auto 0;
  background: linear-gradient(180deg, rgba(255,69,61,0.7), transparent);
}

.compact-home-head {
  text-align: left;
  max-width: none;
}

@media (max-width: 820px) {
  .topbar-home .menu {
    gap: 18px;
  }

  .home-hero-soft {
    padding-top: 24px;
  }

  .hero-soft-badge {
    width: min(100%, 100%);
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero-soft-badge-main {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .hero-soft-badge-sub {
    letter-spacing: 0.2em;
    font-size: 0.72rem;
  }

  .hero-soft-panel {
    width: min(100%, 100%);
    padding: 26px 18px 24px;
    border-radius: 24px;
  }

  .hero-soft-chips {
    gap: 10px;
  }

  .hero-soft-chips span {
    width: 100%;
  }
}


.hero-soft-panel.hero-benny-panel {
  width: min(100%, 1120px);
  max-width: 1120px;
  padding: 28px 42px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(23,20,22,0.92), rgba(11,13,20,0.88));
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.hero-benny-title {
  max-width: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(1.85rem, 3vw, 2.95rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  white-space: nowrap;
}

.hero-benny-title span {
  color: #ff4a43;
  text-shadow: 0 0 10px rgba(255,74,67,0.35);
}

.hero-benny-line {
  width: min(340px, 46%);
  height: 2px;
  margin: 14px auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,74,67,0.92), transparent);
  box-shadow: 0 0 18px rgba(255,74,67,0.28);
}

.hero-benny-text {
  max-width: 720px;
  font-size: 0.98rem;
  color: rgba(244,244,247,0.72);
}

.hero-status-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.status-pill {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.86);
}

.status-pill-wide {
  min-width: 210px;
}

.status-pill-label {
  color: rgba(255,255,255,0.7);
}

.status-pill strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b5b8c0;
  box-shadow: 0 0 10px rgba(181,184,192,0.3);
}

.status-pill.is-open {
  border-color: rgba(0, 200, 83, 0.42);
  box-shadow: 0 0 18px rgba(0, 200, 83, 0.15);
}

.status-pill.is-open .status-dot {
  background: #00c853;
  box-shadow: 0 0 12px rgba(0, 200, 83, 0.65);
}

.status-pill.is-off {
  border-color: rgba(255, 74, 67, 0.42);
  box-shadow: 0 0 18px rgba(255, 74, 67, 0.14);
}

.status-pill.is-off .status-dot {
  background: #ff4a43;
  box-shadow: 0 0 12px rgba(255, 74, 67, 0.58);
}

.hero-actions-compact {
  margin-top: 16px;
}

@media (max-width: 820px) {
  .hero-soft-panel.hero-benny-panel {
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .hero-benny-title {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .hero-benny-line {
    width: 90%;
  }

  .hero-status-row {
    flex-direction: column;
    align-items: stretch;
  }

  .status-pill,
  .status-pill-wide {
    width: 100%;
    min-width: 0;
  }
}


.hero-benny-title {
  text-wrap: balance;
}

.hero-soft-panel.hero-benny-panel .hero-soft-logo {
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
}

.hero-soft-panel.hero-benny-panel .hero-soft-eyebrow {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.hero-status-row .status-pill strong {
  font-size: 1rem;
}

@media (max-width: 820px) {
  .hero-soft-panel.hero-benny-panel {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px 22px;
  }

  .hero-benny-title {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}


.hero-soft-badge-compact {
  max-width: 980px;
  margin: 0 auto 20px;
  padding: 22px 28px 18px;
  border-radius: 28px;
}

.hero-soft-badge-compact .hero-soft-badge-main {
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hero-soft-badge-compact .hero-soft-badge-sub {
  margin-top: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
}

.hero-benny-panel-compact {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 34px 28px;
  border-radius: 30px;
}

.hero-benny-panel-compact .hero-soft-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
}

.hero-benny-panel-compact .hero-soft-eyebrow {
  margin-bottom: 14px;
  font-size: 0.88rem;
  letter-spacing: 0.28em;
}

.hero-benny-panel-compact .hero-benny-title {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-benny-panel-compact .hero-benny-title span {
  font-size: 0.8em;
  margin: 0 0.15em;
}

.hero-benny-panel-compact .hero-benny-line {
  width: min(320px, 45%);
  margin: 0 auto 18px;
}

.hero-benny-panel-compact .hero-benny-text {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-benny-panel-compact .hero-status-row {
  gap: 12px;
  margin: 0 auto 16px;
}

.hero-benny-panel-compact .status-pill {
  min-width: 0;
  padding: 12px 18px;
  border-radius: 999px;
}

.hero-benny-panel-compact .status-pill strong {
  font-size: 1.05rem;
}

.hero-benny-panel-compact .status-pill-label {
  font-size: 0.98rem;
}

.status-pill.is-unknown {
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}

.status-pill.is-unknown .status-dot {
  background: #9ca3af;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .hero-soft-badge-compact,
  .hero-benny-panel-compact {
    max-width: 92%;
  }

  .hero-soft-badge-compact .hero-soft-badge-main {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero-benny-panel-compact {
    padding: 24px 18px 22px;
  }

  .hero-benny-panel-compact .hero-benny-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-benny-panel-compact .hero-benny-title span {
    display: inline-block;
    margin: 0 0.08em;
  }
}


/* --- HERO COMPACT WIDE FIX --- */
.hero-soft-panel,
.hero-benny-panel{
    max-width:1500px;
    width:92%;
    padding:26px 70px;
    margin:auto;
}

.hero-benny-title{
    font-size:44px !important;
    line-height:1.1;
}

.hero-benny-text{
    font-size:14px;
    max-width:720px;
}

.status-pill{
    padding:6px 14px;
    font-size:13px;
}

.hero-actions .btn{
    padding:10px 20px;
    font-size:14px;
}


.reviews-summary {
  margin-bottom: 22px;
}

.reviews-summary-card,
.review-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 30%),
    linear-gradient(160deg, rgba(20,24,36,0.96), rgba(9,12,19,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.05);
}

.reviews-summary-card {
  padding: 32px;
}

.reviews-summary-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 6px;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.reviews-summary-score span {
  font-size: 1.4rem;
  color: var(--muted);
}

.reviews-summary-stars {
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: #fff0b3;
}

.reviews-summary-text {
  margin-top: 14px;
  max-width: 760px;
  color: rgba(244,244,247,0.8);
}

.reviews-summary-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.reviews-summary-metrics > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.reviews-summary-metrics strong {
  display: block;
  font-size: 1.8rem;
}

.reviews-summary-metrics span {
  color: var(--muted);
}

.reviews-slider {
  overflow: hidden;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 22px;
  will-change: transform;
}

.reviews-track.is-animated {
  transition: transform 0.75s ease;
}

.reviews-track-static {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
}

.review-card-top,
.review-meta-row,
.review-person {
  display: flex;
  align-items: center;
}

.review-card-top,
.review-meta-row {
  justify-content: space-between;
  gap: 16px;
}

.review-person {
  gap: 12px;
  min-width: 0;
}

.review-person h3 {
  margin: 8px 0 0;
  font-size: 1.15rem;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.review-avatar-small {
  width: 36px;
  height: 36px;
}

.review-rating-badge {
  text-align: right;
}

.review-rating-badge strong {
  display: block;
  font-size: 1.1rem;
}

.review-rating-badge span {
  color: #fff0b3;
  letter-spacing: 0.08em;
}

.review-comment {
  margin: 0;
  color: rgba(244,244,247,0.86);
  line-height: 1.7;
}

.review-meta-row {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .reviews-track-static {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .reviews-summary-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-track-static {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: 100%;
  }

  .review-card-top,
  .review-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Background showroom refinement */
.hero-soft-badge,
.hero-soft-panel.hero-benny-panel {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-soft-badge {
  background: linear-gradient(180deg, rgba(10,12,18,0.78), rgba(8,10,16,0.68));
}

.hero-soft-panel.hero-benny-panel {
  background: linear-gradient(180deg, rgba(18,18,22,0.78), rgba(10,12,18,0.72));
}

@media (max-width: 768px) {
  .home-hero-soft::before {
    background-position: center center;
    filter: blur(6px) saturate(0.9) brightness(0.36);
    transform: scale(1.12);
  }
}


/* showroom banner refined */
.hero-showroom-wrap{
  position: relative;
  width: min(100%, 1360px);
  margin: 26px auto 28px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 90px rgba(0,0,0,0.42);
  isolation: isolate;
}

.hero-showroom-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(223,42,36,0.26) 0%, transparent 28%),
    linear-gradient(270deg, rgba(42,104,223,0.24) 0%, transparent 28%),
    linear-gradient(180deg, rgba(5,7,13,0.12) 0%, transparent 34%, rgba(5,7,13,0.22) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-showroom-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 90px rgba(0,0,0,0.12);
  pointer-events: none;
  z-index: 2;
}

.hero-showroom-img{
  width: 100%;
  aspect-ratio: 21 / 8;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
  border-radius: 28px;
  filter: contrast(1.05) saturate(1.04) brightness(0.98);
  transform: scale(1.01);
}

/* remove blurred background */
.home-hero-soft::before{background:none !important;filter:none !important}

/* scroll reveal */
.reveal-on-scroll{
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1{ transition-delay: 0.08s; }
.reveal-delay-2{ transition-delay: 0.16s; }
.reveal-delay-3{ transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce){
  .reveal-on-scroll,
  .reveal-on-scroll.is-visible{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 900px){
  .hero-showroom-wrap{
    width: min(100%, 100%);
    border-radius: 22px;
  }

  .hero-showroom-img{
    aspect-ratio: 16 / 8;
    min-height: 280px;
    border-radius: 22px;
  }
}

/* Home hero redesign: fixed background + floating panel */
body[data-page="home"] {
  background: #05070d;
}

.home-hero-soft {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: clip;
}

.home-hero-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/showroom-sunrise-autos.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: none !important;
  transform: none !important;
  z-index: -3;
}

.home-hero-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.60) 0%, rgba(5,7,13,0.28) 30%, rgba(5,7,13,0.30) 55%, rgba(5,7,13,0.82) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.22) 0%, rgba(6,8,13,0.14) 36%, rgba(7,14,34,0.18) 70%, rgba(12,37,88,0.24) 100%);
  z-index: -2;
}

.home-soft-glow {
  display: none;
}

.home-hero-soft-inner {
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 180px;
  align-items: center;
  justify-content: center;
}

.hero-panel-floating {
  width: min(100%, 760px) !important;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,13,18,0.84), rgba(7,9,15,0.78)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
}

.home-content-stack {
  position: relative;
  z-index: 3;
  margin-top: -110px;
  padding-top: 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  background: linear-gradient(180deg, rgba(8,10,16,0.98), rgba(8,10,16,1));
  box-shadow: 0 -24px 70px rgba(0,0,0,0.28);
}

.home-content-stack .home-selection-section:first-child {
  padding-top: 150px;
}

.home-content-stack .home-selection-section {
  position: relative;
  z-index: 1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  filter: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }

@media (max-width: 900px) {
  .home-hero-soft::before {
    background-attachment: scroll;
  }

  .home-hero-soft-inner {
    padding-top: 104px;
    padding-bottom: 140px;
  }

  .hero-panel-floating {
    width: min(100%, 100%) !important;
    border-radius: 24px;
  }

  .home-content-stack {
    margin-top: -72px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .home-content-stack .home-selection-section:first-child {
    padding-top: 110px;
  }
}


/* === Home refresh: fixed navbar + showroom background + cinematic scroll === */
.topbar-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  background: rgba(6, 8, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-home.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

body[data-page="home"] {
  background: #05070d;
}

body[data-page="home"] main {
  overflow: clip;
}


.home-hero-soft {
  min-height: 100vh;
  padding: 0;
  overflow: clip;
}

.home-hero-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/showroom-sunrise-autos.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: none !important;
  transform: none !important;
  z-index: -3;
}

.home-hero-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.52) 0%, rgba(5,7,13,0.22) 28%, rgba(5,7,13,0.30) 56%, rgba(5,7,13,0.88) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.18) 0%, rgba(6,8,13,0.10) 38%, rgba(7,14,34,0.16) 70%, rgba(12,37,88,0.22) 100%);
  z-index: -2;
}

.home-soft-glow {
  display: none;
}

.home-hero-soft-inner {
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 190px;
  align-items: center;
  justify-content: center;
}

.hero-panel-floating {
  width: min(100%, 760px) !important;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12,13,18,0.82), rgba(7,9,15,0.76)) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
  will-change: transform, opacity;
}

.home-content-stack {
  position: relative;
  z-index: 3;
  margin-top: -130px;
  padding-top: 0;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  background: linear-gradient(180deg, rgba(8,10,16,0.98), rgba(8,10,16,1));
  box-shadow: 0 -28px 80px rgba(0,0,0,0.32);
}

.home-content-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.home-content-stack .home-selection-section:first-child {
  padding-top: 160px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  filter: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

@media (max-width: 900px) {
  .home-hero-soft::before {
    background-attachment: scroll;
  }

  .home-hero-soft-inner {
    padding-top: 104px;
    padding-bottom: 140px;
  }

  .hero-panel-floating {
    width: min(100%, 100%) !important;
    border-radius: 24px;
  }

  .home-content-stack {
    margin-top: -78px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .home-content-stack .home-selection-section:first-child {
    padding-top: 112px;
  }
}


/* === FINAL FIX: fixed showroom background + cover on scroll === */
body[data-page="home"] {
  background: #05070d;
}

body[data-page="home"]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/assets/img/showroom-sunrise-autos.png") center center / cover no-repeat;
  z-index: -10;
  pointer-events: none;
}

body[data-page="home"]::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,13,0.52) 0%, rgba(5,7,13,0.22) 28%, rgba(5,7,13,0.30) 56%, rgba(5,7,13,0.88) 100%),
    linear-gradient(90deg, rgba(120,20,20,0.18) 0%, rgba(6,8,13,0.10) 38%, rgba(7,14,34,0.16) 70%, rgba(12,37,88,0.22) 100%);
  z-index: -9;
  pointer-events: none;
}

body[data-page="home"] main {
  position: relative;
  z-index: 1;
}

.home-hero-soft {
  position: relative;
  min-height: 100vh;
  background: transparent !important;
}

.home-hero-soft::before,
.home-hero-soft::after {
  background: none !important;
}

.home-hero-soft-inner {
  min-height: 100vh;
  padding-top: 118px;
  padding-bottom: 220px;
}

.hero-panel-floating {
  position: relative;
  z-index: 3;
}

.home-content-stack {
  position: relative;
  z-index: 4;
  margin-top: -150px;
  border-top-left-radius: 38px;
  border-top-right-radius: 38px;
  background: linear-gradient(180deg, rgba(8,10,16,0.985), rgba(8,10,16,1));
  box-shadow: 0 -28px 80px rgba(0,0,0,0.34);
}

.home-content-stack .home-selection-section:first-child {
  padding-top: 150px;
}

@media (max-width: 900px) {
  body[data-page="home"]::before,
  body[data-page="home"]::after {
    position: absolute;
  }

  .home-content-stack {
    margin-top: -82px;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }

  .home-content-stack .home-selection-section:first-child {
    padding-top: 110px;
  }
}


.menu a.is-current,
.menu a.is-current-home,
body[data-page="passvip"] .menu a[href="/passvip"],
body[data-page="catalogue"] .menu a[href="/catalogue"],
body[data-page="panier"] .menu a[href="/panier"],
body[data-page="home"] .menu a[href="/"] {
  color: #ffffff;
}

.passvip-page {
  min-height: calc(100vh - 84px);
}

.passvip-hero {
  padding: 88px 0 8px;
}

.passvip-hero-inner {
  text-align: center;
}

.passvip-hero .eyebrow {
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d7a06a;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.passvip-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 840px;
  margin: 0 auto;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.passvip-spacer {
  height: 42px;
}

.passvip-section {
  padding: 0 0 92px;
}

.vip-carousel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 24px;
}

.vip-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  will-change: transform, filter;
  perspective: 1800px;
  transform-style: preserve-3d;
}

.vip-card {
  will-change: transform, opacity, filter, box-shadow;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.vip-cards-wrap.vip-wrap-next {
  animation: vipWrapDriftNext 1.08s cubic-bezier(0.2, 0.85, 0.22, 1);
}

.vip-cards-wrap.vip-wrap-prev {
  animation: vipWrapDriftPrev 1.08s cubic-bezier(0.2, 0.85, 0.22, 1);
}

@keyframes vipWrapDriftNext {
  0% { transform: translate3d(0, 0, 0) rotateX(0deg); }
  28% { transform: translate3d(-10px, 0, 0) rotateX(0.5deg); }
  52% { transform: translate3d(-18px, -3px, 0) rotateX(1deg); }
  100% { transform: translate3d(0, 0, 0) rotateX(0deg); }
}

@keyframes vipWrapDriftPrev {
  0% { transform: translate3d(0, 0, 0) rotateX(0deg); }
  28% { transform: translate3d(10px, 0, 0) rotateX(0.5deg); }
  52% { transform: translate3d(18px, -3px, 0) rotateX(1deg); }
  100% { transform: translate3d(0, 0, 0) rotateX(0deg); }
}

.vip-card.vip-anim-left-out {
  animation: vipLeftOut 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-center-to-left {
  animation: vipCenterToLeft 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-right-to-center {
  animation: vipRightToCenter 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-card.vip-anim-right-out {
  animation: vipRightOut 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-center-to-right {
  animation: vipCenterToRight 0.52s cubic-bezier(0.45, 0.05, 0.2, 1) forwards;
}

.vip-card.vip-anim-left-to-center {
  animation: vipLeftToCenter 0.52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vip-card.vip-anim-left-settle {
  animation: vipLeftSettle 0.56s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.vip-card.vip-anim-center-settle {
  animation: vipCenterSettle 0.56s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.vip-card.vip-anim-right-settle {
  animation: vipRightSettle 0.56s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

@keyframes vipLeftOut {
  0% { transform: perspective(1800px) translate3d(0, 10px, 0) rotateY(12deg) scale(0.96); opacity: 0.96; filter: blur(0px); }
  45% { transform: perspective(1800px) translate3d(-26px, 8px, -70px) rotateY(28deg) scale(0.93); opacity: 0.9; }
  100% { transform: perspective(1800px) translate3d(-56px, 12px, -120px) rotateY(40deg) scale(0.88); opacity: 0.72; filter: blur(1.2px); }
}

@keyframes vipCenterToLeft {
  0% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
  34% { transform: perspective(1800px) translate3d(-10px, -2px, -10px) rotateY(7deg) scale(1); opacity: 0.98; }
  100% { transform: perspective(1800px) translate3d(-82px, 10px, -85px) rotateY(20deg) scale(0.945); opacity: 0.88; }
}

@keyframes vipRightToCenter {
  0% { transform: perspective(1800px) translate3d(82px, 12px, -130px) rotateY(-32deg) scale(0.88); opacity: 0.74; filter: blur(1px); }
  55% { transform: perspective(1800px) translate3d(18px, 2px, -12px) rotateY(-8deg) scale(0.99); opacity: 0.98; filter: blur(0px); }
  100% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
}

@keyframes vipRightOut {
  0% { transform: perspective(1800px) translate3d(0, 10px, 0) rotateY(-12deg) scale(0.96); opacity: 0.96; filter: blur(0px); }
  45% { transform: perspective(1800px) translate3d(26px, 8px, -70px) rotateY(-28deg) scale(0.93); opacity: 0.9; }
  100% { transform: perspective(1800px) translate3d(56px, 12px, -120px) rotateY(-40deg) scale(0.88); opacity: 0.72; filter: blur(1.2px); }
}

@keyframes vipCenterToRight {
  0% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
  34% { transform: perspective(1800px) translate3d(10px, -2px, -10px) rotateY(-7deg) scale(1); opacity: 0.98; }
  100% { transform: perspective(1800px) translate3d(82px, 10px, -85px) rotateY(-20deg) scale(0.945); opacity: 0.88; }
}

@keyframes vipLeftToCenter {
  0% { transform: perspective(1800px) translate3d(-82px, 12px, -130px) rotateY(32deg) scale(0.88); opacity: 0.74; filter: blur(1px); }
  55% { transform: perspective(1800px) translate3d(-18px, 2px, -12px) rotateY(8deg) scale(0.99); opacity: 0.98; filter: blur(0px); }
  100% { transform: perspective(1800px) translate3d(0, 0, 0) rotateY(0deg) scale(1.02); opacity: 1; }
}

@keyframes vipLeftSettle {
  0% { transform: perspective(1800px) translate3d(-30px, 8px, -40px) rotateY(20deg) scale(0.92); opacity: 0.84; }
  70% { transform: perspective(1800px) translate3d(2px, 8px, 0) rotateY(8deg) scale(0.968); opacity: 0.96; }
  100% { transform: perspective(1800px) rotateY(10deg) scale(0.96) translateY(10px); opacity: 0.96; }
}

@keyframes vipCenterSettle {
  0% { transform: perspective(1800px) translate3d(0, 0, -8px) rotateY(-6deg) scale(0.985); opacity: 0.94; }
  62% { transform: perspective(1800px) translate3d(0, -4px, 0) rotateY(1deg) scale(1.03); opacity: 1; }
  100% { transform: scale(1.02) rotateY(0deg); opacity: 1; }
}

@keyframes vipRightSettle {
  0% { transform: perspective(1800px) translate3d(30px, 8px, -40px) rotateY(-20deg) scale(0.92); opacity: 0.84; }
  70% { transform: perspective(1800px) translate3d(-2px, 8px, 0) rotateY(-8deg) scale(0.968); opacity: 0.96; }
  100% { transform: perspective(1800px) rotateY(-10deg) scale(0.96) translateY(10px); opacity: 0.96; }
}

.vip-card {
  position: relative;
  min-height: 560px;
  padding: 36px 36px 38px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.03), transparent 44%),
    linear-gradient(180deg, rgba(7,10,16,0.94), rgba(3,6,12,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 22px 50px rgba(0,0,0,0.22);
  transition: transform 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), opacity 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), border-color 0.55s cubic-bezier(0.2, 0.85, 0.2, 1), filter 0.55s cubic-bezier(0.2, 0.85, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.vip-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.08) 34%, transparent 52%);
  transform: translateX(-135%) skewX(-18deg);
  opacity: 0;
}

.vip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 28%, transparent 72%, rgba(255,255,255,0.02));
  opacity: 0.8;
}

.vip-render-enter::before {
  animation: vipShineSweep 0.7s ease-out;
}

@keyframes vipShineSweep {
  0% { transform: translateX(-135%) skewX(-18deg); opacity: 0; }
  24% { opacity: 0.22; }
  100% { transform: translateX(135%) skewX(-18deg); opacity: 0; }
}

.vip-side {
  opacity: 0.96;
  filter: saturate(0.92);
  transform: scale(0.96) translateY(10px);
}

.vip-left {
  transform: perspective(1800px) rotateY(10deg) scale(0.96) translateY(10px);
}

.vip-right {
  transform: perspective(1800px) rotateY(-10deg) scale(0.96) translateY(10px);
}

.vip-center {
  min-height: 580px;
  transform: perspective(1800px) translateZ(0) scale(1.02);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.05), transparent 46%),
    linear-gradient(180deg, rgba(11,15,24,0.96), rgba(4,7,13,0.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 66px rgba(0,0,0,0.28);
}

.vip-card[data-theme="bronze"] {
  border-color: rgba(176, 117, 58, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(176, 117, 58, 0.08);
}

.vip-card[data-theme="argent"] {
  border-color: rgba(175, 180, 190, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(175, 180, 190, 0.06);
}

.vip-card[data-theme="or"] {
  border-color: rgba(210, 174, 40, 0.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 50px rgba(0,0,0,0.22), 0 0 0 1px rgba(210, 174, 40, 0.08);
}

.vip-center[data-theme="bronze"],
.vip-center[data-theme="argent"],
.vip-center[data-theme="or"] {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 66px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.03);
}

.vip-center[data-theme="bronze"] {
  border-color: rgba(176, 117, 58, 0.58);
}

.vip-center[data-theme="argent"] {
  border-color: rgba(195, 200, 210, 0.52);
}

.vip-center[data-theme="or"] {
  border-color: rgba(222, 190, 72, 0.56);
}

.vip-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  color: #ffffff;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.vip-arrow:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.vip-arrow:disabled {
  opacity: 0.55;
  cursor: default;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  align-self: flex-start;
}

.vip-badge-bronze {
  color: #d8a16a;
  background: rgba(88, 54, 28, 0.18);
  border-color: rgba(176, 117, 58, 0.52);
}

.vip-badge-argent {
  color: #f0f0f0;
  background: rgba(122, 122, 128, 0.16);
  border-color: rgba(175, 180, 190, 0.42);
}

.vip-badge-or {
  color: #f7d86a;
  background: rgba(112, 91, 15, 0.16);
  border-color: rgba(210, 174, 40, 0.56);
}

.vip-card-text {
  margin-top: 24px;
  color: rgba(244,244,247,0.9);
  font-size: 1.02rem;
  line-height: 1.7;
  min-height: 136px;
}

.vip-price {
  margin-top: 28px;
  font-size: clamp(1.92rem, 2.2vw, 3.05rem);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
  font-weight: 700;
}

.vip-side .vip-price {
  font-size: clamp(1.72rem, 1.95vw, 2.72rem);
}

.vip-center .vip-price {
  font-size: clamp(2.02rem, 2.35vw, 3.18rem);
}

.vip-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  margin: 28px 0 20px;
}

.vip-perks {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 0;
  margin-bottom: 26px;
}

.vip-perks li {
  position: relative;
  padding-left: 26px;
  color: rgba(244,244,247,0.92);
  line-height: 1.5;
}

.vip-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8d87;
  font-weight: 700;
}

.vip-card-btn {
  width: 100%;
  margin-top: auto;
  min-height: 56px;
  color: #ffffff;
}

.vip-card-btn[data-theme="bronze"] {
  background: linear-gradient(135deg, #a4693f, #6f4324);
  box-shadow: 0 18px 32px rgba(164, 105, 63, 0.26);
}

.vip-card-btn[data-theme="argent"] {
  background: linear-gradient(135deg, #d6d9df, #9ca3ad);
  color: #13161d;
  box-shadow: 0 18px 32px rgba(168, 175, 186, 0.28);
}

.vip-card-btn[data-theme="or"] {
  background: linear-gradient(135deg, #e1c15a, #b48a16);
  color: #16120a;
  box-shadow: 0 18px 32px rgba(210, 174, 40, 0.3);
}

.vip-render-enter .vip-badge,
.vip-render-enter .vip-card-text,
.vip-render-enter .vip-price,
.vip-render-enter .vip-divider,
.vip-render-enter .vip-perks li,
.vip-render-enter .vip-card-btn {
  opacity: 0;
  transform: translateY(12px);
  animation: vipContentRise 0.6s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.vip-render-enter .vip-badge { animation-delay: 0.04s; }
.vip-render-enter .vip-card-text { animation-delay: 0.1s; }
.vip-render-enter .vip-price { animation-delay: 0.16s; }
.vip-render-enter .vip-divider { animation-delay: 0.22s; }
.vip-render-enter .vip-perks li:nth-child(1) { animation-delay: 0.28s; }
.vip-render-enter .vip-perks li:nth-child(2) { animation-delay: 0.34s; }
.vip-render-enter .vip-perks li:nth-child(3) { animation-delay: 0.4s; }
.vip-render-enter .vip-card-btn { animation-delay: 0.46s; }

@keyframes vipContentRise {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.vip-center {
  padding-bottom: 48px;
}

.vip-card-btn.is-added {
  filter: brightness(1.06);
}
.vip-cart-card .vehicle-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vip-cart-image {
  display: grid;
  place-items: center;
  min-height: 160px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.vip-cart-badge {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vip-cart-specs {
  margin-bottom: 0;
}

.vip-cart-perks {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 4px;
  padding: 0;
}

.vip-cart-perks li {
  position: relative;
  padding-left: 22px;
  color: rgba(244,244,247,0.88);
}

.vip-cart-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8d87;
  font-weight: 700;
}

.vip-common-box {
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  padding: 28px;
}

.vip-common-box h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  margin-bottom: 22px;
}

.vip-common-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.vip-common-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.vip-common-grid h3 {
  margin-bottom: 4px;
}

.vip-common-grid p {
  color: var(--muted);
}

.vip-common-icon {
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 1120px) {
  .vip-carousel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vip-arrow {
    display: none;
  }

  .vip-cards-wrap {
    grid-template-columns: 1fr;
  }

  .vip-side,
  .vip-center {
    transform: none;
    opacity: 1;
    min-height: auto;
  }

  .vip-common-grid {
    grid-template-columns: 1fr;
  }
}


.catalogue-page {
  padding-top: 118px;
}


.contact-page {
  padding-top: 118px;
}

.contact-hero {
  padding: 28px 0 20px;
}

.contact-hero-inner {
  max-width: 780px;
}

.contact-hero-text {
  max-width: 720px;
  color: rgba(246, 247, 251, 0.78);
}

.contact-section {
  padding: 8px 0 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-preview-card {
  padding: 28px;
  border-radius: 30px;
  color-scheme: dark;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label,
.contact-radio-group {
  display: grid;
  gap: 10px;
}

.contact-form label > span,
.contact-radio-group legend {
  font-weight: 600;
  color: #f7f7fb;
}

.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(23,27,39,0.96), rgba(16,20,30,0.96));
  color: #f7f7fb;
  padding: 0 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-form textarea {
  min-height: 180px;
  padding: 16px 18px;
  resize: vertical;
}

.contact-form select {
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: auto;
}

.contact-form select option,
.contact-form select optgroup {
  background: #121722;
  color: #f7f7fb;
}

.contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(223,42,36,0.42);
  box-shadow: 0 0 0 4px rgba(223,42,36,0.12);
}

.contact-radio-group {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 18px;
  background: rgba(9, 12, 18, 0.48);
}

.contact-radio-group legend {
  padding: 0 8px;
}

.contact-radio-option {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 0;
}

.contact-radio-option input {
  width: 18px;
  min-height: 18px;
  accent-color: #df2a24;
  box-shadow: none;
}

.contact-helper {
  margin: -4px 0 0;
  color: rgba(246, 247, 251, 0.62);
  font-size: 0.95rem;
}

.contact-preview-eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 209, 130, 0.86);
  font-size: 0.76rem;
}

.contact-preview-card h2 {
  margin-top: 0;
}

.contact-preview-content {
  display: grid;
  gap: 12px;
  color: rgba(246, 247, 251, 0.86);
}

.contact-preview-content p {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .catalogue-page {
    padding-top: 104px;
  }

  .contact-page {
    padding-top: 104px;
  }

  .contact-form-card,
  .contact-preview-card {
    padding: 22px;
    border-radius: 24px;
  }
}


.performance-page {
  padding-top: 118px;
}

.performance-hero {
  padding: 34px 0 18px;
}

.performance-hero-inner,
.performance-layout {
  display: grid;
  gap: 24px;
}



@media (max-width: 980px) {
  .performance-vehicle-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .performance-search-head,
  .performance-search-row,
  .performance-selected-meta,
  .performance-vehicle-header,
  .performance-config-head {
    flex-direction: column;
    align-items: stretch;
  }

  .performance-header-actions,
  .performance-config-summary,
  .performance-total-box {
    justify-items: start;
    text-align: left;
  }

  .performance-option-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .performance-page {
    padding-top: 104px;
  }

  .performance-search-card,
  .performance-selected-card {
    padding: 22px;
    border-radius: 24px;
  }

  .performance-vehicle-media,
  .performance-vehicle-media img {
    min-height: 220px;
  }

  .performance-tabs {
    gap: 10px;
  }
}


.performance-warning-box {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 92, 92, 0.35);
  background: rgba(128, 10, 18, 0.18);
  color: rgba(255, 245, 245, 0.92);
}

.performance-warning-box p {
  margin: 0;
}

.performance-warning-box p + p {
  margin-top: 0.55rem;
}

.performance-warning-box strong {
  color: #ffb3b3;
}

/* Pass VIP - animation simplifiée et plus fluide */
.vip-cards-wrap {
  position: relative;
}

.vip-cards-wrap.is-transitioning .vip-card {
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.36s ease,
    filter 0.36s ease,
    box-shadow 0.36s ease;
}

.vip-cards-wrap.vip-slide-next .vip-card,
.vip-cards-wrap.vip-slide-prev .vip-card {
  opacity: 0.7;
  filter: blur(0.6px) saturate(0.96);
}

.vip-cards-wrap.vip-slide-next .vip-card {
  transform: translateX(-18px) translateY(4px);
}

.vip-cards-wrap.vip-slide-prev .vip-card {
  transform: translateX(18px) translateY(4px);
}

.vip-cards-wrap.vip-swap-in .vip-card {
  opacity: 1;
  filter: none;
}

.vip-cards-wrap.vip-swap-in.vip-slide-next .vip-card {
  transform: translateX(18px);
  animation: vipCardsSettleFromRight 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vip-cards-wrap.vip-swap-in.vip-slide-prev .vip-card {
  transform: translateX(-18px);
  animation: vipCardsSettleFromLeft 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes vipCardsSettleFromRight {
  from {
    transform: translateX(18px);
    opacity: 0.82;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes vipCardsSettleFromLeft {
  from {
    transform: translateX(-18px);
    opacity: 0.82;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.vip-render-enter::before {
  animation: vipShineSweep 0.45s ease-out;
}

.vip-render-enter .vip-badge,
.vip-render-enter .vip-card-text,
.vip-render-enter .vip-price,
.vip-render-enter .vip-divider,
.vip-render-enter .vip-perks li,
.vip-render-enter .vip-card-btn {
  animation-duration: 0.36s;
}

.vip-render-enter .vip-badge { animation-delay: 0.02s; }
.vip-render-enter .vip-card-text { animation-delay: 0.05s; }
.vip-render-enter .vip-price { animation-delay: 0.08s; }
.vip-render-enter .vip-divider { animation-delay: 0.11s; }
.vip-render-enter .vip-perks li:nth-child(1) { animation-delay: 0.14s; }
.vip-render-enter .vip-perks li:nth-child(2) { animation-delay: 0.17s; }
.vip-render-enter .vip-perks li:nth-child(3) { animation-delay: 0.2s; }
.vip-render-enter .vip-card-btn { animation-delay: 0.23s; }

@media (prefers-reduced-motion: reduce) {
  .vip-cards-wrap.is-transitioning .vip-card,
  .vip-cards-wrap.vip-swap-in.vip-slide-next .vip-card,
  .vip-cards-wrap.vip-swap-in.vip-slide-prev .vip-card,
  .vip-render-enter::before,
  .vip-render-enter .vip-badge,
  .vip-render-enter .vip-card-text,
  .vip-render-enter .vip-price,
  .vip-render-enter .vip-divider,
  .vip-render-enter .vip-perks li,
  .vip-render-enter .vip-card-btn {
    animation: none !important;
    transition: none !important;
  }
}


/* Pass VIP - grille statique simple */
.vip-static-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.vip-static-grid .vip-card-static {
  min-height: 580px;
  padding-bottom: 38px;
  transform: none;
  opacity: 1;
  filter: none;
}

.vip-static-grid .vip-card-static .vip-card-text {
  min-height: 136px;
}

.vip-static-grid .vip-card-static .vip-perks {
  margin-bottom: 28px;
}

.vip-static-grid .vip-card-static:hover {
  transform: translateY(-8px);
}

.vip-static-grid .vip-card-static[data-theme="bronze"]:hover {
  border-color: rgba(198, 131, 67, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 28px 56px rgba(0,0,0,0.28),
    0 0 0 1px rgba(176, 117, 58, 0.14),
    0 0 34px rgba(176, 117, 58, 0.22);
}

.vip-static-grid .vip-card-static[data-theme="argent"]:hover {
  border-color: rgba(210, 215, 225, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 28px 56px rgba(0,0,0,0.28),
    0 0 0 1px rgba(175, 180, 190, 0.12),
    0 0 34px rgba(198, 204, 214, 0.22);
}

.vip-static-grid .vip-card-static[data-theme="or"]:hover {
  border-color: rgba(232, 196, 76, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 28px 56px rgba(0,0,0,0.28),
    0 0 0 1px rgba(210, 174, 40, 0.14),
    0 0 34px rgba(210, 174, 40, 0.24);
}

.vip-static-grid .vip-card-static[data-theme="bronze"]:hover::before {
  opacity: 1;
  background: linear-gradient(120deg, transparent 18%, rgba(216,161,106,0.18) 34%, transparent 52%);
  animation: vipShineSweep 0.9s ease-out;
}

.vip-static-grid .vip-card-static[data-theme="argent"]:hover::before {
  opacity: 1;
  background: linear-gradient(120deg, transparent 18%, rgba(236,238,243,0.18) 34%, transparent 52%);
  animation: vipShineSweep 0.9s ease-out;
}

.vip-static-grid .vip-card-static[data-theme="or"]:hover::before {
  opacity: 1;
  background: linear-gradient(120deg, transparent 18%, rgba(247,216,106,0.2) 34%, transparent 52%);
  animation: vipShineSweep 0.9s ease-out;
}

@media (max-width: 1120px) {
  .vip-static-grid {
    grid-template-columns: 1fr;
  }

  .vip-static-grid .vip-card-static {
    min-height: auto;
  }

  .vip-static-grid .vip-card-static .vip-card-text {
    min-height: auto;
  }
}


.contact-fab-root {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.contact-fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(240, 58, 50, 0.96);
  border-radius: 50%;
  padding: 0;
  background: rgba(240, 58, 50, 0.96);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-fab:hover {
  transform: translateY(-2px);
  background: rgba(240, 58, 50, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.contact-fab-icon {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
}

.contact-fab-panel {
  width: min(360px, calc(100vw - 32px));
  padding: 22px;
  border-radius: 24px;
  background: rgba(10, 14, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.contact-fab-eyebrow {
  margin: 0 0 6px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.contact-fab-panel h2 {
  margin: 0;
  font-size: 1.35rem;
}

.contact-fab-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-fab-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-fab-option {
  width: 100%;
  text-align: left;
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-fab-option:hover {
  transform: translateY(-1px);
  border-color: rgba(193, 151, 81, 0.7);
  background: rgba(193, 151, 81, 0.08);
}

.contact-fab-option span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .contact-fab-root {
    right: 16px;
    bottom: 16px;
    left: 16px;
    align-items: stretch;
  }

  .contact-fab {
    width: 52px;
    height: 52px;
    align-self: flex-end;
  }

  .contact-fab-panel {
    width: 100%;
  }
}


/* === Navbar profil Discord === */
.nav-balanced {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.nav-brand {
  justify-self: start;
}

.nav-menu-centered {
  justify-self: center;
  justify-content: center;
}

.nav-actions-right {
  justify-self: end;
  justify-content: flex-end;
  position: relative;
}

.profile-menu {
  position: relative;
}

.profile-trigger {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(circle at top, rgba(137,92,255,0.18), rgba(255,255,255,0.08));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.22s ease;
}

.profile-trigger:hover,
.profile-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(186, 155, 255, 0.4);
  box-shadow: 0 14px 32px rgba(0,0,0,0.24), 0 0 0 4px rgba(126, 87, 194, 0.14);
  outline: none;
}

.profile-trigger-icon {
  width: 22px;
  height: 22px;
  line-height: 0;
  color: #d9dff8;
}

.profile-trigger-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.profile-trigger.has-avatar {
  padding: 0;
  overflow: hidden;
}

.profile-trigger-avatar-wrap {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.profile-trigger-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(280px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(160deg, rgba(20,24,36,0.98), rgba(9,12,19,0.98));
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: grid;
  gap: 12px;
  z-index: 1200;
}

.profile-dropdown-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff8d87;
}

.profile-dropdown-text {
  color: var(--text);
}

.btn-block {
  width: 100%;
}

@media (max-width: 900px) {
  .nav-balanced {
    grid-template-columns: 1fr;
  }

  .nav-brand,
  .nav-menu-centered,
  .nav-actions-right {
    justify-self: stretch;
  }

  .nav-actions-right {
    justify-content: space-between;
  }
}

.staff-page {
  min-height: calc(100vh - 84px);
}

.staff-hero {
  padding: 118px 0 28px;
}

.staff-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.staff-hero-card,
.staff-panel,
.staff-metric-card {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.staff-hero-card,
.staff-panel {
  padding: 28px;
}

.staff-stack {
  display: grid;
  gap: 24px;
}

.staff-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.staff-metric-card {
  padding: 24px;
}

.staff-metric-card p,
.staff-metric-card span,
.staff-breakdown-grid article span,
.staff-formula-grid article span {
  color: var(--muted);
}

.staff-metric-card strong {
  display: block;
  font-size: 1.9rem;
  margin: 6px 0 10px;
}


.staff-metric-card--success {
  border-color: rgba(70, 201, 126, 0.45);
  background: linear-gradient(180deg, rgba(70, 201, 126, 0.22), rgba(10, 31, 18, 0.65));
  box-shadow: 0 20px 40px rgba(70, 201, 126, 0.18);
}

.staff-metric-card--danger {
  border-color: rgba(255, 92, 92, 0.42);
  background: linear-gradient(180deg, rgba(255, 92, 92, 0.2), rgba(40, 12, 12, 0.7));
  box-shadow: 0 20px 40px rgba(255, 92, 92, 0.18);
}

.staff-metric-card--success strong,
.staff-metric-card--danger strong {
  letter-spacing: 0.04em;
}

.staff-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.staff-badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.staff-badge.is-ok,
.staff-dot.is-ok {
  color: #7df58a;
}

.staff-breakdown-grid,
.staff-formula-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.staff-breakdown-grid article,
.staff-formula-grid article {
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  display: grid;
  gap: 8px;
}

.staff-breakdown-grid strong {
  font-size: 1.25rem;
}

.staff-table-wrap {
  overflow-x: auto;
}

.staff-table {
  width: 100%;
  border-collapse: collapse;
}

.staff-table th,
.staff-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}

.staff-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.staff-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  background: currentColor;
}

.staff-dot.is-alert {
  color: #ff8d87;
}

.staff-admin-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.staff-admin-form label {
  display: grid;
  gap: 8px;
}

.staff-admin-form input,
.staff-admin-form select {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(22,24,35,0.96), rgba(13,15,24,0.96));
  color: #fff;
}

.staff-admin-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 24px rgba(0,0,0,0.18);
  background-image: linear-gradient(180deg, rgba(22,24,35,0.96), rgba(13,15,24,0.96)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23ffffff' fill-opacity='0.9' d='M2 2l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 14px 10px;
}

.staff-admin-form select option {
  background: #131722;
  color: #fff;
}

@media (max-width: 980px) {
  .staff-hero-grid,
  .staff-metrics-grid,
  .staff-breakdown-grid,
  .staff-formula-grid,
  .staff-admin-form {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .staff-hero-grid,
  .staff-metrics-grid,
  .staff-breakdown-grid,
  .staff-formula-grid,
  .staff-admin-form {
    grid-template-columns: 1fr;
  }
}

.staff-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.staff-tab {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.staff-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.25);
}

.staff-tab.is-active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.staff-chart-wrap {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 24px;
}

.staff-chart {
  display: block;
  width: 100%;
  min-width: 760px;
  height: 320px;
}

.staff-chart-bg {
  fill: rgba(255,255,255,0.025);
}

.staff-chart-grid {
  stroke: rgba(255,255,255,0.1);
  stroke-width: 1;
}

.staff-chart-axis,
.staff-chart-value {
  fill: rgba(255,255,255,0.74);
  font-size: 12px;
}

.staff-chart-bar {
  fill: rgba(255,255,255,0.22);
}

.staff-chart-group.is-active .staff-chart-bar {
  fill: rgba(255,255,255,0.4);
}

.staff-subhead {
  margin-top: 6px;
}

.staff-selected-week {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
}

.staff-selected-week-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.staff-selected-week-head h3 {
  margin: 4px 0 6px;
}

@media (max-width: 640px) {
  .staff-selected-week-head {
    flex-direction: column;
  }
}

.staff-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 8px 0 14px;
}

.staff-select-wrap {
  display: inline-flex;
  align-items: center;
}

.staff-select {
  min-width: 240px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.staff-select:focus {
  border-color: rgba(255,255,255,0.28);
}

.staff-chart-helper {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.78);
}

.staff-chart-wrap.is-readable {
  padding: 10px 0 0;
}

.staff-chart-title {
  fill: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 700;
}

.staff-chart-axis,
.staff-chart-value {
  fill: rgba(255,255,255,0.84);
  font-size: 13px;
}

.staff-chart-axis-x {
  font-size: 15px;
  font-weight: 700;
}

.staff-chart-value {
  font-weight: 700;
}

.staff-chart-bar.readable-bar {
  fill: rgba(255,255,255,0.36);
  stroke: rgba(255,255,255,0.1);
  stroke-width: 1;
}


.chart-filter-row {
  align-items: center;
  margin-top: 8px;
  margin-bottom: 18px;
}

.staff-chart-shell {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    radial-gradient(circle at top left, rgba(255,91,91,0.07), transparent 35%),
    radial-gradient(circle at top right, rgba(89,127,255,0.08), transparent 40%),
    rgba(7, 11, 22, 0.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.staff-select-card {
  min-width: 280px;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.staff-select-label {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staff-select {
  min-width: 220px;
  min-height: 50px;
  padding: 0 42px 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  color: rgba(255,255,255,0.96);
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.8) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.8) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.staff-select:focus {
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.06);
}

.staff-chart-helper {
  margin: 8px 0 0;
  max-width: 640px;
  line-height: 1.6;
}

.staff-chart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.staff-chart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
}

.staff-chart-pill strong {
  color: #fff;
}

.chart-surface {
  padding: 14px 16px 8px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.staff-chart {
  height: 360px;
}

.staff-chart-bg {
  fill: transparent;
}

.staff-chart-grid {
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1;
}

.staff-chart-axis,
.staff-chart-value {
  fill: rgba(255,255,255,0.72);
  font-size: 13px;
}

.staff-chart-axis-x {
  font-size: 16px;
  font-weight: 700;
}

.staff-chart-title {
  fill: rgba(255,255,255,0.96);
  font-size: 18px;
  font-weight: 800;
}

.staff-chart-subtitle {
  fill: rgba(255,255,255,0.62);
  font-size: 12px;
}

.staff-chart-line {
  fill: none;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.staff-chart-point {
  fill: #fff;
  stroke: rgba(255,255,255,0.28);
  stroke-width: 6;
}

.staff-chart-bar.readable-bar {
  fill: url(#employeeBarGradient);
  stroke: rgba(255,255,255,0.14);
  stroke-width: 1;
}

.staff-chart-value {
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 900px) {
  .staff-chart-shell {
    padding: 18px;
  }

  .staff-select-card {
    width: 100%;
    min-width: 0;
  }

  .staff-select {
    min-width: 0;
    width: 100%;
  }
}


.hidden-native-select {
  position: absolute;
  inset: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.week-filter-card {
  align-items: stretch;
  min-width: 380px;
  max-width: 460px;
  padding: 18px;
}

.staff-select-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.staff-week-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.staff-week-pill {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.88);
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.staff-week-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.26);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
}

.staff-week-pill.is-active {
  color: #fff;
  border-color: rgba(255,214,158,0.4);
  background:
    linear-gradient(180deg, rgba(255,214,158,0.20), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.06);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.10);
}

.staff-chart-meta {
  gap: 12px;
  margin-bottom: 18px;
}

.staff-chart-pill {
  min-height: 42px;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.staff-chart-pill span {
  color: rgba(255,255,255,0.64);
}

.chart-surface {
  padding: 18px 18px 12px;
  background:
    radial-gradient(circle at top left, rgba(255,214,158,0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(130,165,255,0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}

.staff-chart-grid {
  stroke: rgba(255,255,255,0.07);
}

.staff-chart-axis,
.staff-chart-value {
  fill: rgba(255,255,255,0.84);
}

.staff-chart-axis {
  font-size: 12px;
}

.staff-chart-axis-x {
  font-size: 15px;
}

.staff-chart-title {
  font-size: 20px;
}

.staff-chart-subtitle {
  font-size: 13px;
  fill: rgba(255,255,255,0.68);
}

.staff-chart-area {
  fill: url(#employeeAreaGradient);
}

.staff-chart-line {
  stroke: url(#employeeLineGradient);
  stroke-width: 4;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.22));
}

.staff-chart-point-glow {
  fill: rgba(255,255,255,0.10);
}

.staff-chart-point {
  fill: #fff;
  stroke: rgba(255,214,158,0.42);
  stroke-width: 5;
}

.staff-chart-bar.readable-bar {
  fill: url(#employeeBarGradient);
  stroke: rgba(255,255,255,0.16);
  stroke-width: 1;
}

@media (max-width: 900px) {
  .week-filter-card {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .staff-select-head {
    align-items: flex-start;
  }
}


/* Employee chart dropdown + axis fixes */
.hidden-native-select {
  position: static;
  width: 100%;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.week-filter-card {
  min-width: 300px;
  max-width: 340px;
  padding: 18px 18px 16px;
}

.staff-week-pills {
  display: none !important;
}

.staff-select-head {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.staff-select-label {
  color: rgba(255,255,255,0.72);
}

.staff-select.hidden-native-select,
.staff-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: linear-gradient(180deg, rgba(22,24,35,0.96), rgba(13,15,24,0.96));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 14px 44px 14px 16px;
  min-height: 52px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 24px rgba(0,0,0,0.18);
  background-image: linear-gradient(180deg, rgba(22,24,35,0.96), rgba(13,15,24,0.96)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath fill='%23ffffff' fill-opacity='0.9' d='M2 2l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 14px 10px;
}

.staff-select option {
  background: #131722;
  color: #fff;
}

.chart-surface {
  overflow: hidden;
}

.staff-chart {
  display: block;
  width: 100%;
  height: 420px;
}

.staff-chart-axis {
  font-size: 13px;
}

.staff-chart-axis-x {
  font-size: 16px;
}

.staff-chart-value {
  font-size: 15px;
}


.staff-chart-wrap {
  position: relative;
}

.staff-chart-dot-group {
  cursor: pointer;
}

.staff-chart-tooltip {
  position: absolute;
  transform: translate(-50%, calc(-100% - 10px));
  pointer-events: none;
  z-index: 6;
  min-width: 150px;
  max-width: 220px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(17,19,30,0.96), rgba(10,12,20,0.96));
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.staff-chart-tooltip strong {
  font-size: 13px;
  font-weight: 800;
}

.staff-chart-tooltip span {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}


.staff-admin-page {
  padding-top: 118px;
}

.staff-admin-section {
  padding-top: 0;
}

.staff-admin-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.staff-admin-sidebar,
.staff-admin-right {
  position: sticky;
  top: 110px;
}

.staff-admin-sidebar {
  padding: 28px 22px;
  display: grid;
  gap: 24px;
}

.staff-admin-sidebar h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  margin-bottom: 10px;
}

.staff-admin-sidebar-copy {
  color: var(--muted);
}

.staff-admin-nav {
  display: grid;
  gap: 12px;
}

.staff-admin-navlink {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.staff-admin-navlink:hover {
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

.staff-admin-sidebar-card,
.staff-admin-sideinfo-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.staff-admin-sidebar-card span,
.staff-admin-sideinfo-grid article span {
  color: var(--muted);
}

.staff-admin-main,
.staff-admin-right {
  display: grid;
  gap: 24px;
}

.staff-admin-hero-panel {
  padding: 28px;
}

.staff-admin-hero-head {
  align-items: stretch;
}

.staff-admin-hero-head > div:first-child {
  max-width: 760px;
}

.staff-admin-mini-card {
  min-width: 280px;
  padding: 20px;
}

.staff-admin-mini-card h3 {
  margin: 6px 0 10px;
}

.staff-admin-right .staff-panel {
  padding: 24px;
}

.staff-admin-form {
  grid-template-columns: 1fr;
}

.staff-admin-sideinfo-grid {
  display: grid;
  gap: 12px;
}

@media (max-width: 1240px) {
  .staff-admin-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .staff-admin-right {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .staff-admin-sidebar,
  .staff-admin-right {
    position: static;
  }
}

@media (max-width: 900px) {
  .staff-admin-layout {
    grid-template-columns: 1fr;
  }

  .staff-admin-right {
    grid-template-columns: 1fr;
  }

  .staff-admin-hero-head {
    flex-direction: column;
  }

  .staff-admin-mini-card {
    min-width: 0;
  }
}


.staff-admin-layout-wide {
  width: min(calc(100% - 48px), 1720px);
  max-width: none;
  margin: 0 auto;
  grid-template-columns: 270px minmax(0, 1fr) 340px;
}

.staff-admin-navlink.is-active {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.staff-admin-main > .staff-panel,
.staff-admin-right > .staff-panel {
  width: 100%;
}

.staff-admin-sideinfo-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.staff-admin-sideinfo-item span {
  color: var(--muted);
}

.staff-empty {
  color: var(--muted);
}

@media (min-width: 1600px) {
  .staff-admin-layout-wide {
    width: min(calc(100% - 56px), 1840px);
    grid-template-columns: 290px minmax(0, 1fr) 360px;
  }
}

@media (max-width: 1240px) {
  .staff-admin-layout-wide {
    width: min(calc(100% - 32px), 100%);
  }
}

@media (max-width: 900px) {
  .staff-admin-layout-wide {
    width: min(calc(100% - 24px), 100%);
  }
}

.staff-admin-layout-wide {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.staff-table-row-link { cursor: pointer; }
.staff-table-row-link:focus { outline: 2px solid rgba(255,255,255,0.45); outline-offset: -2px; }
.staff-table-row-link:hover td { background: rgba(255,255,255,0.03); }


.staff-online-list {
  display: block;
}

.staff-online-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.02);
}

.staff-online-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.staff-online-table thead th {
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.staff-online-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  vertical-align: middle;
}

.staff-online-table tbody tr:last-child td {
  border-bottom: none;
}

.staff-online-table tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}

.staff-online-table strong {
  font-size: 17px;
}

@media (max-width: 700px) {
  .staff-online-table-wrap {
    border-radius: 18px;
  }
}


.employee-private-avatar-wrap {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.employee-private-avatar-shell {
  width: 112px;
  height: 112px;
  border-radius: 999px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.85), rgba(37, 99, 235, 0.85));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.employee-private-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  border: 2px solid rgba(255,255,255,0.14);
  background: rgba(9, 12, 20, 0.92);
}

.employee-private-photo-actions {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.employee-private-photo-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Admin recap layout polish: prevents overlap on compact widths */
body[data-page="staff-admin"][data-admin-view="recap"] .chart-filter-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 420px);
  align-items: start;
  gap: 18px;
}

body[data-page="staff-admin"][data-admin-view="recap"] .chart-filter-row > div:first-child {
  min-width: 0;
}

body[data-page="staff-admin"][data-admin-view="recap"] #adminRecapChartTitle,
body[data-page="staff-admin"][data-admin-view="recap"] #adminRecapChartHelper {
  max-width: 100%;
  word-break: break-word;
}

body[data-page="staff-admin"][data-admin-view="recap"] .staff-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

body[data-page="staff-admin"][data-admin-view="recap"] .staff-tab {
  flex: 0 1 auto;
  white-space: nowrap;
}

body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  align-items: stretch;
}

body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-pill {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 12px;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 20px;
}

body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-pill span,
body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-pill strong {
  min-width: 0;
}

body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-pill strong {
  margin-left: auto;
  text-align: right;
  word-break: break-word;
}

@media (max-width: 980px) {
  body[data-page="staff-admin"][data-admin-view="recap"] .chart-filter-row {
    grid-template-columns: 1fr;
  }

  body[data-page="staff-admin"][data-admin-view="recap"] .week-filter-card {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  body[data-page="staff-admin"][data-admin-view="recap"] .staff-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="staff-admin"][data-admin-view="recap"] .staff-tab {
    width: 100%;
    white-space: normal;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 18px;
  }

  body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-meta {
    grid-template-columns: 1fr;
  }

  body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-pill {
    align-items: flex-start;
  }

  body[data-page="staff-admin"][data-admin-view="recap"] .staff-chart-pill strong {
    width: 100%;
    margin-left: 0;
    text-align: left;
  }
}


/* License editor */
.staff-editor-table-wrap {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9,12,21,0.72), rgba(7,10,18,0.94));
  overflow: hidden;
}

.staff-editor-table thead th {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
}

.staff-editor-table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}

.staff-editor-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(240,58,50,0.06), rgba(72,120,255,0.05));
}

.staff-editor-cell-main {
  display: grid;
  gap: 8px;
}

.staff-editor-name {
  font-size: 1.08rem;
  color: #fff;
}

.staff-table-subline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  word-break: break-all;
}

.staff-admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.staff-admin-badge.is-grade {
  background: linear-gradient(135deg, rgba(240,58,50,0.16), rgba(240,176,50,0.10));
  border-color: rgba(255,184,112,0.2);
}

.staff-admin-badge.is-date {
  background: linear-gradient(135deg, rgba(64,110,255,0.15), rgba(71,208,255,0.08));
  border-color: rgba(120,162,255,0.18);
  font-weight: 600;
}

.staff-license-field {
  width: min(100%, 420px);
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(18,22,34,0.98), rgba(10,13,22,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 12px 30px rgba(0,0,0,0.18);
  color: #f7f7fb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.95rem;
}

.staff-license-field::placeholder {
  color: rgba(255,255,255,0.34);
}

.staff-license-field:focus {
  outline: none;
  border-color: rgba(255,195,124,0.55);
  box-shadow: 0 0 0 4px rgba(255,184,112,0.12), inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 36px rgba(0,0,0,0.2);
}

.staff-license-save {
  min-width: 148px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,188,120,0.14);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,190,120,0.18));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.staff-license-save:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(255,188,120,0.28);
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,190,120,0.24));
}

.staff-license-save:disabled {
  opacity: 0.72;
  cursor: wait;
}

#licenseEditorFeedback {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .staff-license-field {
    width: 100%;
  }

  .staff-license-save {
    width: 100%;
    min-width: 0;
  }
}


.cart-discount-price {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Recruitment page */
.recruitment-gate-card,
.recruitment-question-card,
.recruitment-summary-item,
.recruitment-review-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(10, 16, 28, 0.78);
}

.recruitment-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.82);
}

.recruitment-question-card,
.recruitment-gate-card {
  padding: 1.4rem;
}

.recruitment-question-desc,
.recruitment-gate-card p,
.recruitment-summary-item span,
.recruitment-review-item p,
.recruitment-optional {
  color: rgba(255,255,255,0.74);
}

.recruitment-input {
  width: 100%;
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 1rem 1.1rem;
}

.recruitment-textarea {
  min-height: 220px;
  resize: vertical;
}

.recruitment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.recruitment-summary-list,
.recruitment-review-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.recruitment-summary-item,
.recruitment-review-item {
  padding: 1rem 1.1rem;
}

.recruitment-summary-item.is-complete {
  border-color: rgba(34, 197, 94, 0.45);
}

.recruitment-review-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.recruitment-edit-btn {
  flex-shrink: 0;
}


.recruitment-layout.recruitment-layout-closed {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.recruitment-layout.recruitment-layout-closed .recruitment-card {
  width: 100%;
}

.recruitment-layout.recruitment-layout-closed .recruitment-gate-card {
  text-align: center;
}

@media (max-width: 900px) {
  .recruitment-progress,
  .recruitment-review-item {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Hide internal vehicle IDs from the public UI */
.vehicle-id { display: none !important; }

/* =========================
   PANIER REDESIGN
========================= */
.panier-page {
  position: relative;
}

.panier-hero-redesign {
  padding: 48px 0 36px;
}

.panier-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
}

.panier-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.96;
  margin-bottom: 20px;
}

.panier-hero-copy > p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.panier-hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  max-width: 760px;
}

.panier-hero-badge,
.panier-hero-panel,
.panier-summary-card,
.cart-item-card,
.cart-empty-state,
.cart-feedback {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}

.panier-hero-badge {
  padding: 22px 24px;
  display: grid;
  gap: 8px;
}

.panier-hero-badge span,
.panier-summary-lines span,
.panier-summary-meta span,
.cart-item-pricebox span,
.panier-section-label,
.panier-panel-kicker,
.cart-qty-box > span {
  color: var(--muted);
  font-size: 0.88rem;
}

.panier-hero-badge strong {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1;
}

.panier-hero-badge-wide {
  grid-column: span 2;
}

.cart-discount-price {
  color: #9dd6ad;
  font-size: 0.92rem;
}

.panier-hero-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.panier-hero-panel::after {
  content: '';
  position: absolute;
  inset: auto -40px -50px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,42,36,0.22), transparent 68%);
}

.panier-hero-panel h2 {
  font-size: 1.9rem;
  line-height: 1.05;
  margin: 8px 0 18px;
}

.panier-panel-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.panier-panel-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.panier-section-redesign {
  padding-top: 26px;
}

.panier-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 390px);
  gap: 26px;
  align-items: start;
}

.panier-main,
.panier-sidebar {
  min-width: 0;
}

.panier-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panier-toolbar h2,
.panier-summary-header h2 {
  font-size: 2rem;
  line-height: 1.05;
}

.cart-feedback {
  padding: 14px 18px;
  margin-bottom: 16px;
}

.cart-items-list {
  display: grid;
  gap: 18px;
}

.cart-item-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.cart-item-card-vip {
  background:
    linear-gradient(180deg, rgba(223,42,36,0.09), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.cart-item-visual {
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.cart-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-visual-vip {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(223,42,36,0.25), transparent 30%),
    linear-gradient(135deg, rgba(19,21,31,0.96), rgba(8,10,16,0.96));
}

.cart-vip-mark {
  padding: 22px;
  text-align: center;
}

.cart-vip-mark span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffd7d5;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.cart-vip-mark strong {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
}

.cart-item-content {
  display: grid;
  gap: 16px;
}

.cart-item-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.cart-item-head h3 {
  font-size: 1.9rem;
  line-height: 1;
  margin-top: 6px;
}

.cart-item-pricebox {
  display: none;
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 20px;
  text-align: right;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.cart-item-pricebox strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin: 8px 0 5px;
}

.cart-item-pricebox small,
.panier-summary-note,
.cart-item-description {
  color: var(--muted);
}

.cart-item-specs,
.cart-item-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-item-specs span,
.cart-item-perks li {
  list-style: none;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.cart-qty-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.cart-qty-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.cart-qty-input {
  width: 64px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text);
  outline: none;
}

.panier-sidebar {
  position: sticky;
  top: 128px;
}

.panier-summary-card {
  padding: 24px;
  display: grid;
  gap: 22px;
}

.panier-summary-lines {
  display: grid;
  gap: 14px;
}

.panier-summary-lines > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panier-summary-total {
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.panier-summary-total strong {
  font-size: 1.7rem;
}

.panier-summary-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.panier-summary-meta > div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 8px;
}

.panier-summary-meta-single {
  grid-template-columns: 1fr;
}

.panier-summary-cta {
  display: grid;
  gap: 12px;
}

.panier-summary-cta .btn {
  width: 100%;
}

.cart-empty-state {
  padding: 40px 28px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}

.cart-empty-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1180px) {
  .panier-hero-layout,
  .panier-layout,
  .cart-item-card {
    grid-template-columns: 1fr;
  }

  .panier-sidebar {
    position: static;
  }

  .cart-item-visual {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .panier-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .panier-hero-badges,
  .panier-summary-meta {
    grid-template-columns: 1fr;
  }

  .panier-hero-badge-wide {
    grid-column: auto;
  }

  .panier-toolbar,
  .cart-item-head,
  .cart-item-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item-pricebox {
    min-width: 0;
    text-align: left;
  }

  .cart-qty-controls {
    justify-content: space-between;
  }

  .cart-item-visual {
    min-height: 220px;
  }
}


.panier-page-cart-only {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.panier-section-cart-only {
  width: 100%;
  padding-top: 112px;
  padding-bottom: 64px;
}

@media (max-width: 760px) {
  .panier-section-cart-only {
    padding-top: 108px;
    padding-bottom: 40px;
  }
}

.panier-vip-option {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 0.25rem;
}

.panier-vip-option-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.panier-vip-option-label input {
  width: 18px;
  height: 18px;
}

.panier-summary-note-tight {
  margin: 0.55rem 0 0;
}




/* --- HERO TITLE + 3 WORDS SAFE LAYOUT --- */
.hero-benny-panel-compact .hero-benny-title {
  margin: 0 auto 8px;
  font-size: clamp(2.25rem, 4.3vw, 3.95rem);
}

.hero-benny-tags {
  display: block;
  margin: 0 auto 14px;
  max-width: 820px;
  text-align: center;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.96);
}

.hero-benny-tags span {
  display: inline-block;
  margin: 0 0.22em;
  font-size: 0.8em;
  color: #ff5c57;
}

@media (max-width: 768px) {
  .hero-benny-panel-compact .hero-benny-title {
    margin-bottom: 6px;
    font-size: clamp(1.95rem, 9vw, 2.85rem);
  }

  .hero-benny-tags {
    margin-bottom: 12px;
    font-size: clamp(0.92rem, 4.3vw, 1.1rem);
    line-height: 1.28;
  }
}
