:root {
    --navy:        #051937;
    --navy-light:  #0a2550;
    --navy-mid:    #0d1e3a;
    --cyan:        #00C2FF;
    --cyan-dim:    rgba(0,194,255,0.12);
    --cyan-glow:   rgba(0,194,255,0.4);
    --silver:      #E5E7EB;
    --white:       #FFFFFF;
    --card-bg:     #0b1c36;
    --card-border: rgba(0,194,255,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #040f20;
    font-family: 'Inter', sans-serif;
    color: var(--silver);
    overflow-x: hidden;
}

/* ── Breadcrumb ── */
.vp-breadcrumb {
    background: rgba(5,25,55,0.6);
    border-bottom: 1px solid rgba(0,194,255,0.08);
    padding: 0.85rem 0;
    font-size: 0.78rem;
    color: var(--silver);
    opacity: 0.6;
}
.vp-breadcrumb a { color: var(--silver); opacity: 0.6; text-decoration: none; }
.vp-breadcrumb a:hover { color: var(--cyan); opacity: 1; }
.vp-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.35; }
.vp-breadcrumb .current { color: var(--cyan); opacity: 1; }

/* ── Hero banner ── */
.vp-hero {
    background: linear-gradient(135deg, #020e22 0%, #051937 60%, #071f42 100%);
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 0;
}
.vp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,194,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.vp-hero-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
.vp-hero-inner { position: relative; z-index: 2; }

/* Status bar */
.vp-status-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.badge-certified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,194,255,0.1);
    border: 1px solid rgba(0,194,255,0.35);
    color: var(--cyan);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}
.badge-fuel {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--silver);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
}
.badge-dispo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: #34d399;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}
.dispo-dot {
    width: 6px; height: 6px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 6px #34d399;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Vehicle title */
.vp-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 4px;
}
.vp-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.vp-version {
    font-size: 0.95rem;
    color: var(--silver);
    opacity: 0.55;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Quick specs pills */
.vp-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.qs-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: var(--silver);
    opacity: 0.75;
}
.qs-pill i { color: var(--cyan); font-size: 0.75rem; }

/* Image gallery */
.vp-gallery {
    position: relative;
}
.vp-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    display: block;
    background: linear-gradient(135deg, #0a1f3a, #081428);
}
.vp-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #071a35 0%, #0d2548 50%, #051630 100%);
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid rgba(0,194,255,0.08);
    border-bottom: none;
}
.vp-img-placeholder i { font-size: 4rem; color: rgba(0,194,255,0.2); }
.vp-img-placeholder span { font-size: 0.8rem; color: rgba(229,231,235,0.3); letter-spacing: 0.1em; text-transform: uppercase; }

.vp-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 6px;
}
.vp-thumb {
    height: 70px;
    background: linear-gradient(135deg, #071a35, #0d2548);
    border-radius: 6px;
    border: 1px solid rgba(0,194,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
    overflow: hidden;
}
.vp-thumb:first-child { border-color: rgba(0,194,255,0.4); }
.vp-thumb:hover { border-color: rgba(0,194,255,0.3); }
.vp-thumb i { color: rgba(0,194,255,0.2); font-size: 1.2rem; }
.vp-thumb-count {
    background: rgba(0,0,0,0.5);
    font-size: 0.78rem;
    color: var(--silver);
    font-weight: 600;
}

/* ── Sticky sidebar card ── */
.vp-sidebar {
    position: sticky;
    top: 1.5rem;
}
.vp-price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
}
.vp-price-header {
    background: linear-gradient(135deg, rgba(0,194,255,0.08), rgba(0,80,200,0.1));
    border-bottom: 1px solid rgba(0,194,255,0.12);
    padding: 1.5rem 1.5rem 1.2rem;
}
.vp-price-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    display: block;
    margin-bottom: 0.3rem;
}
.vp-price-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}
.vp-price-ht {
    font-size: 0.75rem;
    color: var(--silver);
    opacity: 0.45;
    margin-top: 4px;
    display: block;
}
.vp-price-body { padding: 1.4rem 1.5rem; }

.vp-ref-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--silver);
    opacity: 0.5;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vp-ref-row span:last-child { color: var(--cyan); opacity: 1; font-weight: 600; font-family: 'Montserrat', sans-serif; }

.btn-primary-mobex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--cyan) 0%, #0099dd 100%);
    color: #021225;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,194,255,0.3);
    margin-bottom: 0.75rem;
    cursor: pointer;
}
.btn-primary-mobex:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,194,255,0.5);
    color: #021225;
    text-decoration: none;
}

.btn-outline-mobex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.btn-outline-mobex:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,194,255,0.06);
    text-decoration: none;
}

.vp-seller-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0.5rem;
}
.seller-avatar {
    width: 36px; height: 36px;
    background: rgba(0,194,255,0.15);
    border: 1px solid rgba(0,194,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.seller-avatar i { color: var(--cyan); font-size: 0.9rem; }
.seller-name { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.seller-role { font-size: 0.7rem; color: var(--silver); opacity: 0.45; }
.seller-verified { margin-left: auto; }
.seller-verified i { color: var(--cyan); font-size: 1rem; }

/* ── Section principale ── */
.vp-section {
    background: #040f20;
    padding: 2.5rem 0;
}

/* Section block */
.info-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.info-block-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(0,194,255,0.08);
    background: rgba(0,194,255,0.03);
}
.info-block-header i { color: var(--cyan); font-size: 1rem; }
.info-block-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
}
.info-block-body { padding: 1.3rem 1.4rem; }

/* Spec grid */
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.spec-item {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.spec-item:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid rgba(255,255,255,0.04); }
.spec-item:nth-child(even) { padding-left: 1.5rem; }
.spec-item:nth-last-child(-n+2) { border-bottom: none; }
.spec-key {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    opacity: 0.4;
}
.spec-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}
.spec-val.accent { color: var(--cyan); }

/* Highlight stats */
.highlight-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0,194,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.hstat {
    background: var(--card-bg);
    padding: 1.2rem 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.hstat:hover { background: rgba(0,194,255,0.04); }
.hstat-icon {
    width: 36px; height: 36px;
    background: rgba(0,194,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hstat-icon i { color: var(--cyan); font-size: 0.9rem; }
.hstat-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1;
}
.hstat-label {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--silver);
    opacity: 0.4;
}

/* Equipment list */
.equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
.equip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--silver);
    opacity: 0.7;
    padding: 5px 0;
}
.equip-item i { color: var(--cyan); font-size: 0.75rem; flex-shrink: 0; }

/* History & report */
.history-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.history-row:last-child { border-bottom: none; padding-bottom: 0; }
.history-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.history-icon.ok { background: rgba(16,185,129,0.12); }
.history-icon.ok i { color: #34d399; }
.history-icon.warn { background: rgba(245,158,11,0.12); }
.history-icon.warn i { color: #fbbf24; }
.history-icon.info { background: rgba(0,194,255,0.12); }
.history-icon.info i { color: var(--cyan); }
.history-content {}
.history-label { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.history-detail { font-size: 0.75rem; color: var(--silver); opacity: 0.45; margin-top: 2px; }

/* Score card */
.score-card {
    background: linear-gradient(135deg, rgba(0,194,255,0.06), rgba(0,80,200,0.08));
    border: 1px solid rgba(0,194,255,0.15);
    border-radius: 12px;
    padding: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.score-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--cyan) 0% 87%, rgba(0,194,255,0.1) 87% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}
.score-circle::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: #0b1c36;
    border-radius: 50%;
}
.score-num {
    position: relative;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1;
}
.score-label { font-size: 0.78rem; font-weight: 600; color: var(--silver); opacity: 0.6; }
.score-desc { font-size: 0.75rem; color: var(--silver); opacity: 0.45; margin-top: 0.5rem; }

/* Cotation market */
.market-bar-wrap { margin-bottom: 1.2rem; }
.market-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: var(--silver);
    opacity: 0.55;
    margin-bottom: 6px;
}
.market-bar-label .val { color: var(--white); font-weight: 600; opacity: 1; }
.market-bar-track {
    height: 6px;
    background: rgba(255,255,255,0.07);
    border-radius: 99px;
    position: relative;
}
.market-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), #0099dd);
    border-radius: 99px;
    position: relative;
}
.market-bar-indicator {
    position: absolute;
    right: -1px; top: -4px;
    width: 14px; height: 14px;
    background: var(--cyan);
    border-radius: 50%;
    border: 2px solid #0b1c36;
    box-shadow: 0 0 8px var(--cyan-glow);
}
.market-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    color: #34d399;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-top: 0.8rem;
}

/* ── Galerie principale ── */
.photo-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    border-radius: 12px;
    overflow: hidden;
    height: 340px;
    margin-bottom: 1.5rem;
}

/* Cellule générique */
.photo-cell {
    background: linear-gradient(135deg, #071a35, #0d2548);
    border: 1px solid rgba(0,194,255,0.07);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.photo-cell.photo-contain img {
    object-fit: contain;
    background: #071a35;
    padding: 0;
}

/* Hover légèrement zoomé sur cover, stable sur contain */
.photo-cell:hover img { transform: scale(1.04); }
.photo-cell.photo-contain:hover img       { filter: brightness(1.08); }

/* Grande photo : 1ère colonne, toute la hauteur */
.photo-cell.photo-main { grid-row: 1 / 3; }

/* Overlay loupe au survol */
.photo-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,194,255,0.0);
    transition: background 0.25s;
    pointer-events: none;
}
.photo-cell:hover::after { background: rgba(0,194,255,0.06); }

/* Icône loupe */
.photo-zoom-hint {
    position: absolute;
    bottom: 10px; right: 10px;
    width: 30px; height: 30px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(0,194,255,0.3);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 2;
}
.photo-zoom-hint i { color: var(--cyan); font-size: 0.75rem; }
.photo-cell:hover .photo-zoom-hint { opacity: 1; }

/* Cellule "+N photos" */
.photo-more-cell {
    background: rgba(5,25,55,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(0,194,255,0.1);
}
.photo-more-cell:hover { background: rgba(0,194,255,0.08); }
.photo-more-cell span { font-size: 1.2rem; font-weight: 800; color: var(--white); font-family: 'Montserrat', sans-serif; }
.photo-more-cell small { font-size: 0.62rem; color: var(--silver); opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Visionneuse (lightbox) ── */
.vp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2,8,18,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
}
.vp-lightbox.active { display: flex; }

.vp-lightbox-img-wrap {
    position: relative;
    max-width: 900px;
    max-height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vp-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 80px rgba(0,194,255,0.15);
    display: block;
}
/* Placeholder texte si pas d'image réelle */
.vp-lightbox-placeholder {
    width: 100%;
    max-width: 900px;
    height: 60vh;
    background: linear-gradient(135deg, #071a35, #0d2548);
    border-radius: 10px;
    border: 1px solid rgba(0,194,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.vp-lightbox-placeholder i { font-size: 4rem; color: rgba(0,194,255,0.2); }
.vp-lightbox-placeholder span { font-size: 0.8rem; color: rgba(229,231,235,0.3); text-transform: uppercase; letter-spacing: 0.1em; }

/* Contrôles */
.vp-lb-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(0,194,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--silver);
    font-size: 1.1rem;
    transition: all 0.2s;
    z-index: 10;
}
.vp-lb-close:hover { background: rgba(0,194,255,0.15); color: var(--cyan); border-color: var(--cyan); }

.vp-lb-nav {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,194,255,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--silver);
    font-size: 1.1rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.vp-lb-nav:hover { background: rgba(0,194,255,0.12); color: var(--cyan); border-color: var(--cyan); }

.vp-lb-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin-top: 0;
}

.vp-lb-counter {
    font-size: 0.78rem;
    color: var(--silver);
    opacity: 0.45;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
    margin: 0.8rem 0;
}
.vp-lb-counter strong { color: var(--cyan); opacity: 1; }

/* Thumbnails strip */
.vp-lb-thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
    padding: 2px;
}
.vp-lb-thumbs::-webkit-scrollbar { display: none; }
.vp-lb-thumb {
    width: 60px; height: 44px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(0,194,255,0.1);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    background: #071a35;
}
.vp-lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vp-lb-thumb.active { border-color: var(--cyan); transform: scale(1.06); }
.vp-lb-thumb-ph {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #071a35, #0d2548);
}
.vp-lb-thumb-ph i { color: rgba(0,194,255,0.25); font-size: 0.9rem; }

/* Timeline */
.vp-timeline { padding: 0; list-style: none; }
.tl-item {
    display: flex;
    gap: 14px;
    padding-bottom: 1.2rem;
    position: relative;
}
.tl-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 32px;
    bottom: 0;
    width: 1px;
    background: rgba(0,194,255,0.15);
}
.tl-dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,194,255,0.1);
    border: 1px solid rgba(0,194,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tl-dot i { color: var(--cyan); font-size: 0.75rem; }
.tl-date { font-size: 0.68rem; color: var(--silver); opacity: 0.4; margin-bottom: 2px; }
.tl-event { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.tl-sub { font-size: 0.72rem; color: var(--silver); opacity: 0.45; margin-top: 2px; }

/* Mobile bottom CTA */
.vp-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(4,15,32,0.97);
    border-top: 1px solid rgba(0,194,255,0.15);
    padding: 1rem 1.25rem;
    z-index: 999;
    backdrop-filter: blur(12px);
}
.mobile-cta-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mobile-price-group { flex: 1; }
.mobile-price-label { font-size: 0.62rem; color: var(--cyan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: block; }
.mobile-price-val { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--white); line-height: 1; }
.btn-mobile-cta {
    background: linear-gradient(135deg, var(--cyan) 0%, #0099dd 100%);
    color: #021225;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,194,255,0.35);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991.98px) {
    .vp-sidebar { position: static; }
    .vp-mobile-cta { display: block; }
    body { padding-bottom: 90px; }
    .highlight-stats { grid-template-columns: repeat(2, 1fr); }
    .photo-preview-grid { height: 240px; }
}
@media (max-width: 767.98px) {
    .spec-grid { grid-template-columns: 1fr; }
    .spec-item:nth-child(odd) { padding-right: 0; border-right: none; }
    .spec-item:nth-child(even) { padding-left: 0; }
    .spec-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .spec-item:last-child { border-bottom: none; }
    .equip-grid { grid-template-columns: 1fr; }
    .vp-main-img, .vp-img-placeholder { height: 240px; }
    .vp-thumbnails { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575.98px) {
    .highlight-stats { grid-template-columns: repeat(2, 1fr); }
    .vp-title { font-size: 1.7rem; }
    .photo-preview-grid { height: 200px; }
    .vp-lb-thumbs { display: none; }
}
