/* ============================================================
   CKF Motors — Vehicle Detail Page
   Design: White premium, clean, ASS LOC style
   ============================================================ */

:root {
    --vp-font: 'Montserrat', system-ui, sans-serif;
    --vp-black: #0a0a0a;
    --vp-white: #ffffff;
    --vp-gray-100: #f7f7f7;
    --vp-gray-200: #eeeeee;
    --vp-gray-300: #cccccc;
    --vp-gray-400: #999999;
    --vp-gray-500: #888888;
    --vp-gray-600: #666666;
    --vp-gray-700: #444444;
    --vp-radius: 20px;
    --vp-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   PAGE WRAPPER — Force white background over body black
   ============================================================ */

/* Override body bg/color when on vehicle page */
body.vp-body {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

body.vp-body::-webkit-scrollbar-track {
    background: #f7f7f7 !important;
}

body.vp-body::-webkit-scrollbar-thumb {
    background: #cccccc !important;
}

.vp-page {
    background: #ffffff !important;
    color: #0a0a0a !important;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Reset Tailwind's text-white inheritance for all vehicle page children */
.vp-page .vp-main,
.vp-page .vp-info,
.vp-page .vp-description,
.vp-page .vp-description-inline,
.vp-page .vp-pricing-mobile {
    color: #0a0a0a;
}

/* ============================================================
   HERO — Full-screen vehicle showcase
   ============================================================ */

.vehicule-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicule-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.vehicule-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicule-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.vehicule-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.vehicule-hero__brand {
    font-family: var(--vp-font);
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.vehicule-hero__model {
    font-family: var(--vp-font);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 10px 0 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.vehicule-hero__subtitle {
    font-family: var(--vp-font);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0 0;
}

/* ============================================================
   MAIN SECTION — 2 columns (gallery + card)
   ============================================================ */

.vp-main {
    background: var(--vp-white);
    padding: 50px 40px 0;
}

.vp-main__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.vp-main__gallery {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* On desktop, show info-wrap (brand/model) between gallery and specs */
.vp-main__info-wrap {
    display: block;
}

/* On desktop, hide the hero-img (hero section handles this) */
.vp-main__hero-img-wrap {
    display: none;
}

/* On desktop, reorder: gallery carousel at top, then brand/model, then specs, then description */
.vp-main__gallery-wrap {
    order: 1;
}

.vp-main__info-wrap {
    order: 2;
}

.vp-main__pricing-wrap {
    order: 3;
}

.vp-main__specs-wrap {
    order: 4;
}

.vp-main__desc-wrap {
    order: 5;
}

.vp-main__sidebar {
    position: sticky;
    top: 100px;
}

/* ============================================================
   GALLERY — Rounded carousel with white arrows
   ============================================================ */

.vp-gallery {
    position: relative;
}

.vp-gallery__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--vp-radius);
    overflow: hidden;
    background: var(--vp-gray-100);
}

.vp-gallery__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s var(--vp-transition);
    pointer-events: none;
}

.vp-gallery__img.is-active {
    opacity: 1;
    pointer-events: auto;
}

.vp-gallery__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vp-gray-100);
}

/* Arrows */
.vp-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--vp-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--vp-transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.vp-gallery__arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.vp-gallery__arrow--prev {
    left: 16px;
}

.vp-gallery__arrow--next {
    right: 16px;
}

/* Dots */
.vp-gallery__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.vp-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.vp-gallery__dot.is-active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.vp-gallery__dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SIDEBAR CARD — White card, soft shadow
   ============================================================ */

.vp-card {
    background: var(--vp-white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.vp-card__header {
    text-align: center;
    margin-bottom: 20px;
}

.vp-card__brand {
    font-family: var(--vp-font);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--vp-black);
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin: 0;
}

.vp-card__model {
    font-family: var(--vp-font);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vp-gray-400);
    margin: 4px 0 0;
}

.vp-card__thumb {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.vp-card__thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.vp-card__section {
    margin-bottom: 22px;
}

.vp-card__section-title {
    font-family: var(--vp-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vp-black);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vp-card__subtitle {
    font-family: var(--vp-font);
    font-size: 9px;
    color: var(--vp-gray-400);
    letter-spacing: 0.04em;
    margin: -8px 0 12px;
}

.vp-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vp-card__row:last-child {
    border-bottom: none;
}

.vp-card__label {
    font-family: var(--vp-font);
    font-size: 11px;
    color: var(--vp-gray-500);
}

.vp-card__label em {
    font-style: italic;
    font-size: 10px;
    color: var(--vp-gray-300);
}

.vp-card__value {
    font-family: var(--vp-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--vp-black);
}

.vp-card__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-family: var(--vp-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vp-white);
    background: var(--vp-black);
    border: 1px solid var(--vp-black);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.vp-card__cta:hover {
    background: var(--vp-white);
    color: var(--vp-black);
}

/* ============================================================
   INFO SECTION — Title (Brand + Model)
   Visible on both desktop and mobile
   ============================================================ */

.vp-info {
    background: var(--vp-white);
    padding: 30px 0 0;
    display: block;
}

.vp-info__container {
    max-width: 100%;
    margin: 0;
}

.vp-info__header {
    margin-bottom: 30px;
}

.vp-info__brand {
    font-family: var(--vp-font);
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--vp-black);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}

.vp-info__model {
    font-family: var(--vp-font);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vp-gray-400);
    margin: 6px 0 0;
}

/* ============================================================
   SPECS — Horizontal row with vertical separators
   ============================================================ */

.vp-specs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vp-specs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 28px;
}

.vp-specs__sep {
    width: 1px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.vp-specs__label {
    font-family: var(--vp-font);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vp-gray-500);
    margin-bottom: 4px;
}

.vp-specs__value {
    font-family: var(--vp-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--vp-gray-700);
}

/* ============================================================
   DESCRIPTION INLINE — Inside gallery column
   ============================================================ */

.vp-description-inline {
    padding: 30px 0 0;
}

.vp-description-inline .vp-description__text {
    font-family: var(--vp-font);
    font-size: 15px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 40px;
}

.vp-description-inline .vp-description__section {
    margin-bottom: 40px;
    opacity: 1;
    transform: translateY(0);
}

.vp-description-inline .vp-description__section-title {
    font-family: var(--vp-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--vp-black);
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}

.vp-description-inline .vp-description__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.15);
}

.vp-description-inline .vp-description__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-description-inline .vp-description__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--vp-font);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.7;
    margin-bottom: 10px;
}

.vp-description-inline .vp-description__list-item strong {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
}

.vp-description-inline .vp-description__bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ============================================================
   DESCRIPTION — Text + Detail sections
   ============================================================ */

.vp-description {
    background: var(--vp-white);
    padding: 50px 40px 80px;
}

.vp-description__container {
    max-width: 900px;
    margin: 0 auto;
}

.vp-description__text {
    font-family: var(--vp-font);
    font-size: 15px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 50px;
}

.vp-description__section {
    margin-bottom: 45px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.vp-description__section.v-reveal-ready {
    opacity: 0;
    transform: translateY(20px);
}

.vp-description__section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vp-description__section-title {
    font-family: var(--vp-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--vp-black);
    margin-bottom: 18px;
    padding-bottom: 12px;
    position: relative;
}

.vp-description__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.15);
}

.vp-description__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-description__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--vp-font);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.7;
    margin-bottom: 10px;
    white-space: pre-line;
}

.vp-description__list-item strong {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
}

.vp-description__bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ============================================================
   PRICING MOBILE SLOT — Inside gallery column, visible < 1024px
   ============================================================ */

.vp-pricing-mobile-slot {
    display: none;
}

@media (max-width: 1023px) {
    .vp-pricing-mobile-slot {
        display: block;
    }

    .vp-pricing-mobile-slot .vp-pricing-mobile {
        display: block;
        padding: 10px 0 10px;
        border-top: none;
    }

    /* Cacher le header marque/modèle du pricing (déjà affiché dans vp-info) */
    .vp-pricing-mobile-slot .vp-pricing-mobile__header {
        display: none;
    }
}

/* ============================================================
   PRICING MOBILE — Visible < 1024px only
   ============================================================ */

.vp-pricing-mobile {
    display: none;
}

.vp-pricing-mobile__inner {
    max-width: 500px;
    margin: 0 auto;
}

.vp-pricing-mobile__header {
    text-align: center;
    margin-bottom: 28px;
}

.vp-pricing-mobile__brand {
    font-family: var(--vp-font);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--vp-black);
    letter-spacing: -0.01em;
    margin: 0;
}

.vp-pricing-mobile__model {
    font-family: var(--vp-font);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin: 2px 0 0;
}

.vp-pricing-mobile__block {
    margin-bottom: 20px;
}

.vp-pricing-mobile__title {
    font-family: var(--vp-font);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vp-black);
    margin: 0 0 10px;
}

.vp-pricing-mobile__note {
    font-family: var(--vp-font);
    font-size: 9px;
    color: var(--vp-gray-500);
    letter-spacing: 0.05em;
    margin: -6px 0 10px;
}

.vp-pricing-mobile__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vp-pricing-mobile__label {
    font-family: var(--vp-font);
    font-size: 12px;
    color: var(--vp-gray-500);
}

.vp-pricing-mobile__label em {
    font-style: italic;
    font-size: 10px;
    color: var(--vp-gray-300);
}

.vp-pricing-mobile__value {
    font-family: var(--vp-font);
    font-size: 13px;
    font-weight: 700;
    color: var(--vp-black);
}

.vp-pricing-mobile__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-family: var(--vp-font);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--vp-white);
    background: var(--vp-black);
    border: 1px solid var(--vp-black);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.vp-pricing-mobile__cta:hover {
    background: var(--vp-white);
    color: var(--vp-black);
}

/* ============================================================
   HERO IMAGE MOBILE — Single main image at top (mobile only)
   ============================================================ */

.vp-main__hero-img-wrap {
    display: none;
    /* Hidden on desktop — hero section handles this */
}

.vp-hero-img {
    position: relative;
}

.vp-hero-img__viewport {
    width: 100%;
    border-radius: var(--vp-radius);
    overflow: hidden;
    background: var(--vp-gray-100);
}

.vp-hero-img__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.v-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--vp-transition), transform 0.8s var(--vp-transition);
}

.v-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet & Mobile (< 1024px) ---- */
@media (max-width: 1023px) {

    /* ===== HERO : masqué en mobile (style ASS LOC) ===== */
    .vehicule-hero {
        display: none;
    }

    /* Force le fond blanc sur tout le body et le spacer de nav */
    body.vp-body,
    body.vp-body>.h-20,
    body.vp-body>div.h-20 {
        background: #ffffff !important;
    }

    /* ===== MAIN SECTION ===== */
    .vp-main {
        padding: 0;
    }

    .vp-main__container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Colonne gauche en flex column — ordre mobile naturel */
    .vp-main__gallery {
        display: flex;
        flex-direction: column;
    }

    /* Réinitialiser l'ordre pour mobile :
       1. info-wrap      (brand/model)
       2. hero-img-wrap  (image principale)
       3. pricing-wrap   (tarifs + abonnements + CTA)
       4. specs-wrap     (grille 2×3)
       5. gallery-wrap   (carousel avec flèches)
       6. desc-wrap      (description + détails)
    */
    .vp-main__info-wrap {
        order: 1;
    }

    .vp-main__hero-img-wrap {
        order: 2;
    }

    .vp-main__pricing-wrap {
        order: 3;
    }

    .vp-main__specs-wrap {
        order: 4;
    }

    .vp-main__gallery-wrap {
        order: 5;
    }

    .vp-main__desc-wrap {
        order: 6;
    }

    /* L'ordre DOM mobile :
       1. info-wrap      (brand/model)
       2. hero-img-wrap  (image principale)
       3. pricing-wrap   (tarifs + abonnements + CTA)
       4. specs-wrap     (grille 2×3)
       5. gallery-wrap   (carousel avec flèches)
       6. desc-wrap      (description + détails)
    */

    /* Info-wrap : visible en mobile */
    .vp-main__info-wrap {
        display: block;
    }

    /* Sidebar desktop : masquée */
    .vp-main__sidebar {
        display: none;
    }

    /* ===== BRAND / MODEL TITLE ===== */
    .vp-info {
        display: block;
        padding: 20px 20px 12px;
    }

    .vp-info__header {
        margin-bottom: 0;
    }

    .vp-info__brand {
        font-size: 26px;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.1;
        color: var(--vp-black);
    }

    .vp-info__model {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--vp-gray-400);
        margin: 4px 0 0;
    }

    /* ===== HERO IMAGE (image principale simple en haut) ===== */
    .vp-main__hero-img-wrap {
        display: block;
        padding: 0 20px;
    }

    .vp-hero-img__viewport {
        border-radius: 16px;
        overflow: hidden;
    }

    .vp-hero-img__img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        aspect-ratio: 16 / 10;
        border-radius: 16px;
    }

    /* ===== GALLERY CAROUSEL (en bas, entre specs et description) ===== */
    .vp-main__gallery-wrap {
        display: block;
        padding: 24px 20px 0;
    }

    .vp-gallery {
        display: block;
        position: relative;
        width: 100%;
    }

    .vp-gallery__viewport {
        position: relative;
        width: 100%;
        border-radius: 16px;
        aspect-ratio: 16 / 10;
        min-height: 200px;
        overflow: hidden;
        background: var(--vp-gray-100);
    }

    .vp-gallery__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vp-gallery__arrow {
        width: 42px;
        height: 42px;
    }

    .vp-gallery__arrow--prev {
        left: 12px;
    }

    .vp-gallery__arrow--next {
        right: 12px;
    }

    /* ===== PRICING MOBILE SLOT ===== */
    .vp-pricing-mobile-slot {
        display: block;
    }

    .vp-pricing-mobile-slot .vp-pricing-mobile {
        display: block;
        padding: 24px 20px 0;
    }

    /* Cacher le header marque/modèle du pricing (déjà affiché via vp-info) */
    .vp-pricing-mobile-slot .vp-pricing-mobile__header {
        display: none;
    }

    .vp-pricing-mobile__inner {
        max-width: 100%;
    }

    /* Tarifs section */
    .vp-pricing-mobile__block {
        margin-bottom: 24px;
    }

    .vp-pricing-mobile__title {
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--vp-black);
        margin: 0 0 12px;
    }

    .vp-pricing-mobile__note {
        font-size: 9px;
        margin: -8px 0 12px;
    }

    .vp-pricing-mobile__row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .vp-pricing-mobile__label {
        font-size: 13px;
        color: var(--vp-gray-500);
        flex-shrink: 0;
    }

    .vp-pricing-mobile__value {
        font-size: 14px;
        font-weight: 700;
        text-align: right;
        white-space: nowrap;
        color: var(--vp-black);
    }

    /* CTA Réserver */
    .vp-pricing-mobile__cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--vp-white);
        background: var(--vp-black);
        border: 1px solid var(--vp-black);
        border-radius: 30px;
        text-decoration: none;
        margin-top: 20px;
    }

    /* ===== SPECS — Grille 2 colonnes style ASS LOC ===== */
    .vp-main__specs-wrap {
        padding: 24px 20px 0;
    }

    .vp-specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: none;
        margin: 0;
    }

    .vp-specs__sep {
        display: none;
    }

    .vp-specs__item {
        padding: 16px 14px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        align-items: center;
        text-align: center;
    }

    .vp-specs__label {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: var(--vp-black);
        margin-bottom: 6px;
    }

    .vp-specs__value {
        font-size: 13px;
        font-weight: 400;
        color: var(--vp-gray-500);
    }

    /* ===== DESCRIPTION + DETAILS ===== */
    .vp-main__desc-wrap {
        padding: 0 20px;
    }

    .vp-description-inline {
        padding: 28px 0 10px;
    }

    .vp-description-inline .vp-description__text {
        font-size: 14px;
        line-height: 1.8;
        color: rgba(0, 0, 0, 0.45);
        margin-bottom: 30px;
    }

    .vp-description-inline .vp-description__section {
        margin-bottom: 32px;
    }

    .vp-description-inline .vp-description__section-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .vp-description-inline .vp-description__list-item {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    /* Standalone description section (if used) — hidden to avoid duplication */
    .vp-description {
        display: none;
    }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
    .vp-info {
        padding: 16px 16px 10px;
    }

    .vp-info__brand {
        font-size: 22px;
    }

    .vp-info__model {
        font-size: 12px;
    }

    .vp-main__gallery-wrap {
        display: block;
        padding: 0 16px;
    }

    .vp-gallery__viewport {
        border-radius: 12px;
        aspect-ratio: 4 / 3;
        min-height: 180px;
    }

    .vp-gallery__arrow {
        width: 36px;
        height: 36px;
    }

    .vp-gallery__arrow--prev {
        left: 8px;
    }

    .vp-gallery__arrow--next {
        right: 8px;
    }

    .vp-pricing-mobile-slot .vp-pricing-mobile {
        padding: 20px 16px 0;
    }

    .vp-pricing-mobile__label {
        font-size: 12px;
    }

    .vp-pricing-mobile__value {
        font-size: 13px;
    }

    .vp-pricing-mobile__cta {
        padding: 14px 0;
        font-size: 11px;
    }

    .vp-main__specs-wrap {
        padding: 20px 16px 0;
    }

    .vp-specs__item {
        padding: 12px 10px;
    }

    .vp-specs__label {
        font-size: 8px;
    }

    .vp-specs__value {
        font-size: 12px;
    }

    .vp-main__desc-wrap {
        padding: 0 16px;
    }

    .vp-main__hero-img-wrap {
        padding: 0 16px;
    }

    .vp-hero-img__viewport {
        border-radius: 12px;
    }

    .vp-hero-img__img {
        border-radius: 12px;
        aspect-ratio: 4 / 3;
    }

    .vp-description-inline {
        padding: 24px 0 10px;
    }

    .vp-description-inline .vp-description__text {
        font-size: 13px;
    }

    .vp-description-inline .vp-description__section-title {
        font-size: 16px;
    }

    .vp-description-inline .vp-description__list-item {
        font-size: 12px;
    }
}

/* ---- Extra Small (≤ 360px — petits Android) ---- */
@media (max-width: 360px) {
    .vp-info {
        padding: 14px 14px 8px;
    }

    .vp-info__brand {
        font-size: 20px;
    }

    .vp-info__model {
        font-size: 11px;
    }

    .vp-main__gallery-wrap {
        display: block;
        padding: 0 14px;
    }

    .vp-gallery__viewport {
        border-radius: 10px;
        min-height: 160px;
    }

    .vp-pricing-mobile-slot .vp-pricing-mobile {
        padding: 18px 14px 0;
    }

    .vp-pricing-mobile__label {
        font-size: 11px;
    }

    .vp-pricing-mobile__value {
        font-size: 12px;
    }

    .vp-main__specs-wrap {
        padding: 18px 14px 0;
    }

    .vp-specs__item {
        padding: 10px 8px;
    }

    .vp-specs__label {
        font-size: 7px;
    }

    .vp-specs__value {
        font-size: 11px;
    }

    .vp-main__desc-wrap {
        padding: 0 14px;
    }

    .vp-main__hero-img-wrap {
        padding: 0 14px;
    }

    .vp-hero-img__viewport {
        border-radius: 10px;
    }

    .vp-hero-img__img {
        border-radius: 10px;
    }
}

/* ---- Large screens (≥ 1440px) ---- */
@media (min-width: 1440px) {
    .vp-main__container {
        max-width: 1400px;
        grid-template-columns: 1fr 380px;
        gap: 50px;
    }
}
