/* ══════════════════════════════════════════════════════
   SK AUTOMOBILES — SHOWROOM CINÉMATIQUE 2026
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Jost:wght@300;400;500;600;700;800&display=swap');

:root {
    --sk-bg: #050507;
    --sk-surface: #111114;
    --sk-surface-2: #1a1a1f;
    --sk-surface-glass: rgba(17,17,20,.7);
    --sk-border: transparent;
    --sk-accent: #DE5328;
    --sk-accent-soft: rgba(222,83,40,.08);
    --sk-accent-glow: rgba(222,83,40,.2);
    --sk-gold: #DE5328;
    --sk-white: #f5f5f7;
    --sk-text: #d1d1d6;
    --sk-text-muted: #8e8e93;
    --sk-text-dim: #636366;
    --sk-success: #30d158;
    --sk-gradient: linear-gradient(135deg, #DE5328, #ff7a54);
    --radius: 20px;
    --radius-sm: 12px;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Jost', -apple-system, system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,.4);
    --shadow-lg: 0 24px 64px rgba(0,0,0,.5);
    --shadow-glow: 0 0 60px rgba(222,83,40,.15);
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; outline: 0; }
video, iframe, img { border: none; outline: none; }
*:focus { outline: none; }
h1, h2, h3, h4, h5, h6, p, span, div, section, article, header, footer, nav, main { border: none; outline: none; }

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--sk-bg); color: var(--sk-text);
    line-height: 1.6; -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--sk-accent); text-decoration: none; transition: all .3s var(--ease); }
a:hover { color: #ff7a54; }
img { max-width: 100%; height: auto; }
.accent { color: var(--sk-accent); }
.nowrap { white-space: nowrap; }

/* ── SCROLL REVEAL (only hide sections below the fold) ── */
.reveal-ready .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    padding: 1rem 2.5rem; border-radius: 60px; border: none;
    background: var(--sk-gradient); color: #fff;
    font-weight: 700; font-size: .95rem; letter-spacing: .03em;
    cursor: pointer; transition: all .4s var(--ease);
    box-shadow: 0 4px 24px var(--sk-accent-glow);
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
    opacity: 0; transition: opacity .3s;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 48px rgba(222,83,40,.35);
    color: #fff;
}
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2.25rem; border-radius: 60px;
    border: 1.5px solid rgba(255,255,255,.25) !important; background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
    color: #fff; font-weight: 600; font-size: .9rem;
    cursor: pointer; transition: all .4s var(--ease);
}
.btn-outline:hover {
    background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5) !important;
    color: #fff; transform: translateY(-2px);
}

/* ══ NAVBAR ══ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(5,5,7,.6); backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 0 3rem; height: 80px;
    transition: all .4s var(--ease);
}
.navbar-content {
    max-width: 1440px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.brand-logo {
    height: 90px; transition: transform .3s var(--ease);
    filter: drop-shadow(0 0 16px rgba(222,83,40,.3));
    margin: -15px 0;
}
.brand-logo:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 2.25rem; align-items: center; }
.nav-links > a, .nav-dropdown-trigger {
    color: var(--sk-text-muted); font-size: .8rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    transition: color .3s var(--ease); position: relative; cursor: pointer;
}
.nav-links > a:hover, .nav-dropdown-trigger:hover { color: #fff; }
.nav-links > a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 2px; background: var(--sk-accent);
    transition: width .3s var(--ease);
}
.nav-links > a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 240px; padding: .75rem 0;
    padding-top: 1rem;
    background: var(--sk-surface-glass); backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 0 0 16px 16px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), visibility .25s;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-menu a {
    display: block; padding: .7rem 1.5rem;
    font-size: .85rem !important; text-transform: none !important;
    color: var(--sk-text-muted) !important; letter-spacing: 0 !important;
    font-weight: 500 !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
    color: #fff !important; background: rgba(222,83,40,.08);
}

/* Navbar phones */
.navbar-phones { display: flex; gap: .6rem; }
.btn-call {
    display: flex; flex-direction: column; align-items: center;
    padding: .4rem 1.1rem; border-radius: 12px;
    background: var(--sk-accent-soft);
    color: var(--sk-accent); font-weight: 700; font-size: .78rem;
    transition: all .3s var(--ease); line-height: 1.3;
}
.btn-call:hover { background: var(--sk-accent); color: #fff; transform: scale(1.05); }
.btn-call .phone-label {
    font-size: .55rem; font-weight: 500; text-transform: uppercase;
    letter-spacing: .08em; color: var(--sk-text-dim);
}
.btn-call:hover .phone-label { color: rgba(255,255,255,.7); }

/* ══ HERO — CINÉMATIQUE ══ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; filter: brightness(.7) contrast(1.1) saturate(1.15);
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(5,5,7,.25) 70%),
                linear-gradient(180deg, transparent 70%, var(--sk-bg) 100%);
    pointer-events: none;
}
.hero-overlay {
    position: relative; z-index: 2; text-align: center;
    max-width: 960px; padding: 2rem;
}

/* Animation voiture : aller-retour fluide puis freinage */
@keyframes carRace {
    0%   { opacity: 1; transform: translateX(100vw); }
    20%  { opacity: 1; transform: translateX(-100vw); }
    40%  { opacity: 1; transform: translateX(80vw); }
    65%  { opacity: 1; transform: translateX(-20px) skewX(2deg); }
    78%  { transform: translateX(8px) skewX(-1deg); }
    90%  { transform: translateX(-3px) skewX(0); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes carRaceReverse {
    0%   { opacity: 1; transform: translateX(-100vw); }
    20%  { opacity: 1; transform: translateX(100vw); }
    40%  { opacity: 1; transform: translateX(-80vw); }
    65%  { opacity: 1; transform: translateX(20px) skewX(-2deg); }
    78%  { transform: translateX(-8px) skewX(1deg); }
    90%  { transform: translateX(3px) skewX(0); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Traînée derrière les éléments en mouvement */
.hero-badge, .hero h1, .hero .subtitle, .hero-actions {
    position: relative;
}
.hero-badge::after, .hero h1::after, .hero .subtitle::after, .hero-actions::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 200%; pointer-events: none;
    animation-fill-mode: both;
    animation-timing-function: linear;
    border-radius: 4px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .5rem 1.25rem; border-radius: 60px;
    background: rgba(222,83,40,.08); backdrop-filter: blur(10px);
    color: var(--sk-accent); font-size: .7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .15em;
    margin-bottom: 2rem;
    animation: carRaceReverse 2s linear .1s both;
}
.hero-badge::after {
    right: -200%;
    background: linear-gradient(90deg, rgba(222,83,40,.4), rgba(222,83,40,.15), transparent);
    animation: trailReverse 2s linear .1s both;
}

.hero h1 {
    font-family: var(--font-display); color: #fff;
    font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 700;
    line-height: 1.05; margin-bottom: 1.5rem;
    letter-spacing: -.02em;
    animation: carRace 2.2s linear .2s both;
}
.hero h1::after {
    left: -200%;
    background: linear-gradient(-90deg, rgba(255,255,255,.3), rgba(255,255,255,.1), transparent);
    animation: trail 2.2s linear .2s both;
}

.hero .subtitle {
    color: rgba(255,255,255,.6); font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 300; margin-bottom: 3rem; line-height: 1.7;
    max-width: 600px; margin-left: auto; margin-right: auto;
    animation: carRaceReverse 2s linear .5s both;
}
.hero .subtitle::after {
    right: -200%;
    background: linear-gradient(90deg, rgba(255,255,255,.2), rgba(255,255,255,.07), transparent);
    animation: trailReverse 2s linear .5s both;
}

.hero-actions {
    display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
    animation: carRace 2s linear .8s both;
}
.hero-actions::after {
    left: -200%;
    background: linear-gradient(-90deg, rgba(222,83,40,.35), rgba(222,83,40,.1), transparent);
    animation: trail 2s linear .8s both;
}

/* Traînée : visible pendant le mouvement, disparaît au freinage */
@keyframes trail {
    0%   { opacity: 1; width: 200%; }
    60%  { opacity: 1; width: 200%; }
    80%  { opacity: .3; width: 50%; }
    100% { opacity: 0; width: 0%; }
}
@keyframes trailReverse {
    0%   { opacity: 1; width: 200%; }
    60%  { opacity: 1; width: 200%; }
    80%  { opacity: .3; width: 50%; }
    100% { opacity: 0; width: 0%; }
}

/* ══ SECTIONS ══ */
section { padding: 6rem 2rem; }
.section-title {
    font-family: var(--font-display); text-align: center;
    font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700;
    margin-bottom: .5rem; color: #fff;
    letter-spacing: -.01em;
}
.section-subtitle {
    text-align: center; color: var(--sk-text-muted);
    font-size: 1.05rem; margin-bottom: 4rem; font-weight: 300;
}

/* ══ WELCOME ══ */
.welcome { max-width: 1200px; margin: 0 auto; }
.welcome-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.welcome-text h2 {
    font-family: var(--font-display); font-size: 2.2rem;
    color: #fff; margin-bottom: 1.5rem; line-height: 1.2;
}
.welcome-text p { color: var(--sk-text-muted); line-height: 1.9; margin-bottom: 1rem; font-size: 1.05rem; }
.welcome-image img {
    width: 100%; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ══ HERO SPEED LINES ══ */
.hero-speed-lines {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-speed-lines::before, .hero-speed-lines::after {
    content: ''; position: absolute;
    width: 200%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(222,83,40,.3), transparent);
    animation: speedLine 3s linear infinite;
}
.hero-speed-lines::before { top: 30%; left: -100%; animation-delay: 0s; }
.hero-speed-lines::after { top: 65%; left: -100%; animation-delay: 1.5s; opacity: .5; }
@keyframes speedLine { 0% { transform: translateX(-50%); } 100% { transform: translateX(50%); } }

/* ══ FEATURED VEHICLES ══ */
.featured-vehicles { max-width: 1440px; margin: 0 auto; }

/* ── Home Filters Card ── */
.home-filters-card {
    background: var(--sk-surface);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.home-filters-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
}
.home-filter-block {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.home-filter-label {
    font-size: .7rem;
    color: var(--sk-text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}
.home-select {
    padding: .55rem 2.2rem .55rem 1rem;
    border-radius: 60px;
    background: var(--sk-surface-2);
    color: var(--sk-text);
    font-size: .82rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    min-width: 140px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%238e8e93' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    transition: all .3s var(--ease);
}
.home-select:hover { background-color: #252528; }
.home-select:focus { outline: 2px solid var(--sk-accent); outline-offset: 2px; }

.home-pills {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}
.filter-pills { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.filter-label {
    font-size: .65rem; color: var(--sk-text-dim); text-transform: uppercase;
    letter-spacing: .1em; font-weight: 600; margin-right: .25rem;
}
.pill {
    padding: .5rem 1rem;
    border-radius: 60px;
    font-size: .78rem;
    font-weight: 600;
    background: var(--sk-surface-2);
    color: var(--sk-text-muted);
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: var(--font-body);
}
.pill:hover { color: #fff; background: #252528; }
.pill.active {
    background: var(--sk-accent);
    color: #fff;
    box-shadow: 0 4px 16px var(--sk-accent-glow);
}

.home-filters-expanded {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sk-surface-2);
    animation: fadeSlideIn .3s var(--ease);
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-filters-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--sk-surface-2);
}
.home-btn-toggle {
    padding: .6rem 1.5rem;
    border-radius: 60px;
    font-size: .82rem;
    font-weight: 600;
    background: transparent;
    color: var(--sk-text-muted);
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: var(--font-body);
}
.home-btn-toggle:hover { color: var(--sk-text); }
.home-btn-toggle.active { color: var(--sk-accent); }

.home-btn-search {
    padding: .65rem 2rem;
    font-size: .9rem;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

/* ══ VEHICLE CARD ══ */
.vehicle-card {
    display: block; border-radius: var(--radius); overflow: hidden;
    background: var(--sk-surface);
    transition: all .5s var(--ease); text-decoration: none;
    box-shadow: var(--shadow-sm);
}
.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.vehicle-card-img {
    position: relative; height: 220px; overflow: hidden; background: #0a0a0c;
}
.vehicle-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s var(--ease), filter .5s;
    filter: brightness(.95);
}
.vehicle-card:hover .vehicle-card-img img {
    transform: scale(1.1); filter: brightness(1.05);
}
.vehicle-card-noimg {
    height: 220px; display: flex; align-items: center; justify-content: center;
    background: var(--sk-surface-2); color: var(--sk-text-dim); font-size: .85rem;
}
.photo-count {
    position: absolute; bottom: .75rem; right: .75rem;
    padding: .3rem .75rem; border-radius: 20px;
    background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
    color: #fff; font-size: .7rem; font-weight: 600;
}
.vehicle-card-info { padding: 1.5rem; }
.vehicle-card-info h3 {
    font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .2rem;
}
.vehicle-version {
    font-size: .78rem; color: var(--sk-text-dim); margin-bottom: .85rem;
    line-height: 1.3; font-weight: 400;
}
.vehicle-card-details {
    display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.1rem;
}
.detail-item {
    display: inline-flex; align-items: center; gap: .25rem;
    padding: .3rem .7rem; border-radius: 8px;
    background: rgba(255,255,255,.04);
    font-size: .72rem; color: var(--sk-text-muted); font-weight: 500;
}
.vehicle-card-price {
    font-size: 1.4rem; font-weight: 800; color: var(--sk-accent);
    letter-spacing: -.01em;
}

/* ══ VEHICLES GRID HOME — 3 colonnes fixe ══ */
.vehicles-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem; max-width: 1200px; margin: 0 auto;
}

/* ══ GOOGLE REVIEWS SECTION ══ */
.google-reviews-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.google-logo-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.google-logo {
    flex-shrink: 0;
}
.rating-info {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.rating-stars {
    display: flex;
    align-items: center;
    gap: .15rem;
}
.rating-stars .star {
    font-size: 1.25rem;
    color: var(--sk-text-dim);
}
.rating-stars .star.filled {
    color: #FBBC05;
}
.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sk-white);
    margin-left: .5rem;
}
.rating-count {
    font-size: .85rem;
    color: var(--sk-text-muted);
}
.btn-sm {
    padding: .5rem 1.25rem;
    font-size: .85rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.review-card {
    background: var(--sk-surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: all .3s var(--ease);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.review-header {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sk-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.reviewer-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.reviewer-name {
    font-weight: 600;
    color: var(--sk-white);
    font-size: .9rem;
}
.review-date {
    font-size: .75rem;
    color: var(--sk-text-dim);
}
.review-stars {
    color: #FBBC05;
    font-size: .9rem;
    letter-spacing: 1px;
}
.review-text {
    font-size: .88rem;
    color: var(--sk-text);
    line-height: 1.5;
    flex-grow: 1;
}

/* ══ SERVICE CARDS HOME ══ */
.services-section {
    background: radial-gradient(ellipse at bottom, rgba(222,83,40,.03), transparent 60%);
}
.services-grid-home {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.service-card-link { text-decoration: none; display: block; }
.service-card-home {
    border-radius: var(--radius); overflow: hidden;
    background: var(--sk-surface); cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all .5s var(--ease);
    position: relative;
}
.service-card-home::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--sk-gradient);
    transform: scaleX(0); transition: transform .4s var(--ease);
    transform-origin: left;
}
.service-card-link:hover .service-card-home::after { transform: scaleX(1); }
.service-card-link:hover .service-card-home {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.service-card-img-wrap { overflow: hidden; height: 180px; }
.service-card-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .7s var(--ease);
}
.service-card-link:hover .service-card-img-wrap img { transform: scale(1.1); }
.service-card-body { padding: 1.25rem 1.5rem 1.5rem; position: relative; }
.service-card-body h3 { font-size: 1rem; color: #fff; margin-bottom: .4rem; }
.service-card-body p { font-size: .85rem; color: var(--sk-text-muted); line-height: 1.5; }
.service-arrow {
    position: absolute; top: 1.25rem; right: 1.5rem;
    font-size: 1.2rem; color: var(--sk-accent);
    transition: transform .3s var(--ease); opacity: 0;
}
.service-card-link:hover .service-arrow { opacity: 1; transform: translateX(4px); }

/* ══ WHY CHOOSE SK ══ */
.why-section {
    max-width: 1200px; margin: 0 auto;
    background: radial-gradient(ellipse at top center, var(--sk-accent-soft), transparent 60%);
    border-radius: 32px; padding: 5rem 3rem;
}
.why-grid-home {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; max-width: 1100px; margin: 0 auto;
}
.why-icon { font-size: 2rem; margin-bottom: .75rem; }
.why-item {
    padding: 1.75rem; border-radius: 16px;
    background: var(--sk-surface-glass); backdrop-filter: blur(10px);
    transition: all .4s var(--ease);
}
.why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.why-item h3 {
    color: var(--sk-accent); font-size: .95rem; margin-bottom: .5rem; font-weight: 700;
}
.why-item p { color: var(--sk-text-muted); font-size: .88rem; line-height: 1.6; }

/* ══ RECRUTEMENT HOME ══ */
.recrutement-home { max-width: 1200px; margin: 0 auto; }
.recrutement-home-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.recrutement-video-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.recrutement-video-wrap video { width: 100%; display: block; }
.recrutement-home .recrutement-text h2 {
    font-family: var(--font-display); color: #fff; font-size: 2rem; margin-bottom: 1rem;
}
.recrutement-home .recrutement-text p { color: var(--sk-text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* ══ CONTACT FULL ══ */
.contact-section {
    background: radial-gradient(ellipse at bottom center, rgba(222,83,40,.04), transparent 60%);
}
.contact-full { max-width: 800px; margin: 0 auto; }
.contact-full .contact-form { grid-template-columns: 1fr 1fr; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: .7rem; font-weight: 600; color: var(--sk-text-dim);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem;
}
.form-group input, .form-group textarea {
    padding: .85rem 1.1rem; border-radius: var(--radius-sm);
    background: var(--sk-surface); color: var(--sk-text);
    font-family: var(--font-body); font-size: .9rem;
    transition: all .3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus {
    background: var(--sk-surface-2);
    box-shadow: 0 0 0 2px var(--sk-accent), 0 0 24px var(--sk-accent-glow);
}
.btn-submit {
    grid-column: 1 / -1; padding: 1rem; border: none;
    border-radius: 60px; background: var(--sk-gradient);
    color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: all .4s var(--ease);
    box-shadow: 0 4px 24px var(--sk-accent-glow);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 48px rgba(222,83,40,.35); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-status {
    grid-column: 1 / -1; padding: .85rem; border-radius: var(--radius-sm);
    text-align: center; font-size: .9rem; font-weight: 500;
}
.form-status.success { background: rgba(48,209,88,.08); color: var(--sk-success); }
.form-status.error { background: rgba(222,83,40,.08); color: var(--sk-accent); }

/* ══ CONCESSIONS ══ */
.locations-section {
    padding: 5rem 2rem; background: var(--sk-surface);
}
.concessions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.concession-col {
    background: var(--sk-surface-2);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.concession-info {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
}
.concession-info h3 {
    font-family: var(--font-display); font-size: 1.1rem; color: #fff; margin-bottom: 1rem;
}
.location-address, .location-phone, .location-email {
    color: var(--sk-text-muted); font-size: .9rem; margin-bottom: .4rem; line-height: 1.5;
}
.location-phone a, .location-email a { color: var(--sk-accent); font-weight: 600; font-size: .95rem; }
.concession-horaires {
    display: flex; flex-direction: column; align-items: center;
    flex: 1;
}
.concession-horaires h4 {
    font-size: .75rem; color: var(--sk-accent); margin-bottom: .5rem;
    text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
    text-align: center;
}
.concession-map { margin-top: auto; }
.concession-map iframe { width: 100%; height: 180px; border-radius: 12px; }

/* ══ HORAIRES ══ */
.horaires-section { max-width: 600px; margin: 0 auto; }
.horaires { display: flex; flex-direction: column; gap: .5rem; width: 100%; }
.horaire-row {
    display: flex; justify-content: space-between; padding: .85rem 1.5rem;
    border-radius: 10px; background: rgba(255,255,255,.03); font-size: .9rem;
}
.horaire-row .jour { font-weight: 600; color: #fff; }
.horaire-row .heures { color: var(--sk-text-muted); }

/* ══ CATALOG PAGE ══ */
.page-header {
    padding-top: 120px; padding-bottom: 3rem; text-align: center;
    background: radial-gradient(ellipse at center top, var(--sk-accent-soft), transparent 50%);
}
.page-header h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700; color: #fff;
}
.page-header-sub { color: var(--sk-text-muted); font-size: 1.1rem; margin-top: .75rem; }

/* ══ CATALOG LAYOUT WITH STICKY SIDEBAR ══ */
.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--sk-surface-2) transparent;
}
.catalog-sidebar::-webkit-scrollbar { width: 4px; }
.catalog-sidebar::-webkit-scrollbar-track { background: transparent; }
.catalog-sidebar::-webkit-scrollbar-thumb { background: var(--sk-surface-2); border-radius: 4px; }

.sidebar-filters {
    background: var(--sk-surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sk-white);
    margin-bottom: .5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--sk-surface-2);
}
.sidebar-close { display: none; }
.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.sidebar-group label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sk-text-dim);
}
.sidebar-select, .sidebar-input {
    width: 100%;
    padding: .65rem .9rem;
    border-radius: 10px;
    background: var(--sk-surface-2);
    color: var(--sk-text);
    font-family: var(--font-body);
    font-size: .85rem;
    transition: all .3s var(--ease);
    appearance: none;
}
.sidebar-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%238e8e93' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2rem;
}
.sidebar-select:hover, .sidebar-input:hover { background: #252528; }
.sidebar-select:focus, .sidebar-input:focus { outline: 2px solid var(--sk-accent); outline-offset: 1px; }
.sidebar-select option { background: var(--sk-surface); }

.sidebar-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23636366' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: .75rem center;
    padding-left: 2.25rem;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.price-manual {
    display: flex;
    gap: .35rem;
}
.sidebar-input-small {
    flex: 1;
    padding: .5rem .65rem;
    border-radius: 8px;
    background: var(--sk-surface-2);
    color: var(--sk-text);
    font-family: var(--font-body);
    font-size: .8rem;
    transition: all .3s var(--ease);
    min-width: 0;
}
.sidebar-input-small:hover { background: #252528; }
.sidebar-input-small:focus { outline: 2px solid var(--sk-accent); outline-offset: 1px; }
.sidebar-input-small::placeholder { color: var(--sk-text-dim); font-size: .75rem; }
.btn-apply-price {
    padding: .5rem .75rem;
    border-radius: 8px;
    background: var(--sk-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
    flex-shrink: 0;
}
.btn-apply-price:hover { background: #ff6a3d; }

.sidebar-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.sidebar-group.half { min-width: 0; }

.sidebar-divider {
    height: 1px;
    background: var(--sk-surface-2);
    margin: .5rem 0;
}

.sidebar-reset {
    display: block;
    text-align: center;
    padding: .6rem 1rem;
    margin-top: .5rem;
    border-radius: 60px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--sk-accent);
    background: var(--sk-accent-soft);
    transition: all .3s var(--ease);
}
.sidebar-reset:hover { background: rgba(222,83,40,.15); }

.sidebar-apply-mobile {
    display: none;
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 60px;
    border: none;
    background: var(--sk-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 24px var(--sk-accent-glow);
    transition: all .3s var(--ease);
}
.sidebar-apply-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(222,83,40,.35);
}

.catalog-main { min-width: 0; }

.catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: .75rem 1rem;
    background: var(--sk-surface);
    border-radius: var(--radius-sm);
}
.catalog-count { color: var(--sk-text-muted); font-size: .9rem; margin: 0; }
.catalog-count strong { color: var(--sk-accent); font-size: 1.05rem; }

.mobile-filter-toggle {
    display: none;
    padding: .5rem 1rem;
    border-radius: 60px;
    background: var(--sk-surface-2);
    color: var(--sk-text);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.mobile-filter-toggle:hover { background: var(--sk-accent); color: #fff; }

/* ══ STICKY RECHERCHE PERSO ══ */
.rp-sticky-bar {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    display: flex; align-items: center; gap: .6rem;
    padding: .65rem 1.4rem;
    background: rgba(17,17,20,.85); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff; text-decoration: none;
    font-size: .8rem; font-weight: 500;
    border-radius: 60px;
    box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 0 20px rgba(222,83,40,.15);
    transition: all .3s var(--ease);
    animation: stickySlideUp .4s var(--ease) 1s both;
}
.rp-sticky-bar:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 30px rgba(222,83,40,.25);
}
@keyframes stickySlideUp {
    from { transform: translateY(80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.rp-sticky-bar strong { font-weight: 700; color: var(--sk-accent); }
.rp-sticky-pulse {
    width: 6px; height: 6px; border-radius: 50%; background: var(--sk-accent);
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(222,83,40,.4); }
    50% { opacity: .6; transform: scale(.7); box-shadow: 0 0 0 6px rgba(222,83,40,0); }
}

.catalog-loading, .catalog-empty {
    text-align: center; padding: 4rem 2rem; color: var(--sk-text-muted);
}
.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,.06); border-top-color: var(--sk-accent);
    border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══ VEHICLE DETAIL — PREMIUM ══ */
.vd-loading, .vd-notfound {
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    padding: 2rem; text-align: center;
}
.vd-notfound-content { max-width: 400px; }
.vd-notfound-content svg { color: var(--sk-text-dim); margin-bottom: 1.5rem; }
.vd-notfound-content h1 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: .75rem; }
.vd-notfound-content p { color: var(--sk-text-muted); margin-bottom: 2rem; }

.vd-page { max-width: 1400px; margin: 0 auto; padding: 100px 2rem 4rem; }

/* ── Header ── */
.vd-header {
    padding: 1rem 0 1.5rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.vd-back {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--sk-text-muted); font-size: .85rem; margin-bottom: .75rem;
    transition: color .2s;
}
.vd-back:hover { color: var(--sk-accent); }
.vd-title {
    font-family: var(--font-display); font-size: 1.75rem; color: #fff;
    line-height: 1.25; margin: 0;
}

/* ── Main Layout ── */
.vd-main {
    display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start;
}
.vd-content { min-width: 0; }

/* ── Gallery ── */
.vd-gallery {
    background: #0a0a0c; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}
.vd-gallery-main {
    position: relative; aspect-ratio: 16/10; background: linear-gradient(180deg, #0a0a0c 0%, #050507 100%);
    cursor: zoom-in;
}
.vd-gallery-main img {
    width: 100%; height: 100%; object-fit: contain;
    transition: transform .3s var(--ease);
}
.vd-sold-ribbon {
    position: absolute; top: 20px; left: -35px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff; padding: .5rem 3rem; font-weight: 700; font-size: .8rem;
    text-transform: uppercase; letter-spacing: .1em;
    transform: rotate(-45deg); box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.vd-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(0,0,0,.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s var(--ease); opacity: 0;
}
.vd-gallery:hover .vd-nav { opacity: 1; }
.vd-nav:hover:not(:disabled) { background: var(--sk-accent); border-color: var(--sk-accent); transform: translateY(-50%) scale(1.1); }
.vd-nav:disabled { opacity: .2 !important; cursor: not-allowed; }
.vd-nav.prev { left: 1rem; }
.vd-nav.next { right: 1rem; }
.vd-photo-count {
    position: absolute; bottom: 1rem; right: 1rem;
    display: flex; align-items: center; gap: .4rem;
    background: rgba(0,0,0,.75); backdrop-filter: blur(10px);
    padding: .5rem 1rem; border-radius: 2rem;
    font-size: .85rem; color: #fff;
}
.vd-photo-count svg { opacity: .7; }
.vd-thumbs {
    display: flex; gap: .5rem; padding: .75rem; overflow-x: auto;
    background: rgba(255,255,255,.02);
}
.vd-thumbs::-webkit-scrollbar { height: 6px; }
.vd-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 3px; }
.vd-thumb {
    flex-shrink: 0; width: 90px; height: 65px; border-radius: 8px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer;
    opacity: .5; transition: all .2s var(--ease); background: none; padding: 0;
}
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vd-thumb:hover { opacity: .85; }
.vd-thumb.active { opacity: 1; border-color: var(--sk-accent); }

/* ── Quick Specs ── */
.vd-quickspecs {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem;
}
.vd-qs {
    background: var(--sk-surface); border-radius: var(--radius-sm); padding: 1rem;
    text-align: center; border: 1px solid rgba(255,255,255,.04);
}
.vd-qs-label {
    display: block; font-size: .7rem; color: var(--sk-text-dim);
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem;
}
.vd-qs-value { font-size: 1rem; font-weight: 700; color: #fff; }

/* ── Sections ── */
.vd-section {
    background: var(--sk-surface); border-radius: var(--radius);
    padding: 1.75rem; margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,.04);
}
.vd-section h2 {
    font-family: var(--font-display); font-size: 1.15rem; color: #fff;
    margin: 0 0 1.25rem; padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── Equipment Tabs ── */
.vd-equipment-tabs {
    display: flex; gap: .5rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.vd-tab {
    padding: .5rem 1rem; border-radius: 2rem; font-size: .85rem; font-weight: 600;
    background: rgba(255,255,255,.04); color: var(--sk-text-muted);
    border: 1px solid transparent; cursor: pointer;
    transition: all .2s var(--ease);
}
.vd-tab:hover { color: #fff; background: rgba(255,255,255,.08); }
.vd-tab.active {
    background: var(--sk-accent); color: #fff; border-color: var(--sk-accent);
}
.vd-equipment-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem .75rem;
}
.vd-equip-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .9rem; color: var(--sk-text); padding: .4rem 0;
}
.vd-equip-item svg { color: #22c55e; flex-shrink: 0; }

/* ── Technical Specs Table ── */
.vd-specs-table {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.vd-spec-row {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .75rem 1rem; font-size: .9rem;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.vd-spec-row:nth-child(odd) { background: rgba(255,255,255,.02); }
.vd-spec-label { color: var(--sk-text-muted); }
.vd-spec-value { color: #fff; font-weight: 600; text-align: right; }

/* ── Description ── */
.vd-description { color: var(--sk-text-muted); line-height: 1.8; }

/* ── Sidebar ── */
.vd-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1rem; }

.vd-price-banner {
    background: var(--sk-accent); border-radius: var(--radius);
    padding: 1.25rem 1.5rem; text-align: center;
}
.vd-price-amount {
    display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900;
    color: #fff; line-height: 1.2;
}
.vd-price-note {
    display: block; font-size: .85rem; color: rgba(255,255,255,.85); margin-top: .25rem;
}

.vd-sold-banner {
    background: linear-gradient(135deg, #dc2626, #991b1b); border-radius: var(--radius);
    padding: 1.25rem 1.5rem; text-align: center;
}
.vd-sold-banner span {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
    color: #fff; text-transform: uppercase; letter-spacing: .1em;
}

.vd-contact-box {
    border: 2px solid var(--sk-accent); border-radius: var(--radius);
    padding: 1.5rem; text-align: center;
    background: var(--sk-surface);
}
.vd-contact-title {
    font-weight: 700; font-size: 1rem; color: #fff; margin: 0 0 .25rem;
}
.vd-contact-subtitle {
    color: var(--sk-text-muted); font-size: .9rem; margin: 0 0 1rem;
}
.vd-contact-links {
    display: flex; flex-direction: column; gap: .75rem;
}
.vd-contact-link {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .75rem 1rem; border-radius: var(--radius-sm);
    background: rgba(255,255,255,.04); color: #fff;
    font-weight: 600; font-size: .95rem;
    text-decoration: none; transition: all .2s var(--ease);
}
.vd-contact-link:hover {
    background: var(--sk-accent); color: #fff;
}
.vd-contact-link svg { color: var(--sk-accent); transition: color .2s; }
.vd-contact-link:hover svg { color: #fff; }

.vd-btn-pdf {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%; padding: .85rem;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    color: var(--sk-text-muted); font-weight: 600; font-size: .9rem;
    border-radius: var(--radius-sm); text-decoration: none;
    transition: all .2s var(--ease);
}
.vd-btn-pdf:hover { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); }

/* ── Lightbox ── */
.vd-lightbox {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,.95); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.vd-lightbox img {
    max-width: 90vw; max-height: 90vh; object-fit: contain;
    border-radius: var(--radius-sm);
}
.vd-lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: rgba(255,255,255,.1); border: none; border-radius: 50%;
    width: 50px; height: 50px; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.vd-lightbox-close:hover { background: var(--sk-accent); }
.vd-lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.1); border: none; border-radius: 50%;
    width: 60px; height: 60px; color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
}
.vd-lightbox-nav:hover:not(:disabled) { background: var(--sk-accent); }
.vd-lightbox-nav:disabled { opacity: .3; cursor: not-allowed; }
.vd-lightbox-nav.prev { left: 2rem; }
.vd-lightbox-nav.next { right: 2rem; }
.vd-lightbox-counter {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,.6); padding: .6rem 1.5rem; border-radius: 2rem;
    color: #fff; font-size: .9rem;
}

/* ── Similar Vehicles Carousel ── */
.vd-similar-section {
    max-width: 1400px; margin: 3rem auto; padding: 0 2rem;
}
.vd-similar-section h2 {
    font-family: var(--font-display); font-size: 1.6rem; color: var(--sk-text);
    margin-bottom: 1.5rem; text-align: center;
}
.vd-similar-carousel {
    display: flex; align-items: center; gap: 1rem;
}
.vd-carousel-nav {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: var(--sk-accent); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .2s var(--ease);
}
.vd-carousel-nav svg { stroke: #fff; }
.vd-carousel-nav:hover:not(:disabled) { background: var(--sk-accent-dark); transform: scale(1.08); }
.vd-carousel-nav:disabled { opacity: .3; cursor: not-allowed; }
.vd-similar-track {
    flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
    overflow: hidden;
}
.vd-similar-card {
    display: block; border-radius: var(--radius);
    background: var(--sk-surface); overflow: hidden;
    text-decoration: none; transition: all .3s var(--ease);
    box-shadow: var(--shadow-sm);
}
.vd-similar-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.vd-similar-img {
    aspect-ratio: 16/10; overflow: hidden; background: var(--sk-bg);
}
.vd-similar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.vd-similar-card:hover .vd-similar-img img { transform: scale(1.08); }
.vd-similar-noimg {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    color: var(--sk-text-dim);
}
.vd-similar-info { padding: 1rem; }
.vd-similar-info h3 {
    font-size: .95rem; font-weight: 600; color: var(--sk-text);
    margin: 0 0 .5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vd-similar-specs {
    display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem;
}
.vd-similar-specs span {
    font-size: .75rem; color: var(--sk-text-dim);
    background: var(--sk-bg); padding: .2rem .5rem; border-radius: 4px;
}
.vd-similar-price {
    font-size: 1.1rem; font-weight: 700; color: var(--sk-accent);
}

@media (max-width: 1024px) {
    .vd-similar-track { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .vd-similar-track { grid-template-columns: repeat(2, 1fr); }
    .vd-carousel-nav { width: 36px; height: 36px; }
    .vd-similar-section { padding: 0 1rem; }
}
@media (max-width: 480px) {
    .vd-similar-track { grid-template-columns: 1fr; }
}

/* ══ RECHERCHE PERSONNALISÉE ══ */
.rp-section { max-width: 900px; margin: 0 auto; padding: 2rem; }
.rp-form h2 { font-family: var(--font-display); color: #fff; font-size: 1.4rem; margin: 2.5rem 0 1rem; }
.rp-form h2:first-child { margin-top: 0; }
.rp-form h3 { color: var(--sk-accent); font-size: .95rem; margin: 1.5rem 0 .75rem; font-weight: 700; }
.rp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: .5rem; }
.rp-grid-2 { grid-template-columns: 1fr 1fr; }
.rp-grid-4 { grid-template-columns: repeat(4, 1fr); }
.rp-field { display: flex; flex-direction: column; }
.rp-field label { font-size: .7rem; font-weight: 600; color: var(--sk-text-dim); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .3rem; }
.rp-field input, .rp-field select, .rp-field textarea {
    padding: .75rem 1rem; border-radius: var(--radius-sm);
    background: var(--sk-surface); color: var(--sk-text);
    font-family: var(--font-body); font-size: .9rem;
}
.rp-field input:focus, .rp-field select:focus, .rp-field textarea:focus {
    box-shadow: 0 0 0 2px var(--sk-accent);
}
.rp-field select option { background: var(--sk-surface); }
.rp-full { grid-column: 1 / -1; }
.rp-submit { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ══ SERVICES PAGE — PREMIUM ══ */
.services-page { max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 4rem; }

.srv-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    margin-bottom: 4rem; border-radius: var(--radius); overflow: hidden;
    background: var(--sk-surface); box-shadow: var(--shadow-md);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.srv-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.srv-block.reverse { direction: rtl; }
.srv-block.reverse > * { direction: ltr; }

.srv-image { overflow: hidden; position: relative; }
.srv-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    position: absolute; inset: 0;
    transition: transform .7s var(--ease);
}
.srv-block:hover .srv-image img { transform: scale(1.06); }

.srv-content {
    padding: 3rem; display: flex; flex-direction: column; justify-content: center;
}
.srv-number {
    font-family: var(--font-display); font-size: 3rem; font-weight: 800;
    color: rgba(222,83,40,.15); line-height: 1; margin-bottom: 1rem;
}
.srv-content h2 {
    font-family: var(--font-display); font-size: 1.5rem; color: #fff;
    margin-bottom: 1rem; line-height: 1.2;
}
.srv-content p {
    color: var(--sk-text-muted); line-height: 1.8; margin-bottom: .75rem;
    font-size: .95rem;
}
.srv-link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--sk-accent); font-weight: 700; font-size: .9rem;
    margin-top: .75rem; transition: gap .3s var(--ease);
}
.srv-link:hover { gap: .8rem; color: #ff7a54; }

.srv-cta {
    text-align: center; padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, var(--sk-accent-soft), transparent 60%);
    border-radius: 32px; max-width: 800px; margin: 0 auto 4rem;
}
.srv-cta h2 { font-family: var(--font-display); color: #fff; font-size: 2rem; margin-bottom: .75rem; }
.srv-cta p { color: var(--sk-text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ══ RECRUTEMENT PAGE — PREMIUM ══ */
.recruit-video-section { padding: 0 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.recruit-video-wrap {
    position: relative; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.recruit-video-wrap video { width: 100%; display: block; max-height: 450px; object-fit: cover; filter: brightness(.6); }
.recruit-video-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(5,5,7,.4), rgba(222,83,40,.1));
}
.recruit-video-overlay h2 {
    font-family: var(--font-display); color: #fff; font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
}

.recruit-intro { max-width: 800px; margin: 0 auto; text-align: center; }
.recruit-intro h2 { font-family: var(--font-display); font-size: 2rem; color: #fff; margin-bottom: 1.25rem; }
.recruit-intro p { color: var(--sk-text-muted); font-size: 1.1rem; line-height: 1.9; }

.recruit-why { max-width: 1100px; margin: 0 auto; }
.recruit-why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.recruit-why-card {
    padding: 2rem; border-radius: var(--radius); background: var(--sk-surface);
    text-align: center; transition: all .4s var(--ease); box-shadow: var(--shadow-sm);
}
.recruit-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.recruit-why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.recruit-why-card h3 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.recruit-why-card p { color: var(--sk-text-muted); font-size: .88rem; line-height: 1.6; }

.recruit-jobs { max-width: 1100px; margin: 0 auto; }
.recruit-jobs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.recruit-job {
    padding: 2rem; border-radius: var(--radius); background: var(--sk-surface);
    transition: all .4s var(--ease); box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
}
.recruit-job::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--sk-gradient);
    transform: scaleX(0); transition: transform .4s var(--ease);
    transform-origin: left;
}
.recruit-job:hover::before { transform: scaleX(1); }
.recruit-job:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.recruit-job h3 { color: var(--sk-accent); font-size: 1rem; margin-bottom: .75rem; }
.recruit-job p { color: var(--sk-text-muted); font-size: .88rem; line-height: 1.6; }

.recruit-cta {
    text-align: center; padding: 5rem 2rem;
    background: radial-gradient(ellipse at center, var(--sk-accent-soft), transparent 60%);
    border-radius: 32px; max-width: 800px; margin: 0 auto 4rem;
}
.recruit-cta h2 { font-family: var(--font-display); color: #fff; font-size: 2rem; margin-bottom: .75rem; }
.recruit-cta p { color: var(--sk-text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.legal-content h2 { color: #fff; margin: 2rem 0 .75rem; }
.legal-content p { color: var(--sk-text-muted); margin-bottom: 1rem; }

/* ══ FOOTER ══ */
.footer {
    background: var(--sk-surface); padding: 4rem 2rem 2rem;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    margin-bottom: 3rem;
}
.footer h3 { font-size: .85rem; color: #fff; margin-bottom: 1rem; letter-spacing: .04em; font-weight: 700; }
.footer p, .footer a { font-size: .85rem; color: var(--sk-text-dim); line-height: 1.8; }
.footer a { display: block; transition: color .3s; }
.footer a:hover { color: var(--sk-accent); }
.footer-bottom {
    display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.04); padding-top: 2rem;
}
.copyright { font-size: .78rem; color: var(--sk-text-dim); margin: 0; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { display: inline; font-size: .78rem; color: var(--sk-text-dim); }

/* ══ COOKIE ══ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--sk-surface-glass); backdrop-filter: blur(20px); padding: 1rem 2rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner p { font-size: .85rem; color: var(--sk-text-muted); margin: 0; }
.cookie-banner a { color: var(--sk-accent); }
.cookie-actions { display: flex; gap: .75rem; }
.btn-accept, .btn-refuse { padding: .45rem 1.25rem; border-radius: 60px; font-size: .8rem; cursor: pointer; font-family: var(--font-body); }
.btn-accept { background: var(--sk-accent); color: #fff; }
.btn-refuse { background: transparent; color: var(--sk-text-muted); }

/* ══ CONTACT INFO ══ */
.contact-info { display: flex; flex-direction: column; gap: .75rem; }
.contact-link { display: flex; align-items: center; gap: .6rem; color: var(--sk-text); padding: .5rem 0; }
.contact-link svg { color: var(--sk-accent); flex-shrink: 0; }
.contact-link.social { color: var(--sk-accent); font-weight: 600; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .vd-layout { grid-template-columns: 1fr; }
    .vd-sidebar { position: static; order: -1; }
    .vd-sidebar-card { margin-bottom: 2rem; }
    .services-grid-home { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid-home { grid-template-columns: repeat(2, 1fr); }
    .reviews-carousel { grid-template-columns: repeat(2, 1fr); }
    .why-grid-home { grid-template-columns: 1fr; }
    .concessions-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    /* Adjust hero badge for tablets */
    .hero-badge { font-size: .6rem; padding: .5rem 1rem; letter-spacing: .12em; white-space: nowrap; }

    /* Catalog sidebar becomes fullscreen overlay on tablet/mobile */
    .catalog-layout {
        grid-template-columns: 1fr;
        padding: 0 1rem 5rem;
    }
    .catalog-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        z-index: 9999;
        background: var(--sk-bg);
        padding: 1.5rem;
        padding-top: 1rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform .3s var(--ease);
    }
    .catalog-sidebar.show {
        transform: translateX(0);
    }
    .catalog-sidebar::before { display: none; }
    body.filters-open { overflow: hidden; }
    .mobile-filter-toggle { display: block; }
    .sidebar-filters { padding: 0; padding-bottom: 2rem; }
    .sidebar-title {
        margin-top: 0;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .sidebar-close {
        display: block;
        background: none;
        border: none;
        color: var(--sk-text-muted);
        font-size: 1.5rem;
        cursor: pointer;
        padding: .5rem;
    }
    .sidebar-apply-mobile {
        display: block;
        position: sticky;
        bottom: 0;
        margin-top: 1rem;
    }
}
/* ══ BURGER MENU PREMIUM ══ */
.burger { display: none; background: none; cursor: pointer; padding: .5rem; z-index: 99999; position: relative; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; transition: all .4s cubic-bezier(.68,-.55,.27,1.55); border-radius: 2px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: var(--sk-accent); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); background: var(--sk-accent); }
.nav-phone { display: none; }
.mobile-only { display: none; }
@media (max-width: 768px) {
    .nav-dropdown { display: none !important; }
    .mobile-only { display: block !important; }
    .burger { display: block; }
    .navbar-phones { display: none !important; }
    .nav-links {
        display: none !important; position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
        width: 100vw !important; height: 100vh !important;
        background: radial-gradient(ellipse at top right, #1a1015, #050507 60%) !important;
        z-index: 9999 !important; flex-direction: column !important;
        align-items: center !important; justify-content: center !important; gap: 0 !important;
    }
    .nav-links.show { display: flex !important; }
    .nav-links a, .nav-links .nav-dropdown-trigger {
        font-size: 1.4rem !important; font-weight: 600 !important; color: #fff !important;
        text-transform: none !important; padding: 1rem 2rem !important;
        position: relative; opacity: 0; transform: translateX(-40px);
        text-align: center !important; width: 100% !important;
    }
    .nav-links a::after, .nav-links a::before { display: none !important; }
    .nav-links.show a, .nav-links.show .nav-dropdown-trigger { animation: menuSlideIn .5s cubic-bezier(.4,0,.2,1) forwards; }
    .nav-links.show a:nth-child(1), .nav-links.show > :nth-child(1) { animation-delay: .05s; }
    .nav-links.show a:nth-child(2), .nav-links.show > :nth-child(2) { animation-delay: .1s; }
    .nav-links.show a:nth-child(3), .nav-links.show > :nth-child(3) { animation-delay: .15s; }
    .nav-links.show a:nth-child(4), .nav-links.show > :nth-child(4) { animation-delay: .2s; }
    .nav-links.show a:nth-child(5), .nav-links.show > :nth-child(5) { animation-delay: .25s; }
    .nav-links.show a:nth-child(6), .nav-links.show > :nth-child(6) { animation-delay: .3s; }
    @keyframes menuSlideIn { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
    .nav-dropdown-menu { position: static !important; transform: none !important; background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; padding: 0 !important; min-width: auto !important; border-radius: 0 !important; }
    .nav-dropdown-menu a { font-size: 1.1rem !important; color: var(--sk-text-muted) !important; }
    .nav-phone { display: block !important; color: var(--sk-accent) !important; font-weight: 700 !important; font-size: 1.1rem !important; margin-top: 1rem !important; padding: .75rem 2rem !important; border-radius: 60px; background: rgba(222,83,40,.1) !important; }

    /* ── Mobile content adaptations ── */
    .navbar { height: 64px; padding: 0 1rem; }
    .brand-logo { height: 42px; margin: -8px 0; }
    .hero { height: 100vh; min-height: 100vh; }
    .hero h1 { font-size: 2rem; }
    .hero .subtitle { font-size: .95rem; margin-bottom: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-badge { font-size: .5rem; padding: .4rem .9rem; letter-spacing: .1em; white-space: nowrap; }
    section { padding: 3rem 1.25rem; }

    .welcome-content { grid-template-columns: 1fr; gap: 2rem; }
    .vehicles-grid-home { grid-template-columns: 1fr; gap: 1.25rem; }
    .vehicles-grid { grid-template-columns: 1fr; gap: 1rem; }
    .catalog-header { flex-direction: row; gap: .75rem; padding: .65rem .85rem; }
    .catalog-count { font-size: .85rem; }
    .rp-sticky-bar { bottom: 1rem; right: 1rem; left: 1rem; justify-content: center; font-size: .75rem; padding: .6rem 1rem; }
    .rp-sticky-text { text-align: center; }
    .vehicle-card-img { height: 220px; }
    .vehicle-card { border-radius: 16px; }
    .vehicle-card-info { padding: 1.25rem; }
    .vehicle-card-info h3 { font-size: 1.15rem; }
    .vehicle-card-price { font-size: 1.5rem; }

    .why-item { padding: 1.5rem; }
    .why-icon { font-size: 2rem; margin-bottom: .5rem; }
    .why-item h3 { font-size: 1.05rem; }

    .pill { padding: .45rem .9rem; font-size: .75rem; }
    .filter-pills { justify-content: center; }
    .home-filters-card { padding: 1.25rem 1rem; margin: 0 .5rem 2.5rem; }
    .home-filters-main { gap: 1.25rem; }
    .home-filter-block { width: 100%; align-items: center; }
    .home-pills { justify-content: center; }
    .home-select { width: 100%; max-width: 280px; text-align: center; }
    .home-filters-expanded { gap: 1rem; }
    .home-filters-actions { flex-direction: column; gap: .75rem; }
    .home-btn-search { width: 100%; max-width: 280px; }
    .services-grid-home { grid-template-columns: 1fr; }
    .reviews-carousel { grid-template-columns: 1fr; gap: 1rem; }
    .google-reviews-section { padding: 3rem 1rem; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: .75rem; }
    .review-card { padding: 1.25rem; }
    .why-grid-home { grid-template-columns: 1fr; }
    .recrutement-home-content { grid-template-columns: 1fr; }
    .contact-full .contact-form { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }

    .concessions-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .concession-col { padding: 1.5rem; }
    .concession-map iframe { height: 160px; }
    .footer-content { grid-template-columns: 1fr; }

    .filters-bar { flex-direction: column; }
    .filter-group { min-width: 100%; }
    .search-input { min-width: 100%; }
    .catalog-count { flex-direction: column; text-align: center; }
    .featured-filters { flex-direction: column; align-items: center; }

    .srv-block, .srv-block.reverse { grid-template-columns: 1fr; direction: ltr; }
    .srv-image { min-height: 250px; position: relative; }
    .srv-content { padding: 1.5rem; }

    .vd-page { padding: 80px 1rem 3rem; }
    .vd-header { flex-direction: column; gap: 1rem; padding: 1rem 0; }
    .vd-header-right { width: 100%; }
    .vd-price-box { text-align: left; display: flex; align-items: baseline; gap: .5rem; }
    .vd-price-value { font-size: 1.75rem; }
    .vd-title { font-size: 1.25rem; }
    .vd-main { grid-template-columns: 1fr; }
    .vd-sidebar { position: static; order: -1; }
    .vd-gallery-main { aspect-ratio: 4/3; }
    .vd-nav { opacity: 1; width: 40px; height: 40px; }
    .vd-nav.prev { left: .5rem; }
    .vd-nav.next { right: .5rem; }
    .vd-quickspecs { grid-template-columns: repeat(2, 1fr); }
    .vd-equipment-list { grid-template-columns: 1fr; }
    .vd-specs-table { grid-template-columns: 1fr; }
    .vd-section { padding: 1.25rem; }
    .vd-contact-card { padding: 1.25rem; }
    .vd-lightbox-nav { width: 45px; height: 45px; }
    .vd-lightbox-nav.prev { left: .5rem; }
    .vd-lightbox-nav.next { right: .5rem; }

    .rp-grid, .rp-grid-2, .rp-grid-4 { grid-template-columns: 1fr; }

    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: .9rem; margin-bottom: 2rem; }

    .rp-sticky-bar { right: 1rem; left: 1rem; bottom: 1rem; justify-content: center; font-size: .75rem; }
}

/* ══ PRINT STYLES ══ */
@media print {
    body { background: #fff !important; color: #000 !important; }
    .navbar, .footer, .vd-sidebar, .vd-nav, .vd-thumbs, .vd-lightbox,
    .vd-btn-pdf, .locations-section, .vd-back { display: none !important; }
    .vd-page { padding: 0 !important; max-width: 100% !important; }
    .vd-main { display: block !important; }
    .vd-header { border-bottom: 2px solid #000 !important; padding-bottom: 1rem !important; }
    .vd-title { color: #000 !important; font-size: 1.5rem !important; }
    .vd-price-value { color: #c00 !important; -webkit-text-fill-color: #c00 !important; }
    .vd-gallery { margin-bottom: 1rem !important; box-shadow: none !important; }
    .vd-gallery-main { aspect-ratio: 16/9 !important; background: #fff !important; }
    .vd-gallery-main img { object-fit: contain !important; }
    .vd-photo-count, .vd-sold-ribbon { display: none !important; }
    .vd-quickspecs { background: #f5f5f5 !important; border: 1px solid #ddd !important; }
    .vd-qs { background: transparent !important; border: none !important; }
    .vd-qs-label { color: #666 !important; }
    .vd-qs-value { color: #000 !important; }
    .vd-section { background: #fff !important; border: 1px solid #ddd !important; page-break-inside: avoid; }
    .vd-section h2 { color: #000 !important; border-bottom-color: #ddd !important; }
    .vd-tab { display: none !important; }
    .vd-tab.active { display: inline-block !important; background: #000 !important; color: #fff !important; }
    .vd-equip-item { color: #000 !important; }
    .vd-equip-item svg { color: #22c55e !important; }
    .vd-spec-row { border-bottom-color: #eee !important; }
    .vd-spec-label { color: #666 !important; }
    .vd-spec-value { color: #000 !important; }
    .vd-description { color: #333 !important; }
}
