/* ===========================================
   VDP SmartPath Style
   Clean, spacious, conversion-focused
   =========================================== */

:root {
    --vdp-primary: var(--brand-primary, #000);
    --vdp-accent: var(--brand-accent, #de0000);
    --vdp-bg: #fff;
    --vdp-bg-alt: var(--brand-bg-alt, #f9f7f4);
    --vdp-text: #1a1a1a;
    --vdp-text-muted: #6c757d;
    --vdp-border: var(--brand-border, #e8e3db);
    --vdp-radius: 12px;
    --vdp-radius-sm: 8px;
    --vdp-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --vdp-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===== TOP BAR ===== */
.vdp__topbar {
    background: var(--vdp-bg);
    border-bottom: 1px solid var(--vdp-border);
    padding: 0.75rem 0;
}
.vdp__topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vdp__breadcrumb {
    font-size: 0.875rem;
    color: var(--vdp-text-muted);
}
.vdp__breadcrumb a {
    color: var(--vdp-text-muted);
    text-decoration: none;
}
.vdp__breadcrumb a:hover {
    color: var(--vdp-primary);
}
.vdp__breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}
.vdp__actions {
    display: flex;
    gap: 0.5rem;
}
.vdp__action-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--vdp-border);
    border-radius: var(--vdp-radius-sm);
    background: var(--vdp-bg);
    font-size: 0.875rem;
    color: var(--vdp-text);
    cursor: pointer;
    transition: all 0.2s;
}
.vdp__action-btn:hover {
    border-color: var(--vdp-primary);
    color: var(--vdp-primary);
}

/* ===== HERO / GALLERY ===== */
.vdp__hero {
    background: var(--vdp-bg-alt);
}
.vdp__gallery {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 1rem 0;
}
.vdp__gallery-main {
    position: relative;
    aspect-ratio: 16/10;
    max-height: 480px;
    background: #000;
}
.vdp__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vdp__gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    gap: 1rem;
}
.vdp__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--vdp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--vdp-shadow);
    transition: all 0.2s;
}
.vdp__gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.vdp__gallery-nav--prev { left: 1rem; }
.vdp__gallery-nav--next { right: 1rem; }
.vdp__gallery-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    z-index: 10;
}
.vdp__gallery-fullscreen {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: var(--vdp-radius-sm);
    background: rgba(255,255,255,0.95);
    color: var(--vdp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.vdp__gallery-thumbs {
    padding: 1rem;
    background: var(--vdp-bg);
}
.vdp__gallery-thumbs-slider .swiper-slide {
    width: 120px;
    height: 80px;
    border-radius: var(--vdp-radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.vdp__gallery-thumbs-slider .swiper-slide-thumb-active,
.vdp__gallery-thumbs-slider .swiper-slide:hover {
    opacity: 1;
}
.vdp__gallery-thumbs-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== TITLE BAR ===== */
.vdp__title-bar {
    background: var(--vdp-bg);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--vdp-border);
}
.vdp__title-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.vdp__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.vdp__badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vdp__badge--new, .vdp__badge--neuf {
    background: #10b981;
    color: #fff;
}
.vdp__badge--used, .vdp__badge--usagé {
    background: #6366f1;
    color: #fff;
}
.vdp__badge--certified, .vdp__badge--certifié {
    background: #f59e0b;
    color: #fff;
}
.vdp__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vdp-text);
    margin: 0;
    line-height: 1.2;
}
.vdp__subtitle {
    font-size: 1.125rem;
    color: var(--vdp-text-muted);
    margin: 0.25rem 0 0;
}
.vdp__quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.vdp__spec-pill {
    display: inline-flex;
    padding: 0.375rem 0.75rem;
    background: var(--vdp-bg-alt);
    border-radius: 999px;
    font-size: 0.875rem;
    color: var(--vdp-text);
}

/* ===== MAIN LAYOUT ===== */
.vdp__main {
    padding: 2rem 0;
    background: var(--vdp-bg);
}
.vdp__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* ===== TABS ===== */
.vdp__tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--vdp-border);
    margin-bottom: 2rem;
}
.vdp__tab {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--vdp-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}
.vdp__tab:hover {
    color: var(--vdp-text);
}
.vdp__tab.is-active {
    color: var(--vdp-primary);
}
.vdp__tab.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--vdp-primary);
}
.vdp__panel {
    display: none;
}
.vdp__panel.is-active {
    display: block;
}

/* ===== SIDEBAR ===== */
.vdp__sidebar {
    position: sticky;
    top: 1rem;
}
.vdp__sidebar-sticky {
    background: var(--vdp-bg);
    border: 1px solid var(--vdp-border);
    border-radius: var(--vdp-radius);
    overflow: hidden;
    box-shadow: var(--vdp-shadow-lg);
}
.vdp__price-card {
    padding: 1.5rem;
}
.vdp__availability {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.vdp__availability--available { color: #10b981; }
.vdp__availability--reserved { color: #f59e0b; }
.vdp__availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}
.vdp__price-display {
    margin-bottom: 1.5rem;
}
.vdp__price-original {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.vdp__price-original span:first-child {
    text-decoration: line-through;
    color: var(--vdp-text-muted);
    font-size: 1rem;
}
.vdp__price-savings {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}
.vdp__price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vdp-text);
    line-height: 1;
}
.vdp__price-currency {
    font-size: 1.5rem;
}
.vdp__price-note {
    font-size: 0.875rem;
    color: var(--vdp-text-muted);
    margin-top: 0.25rem;
}

/* Calculator Toggle */
.vdp__calc {
    margin-bottom: 1.5rem;
}
.vdp__calc-toggle {
    display: flex;
    background: var(--vdp-bg-alt);
    border-radius: var(--vdp-radius-sm);
    padding: 4px;
    margin-bottom: 1rem;
}
.vdp__calc-btn {
    flex: 1;
    padding: 0.5rem;
    border: none;
    background: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vdp-text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.vdp__calc-btn.is-active {
    background: var(--vdp-bg);
    color: var(--vdp-text);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.vdp__calc-panel {
    display: none;
    text-align: center;
}
.vdp__calc-panel.is-active {
    display: block;
}
.vdp__calc-result {
    margin-bottom: 0.25rem;
}
.vdp__calc-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vdp-text);
}
.vdp__calc-period {
    font-size: 1rem;
    color: var(--vdp-text-muted);
}
.vdp__calc-details {
    font-size: 0.875rem;
    color: var(--vdp-text-muted);
    margin-bottom: 0.75rem;
}
.vdp__calc-customize {
    font-size: 0.875rem;
    color: var(--vdp-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* Primary CTA */
.vdp__cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--vdp-primary);
    color: #fff;
    border: none;
    border-radius: var(--vdp-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.vdp__cta-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Secondary CTAs */
.vdp__cta-secondary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--vdp-border);
}
.vdp__cta-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    background: none;
    border: none;
    font-size: 0.9375rem;
    color: var(--vdp-text);
    cursor: pointer;
    transition: color 0.2s;
}
.vdp__cta-link:hover {
    color: var(--vdp-primary);
}

/* Trust Badges */
.vdp__trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--vdp-border);
    background: var(--vdp-bg-alt);
}
.vdp__trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--vdp-text-muted);
    text-decoration: none;
}
.vdp__trust-badge img {
    height: 24px;
    width: auto;
}

/* Dealer Info */
.vdp__dealer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    color: var(--vdp-text-muted);
    border-top: 1px solid var(--vdp-border);
}

/* ===== OVERVIEW PANEL ===== */
.vdp__section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--vdp-text);
    margin: 0 0 1.5rem;
}
.vdp__specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.vdp__spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--vdp-bg-alt);
    border-radius: var(--vdp-radius-sm);
}
.vdp__spec-icon {
    color: var(--vdp-text-muted);
    flex-shrink: 0;
}
.vdp__spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.vdp__spec-label {
    font-size: 0.75rem;
    color: var(--vdp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vdp__spec-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--vdp-text);
}
.vdp__description {
    margin-bottom: 2rem;
}
.vdp__description-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}
.vdp__description-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--vdp-text);
}
.vdp__vin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--vdp-bg-alt);
    border-radius: var(--vdp-radius-sm);
    font-size: 0.875rem;
}
.vdp__vin-label {
    color: var(--vdp-text-muted);
}
.vdp__vin-value {
    font-family: monospace;
    font-weight: 500;
}
.vdp__vin-copy {
    margin-left: auto;
    padding: 0.25rem;
    background: none;
    border: none;
    color: var(--vdp-text-muted);
    cursor: pointer;
}
.vdp__vin-copy:hover {
    color: var(--vdp-primary);
}

/* ===== FEATURES PANEL ===== */
.vdp__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.vdp__features-category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vdp-text);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--vdp-border);
}
.vdp__features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.vdp__features-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--vdp-text);
}
.vdp__features-item svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}
.vdp__features-empty {
    color: var(--vdp-text-muted);
    text-align: center;
    padding: 2rem;
}

/* ===== HISTORY PANEL ===== */
.vdp__history-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.vdp__history-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--vdp-bg-alt);
    border-radius: var(--vdp-radius);
}
.vdp__history-card--clean {
    background: #ecfdf5;
}
.vdp__history-card--clean .vdp__history-card-icon {
    color: #10b981;
}
.vdp__history-card-icon {
    color: var(--vdp-text-muted);
    margin-bottom: 0.75rem;
}
.vdp__history-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}
.vdp__history-card p {
    font-size: 0.8125rem;
    color: var(--vdp-text-muted);
    margin: 0;
}
.vdp__carfax {
    margin-bottom: 2rem;
}
.vdp__carfax-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--vdp-bg-alt);
    border-radius: var(--vdp-radius);
    text-decoration: none;
    color: var(--vdp-text);
    transition: all 0.2s;
}
.vdp__carfax-link:hover {
    background: var(--vdp-border);
}
.vdp__carfax-logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vdp-bg);
    border-radius: var(--vdp-radius-sm);
}
.vdp__carfax-content {
    flex: 1;
}
.vdp__carfax-title {
    display: block;
    font-weight: 600;
}
.vdp__carfax-subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--vdp-text-muted);
}
.vdp__warranty {
    margin-bottom: 2rem;
}
.vdp__warranty-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem;
}
.vdp__warranty-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.vdp__warranty-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}
.vdp__warranty-item svg {
    color: #10b981;
    flex-shrink: 0;
}
.vdp__warranty-item--highlight {
    font-weight: 500;
    color: var(--vdp-primary);
}
.vdp__history-vin {
    padding: 1rem;
    background: var(--vdp-bg-alt);
    border-radius: var(--vdp-radius-sm);
}
.vdp__history-vin-label {
    display: block;
    font-size: 0.75rem;
    color: var(--vdp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.vdp__history-vin-value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.vdp__history-vin-value code {
    font-size: 1rem;
    font-weight: 500;
    background: var(--vdp-bg);
    padding: 0.375rem 0.75rem;
    border-radius: var(--vdp-radius-sm);
}
.vdp__history-vin-copy {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--vdp-bg);
    border: 1px solid var(--vdp-border);
    border-radius: var(--vdp-radius-sm);
    font-size: 0.875rem;
    color: var(--vdp-text);
    cursor: pointer;
}
.vdp__history-vin-copy:hover {
    border-color: var(--vdp-primary);
    color: var(--vdp-primary);
}

/* ===== SIMILAR VEHICLES ===== */
.vdp__similar {
    padding: 3rem 0;
    background: var(--vdp-bg-alt);
}
.vdp__similar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.vdp__similar-header .vdp__similar-title {
    margin: 0;
}
.vdp__similar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}
.vdp__similar-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-gold-dark, #a89455);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.vdp__similar-view-all:hover {
    color: var(--brand-gold, #cdb76e);
}
.vdp__similar-view-all svg {
    width: 18px;
    height: 18px;
}
.vdp__similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.vdp__similar-card {
    background: var(--vdp-bg);
    border-radius: var(--vdp-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--vdp-text);
    box-shadow: var(--vdp-shadow);
    transition: all 0.2s;
}
.vdp__similar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vdp-shadow-lg);
}
.vdp__similar-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--vdp-bg-alt);
}
.vdp__similar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vdp__similar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--vdp-text-muted);
}
.vdp__similar-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--vdp-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.vdp__similar-info {
    padding: 1rem;
}
.vdp__similar-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}
.vdp__similar-trim {
    font-size: 0.875rem;
    color: var(--vdp-text-muted);
    margin: 0 0 0.5rem;
}
.vdp__similar-specs {
    font-size: 0.8125rem;
    color: var(--vdp-text-muted);
    margin-bottom: 0.5rem;
}
.vdp__similar-price {
    font-size: 1.125rem;
    font-weight: 700;
}

/* ===== MOBILE STICKY BAR ===== */
.vdp__mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: var(--vdp-bg);
    border-top: 1px solid var(--vdp-border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 100;
}
.vdp__mobile-price {
    margin-bottom: 0.5rem;
}
.vdp__mobile-price-amount {
    font-size: 1.25rem;
    font-weight: 700;
}
.vdp__mobile-cta {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--vdp-primary);
    color: #fff;
    border: none;
    border-radius: var(--vdp-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .vdp__layout {
        grid-template-columns: 1fr;
    }
    .vdp__sidebar {
        position: static;
        order: -1;
        max-width: 100%;
    }
    .vdp__similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vdp__history-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vdp__title {
        font-size: 1.5rem;
    }
    .vdp__specs-grid {
        grid-template-columns: 1fr;
    }
    .vdp__features-grid {
        grid-template-columns: 1fr;
    }
    .vdp__action-btn span {
        display: none;
    }
    .vdp__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .vdp__tab {
        white-space: nowrap;
        padding: 0.75rem 1rem;
    }
    .vdp__sidebar-sticky {
        display: none;
    }
    .vdp__mobile-bar {
        display: block;
    }
    .vdp__similar-grid {
        grid-template-columns: 1fr;
    }
    .vdp__main {
        padding-bottom: 6rem;
    }
}
/* ===== HERO 2-COLUMN LAYOUT ===== */
.vdp__hero {
    background: var(--vdp-bg);
    padding: 2rem 0;
    border-bottom: 1px solid var(--vdp-border);
}
.vdp__hero-grid {
    display: grid;
    grid-template-columns: 1fr 55%;
    gap: 2.5rem;
    align-items: start;
}
.vdp__hero-info {
    padding-top: 0.5rem;
}
.vdp__badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.vdp__badge {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vdp__badge--new, .vdp__badge--neuf { background: #10b981; color: #fff; }
.vdp__badge--used, .vdp__badge--usagé { background: #3b82f6; color: #fff; }
.vdp__badge--certified { background: #f59e0b; color: #fff; }
.vdp__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vdp-text);
    margin: 0;
    line-height: 1.2;
}
.vdp__subtitle {
    font-size: 1rem;
    color: var(--vdp-text-muted);
    margin: 0.25rem 0 0;
}
.vdp__quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.vdp__spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.625rem;
    background: var(--vdp-bg-alt);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--vdp-text);
}
.vdp__hero-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--vdp-border);
}
.vdp__hero-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vdp-text);
}
.vdp__hero-price-note {
    font-size: 0.8125rem;
    color: var(--vdp-text-muted);
}
.vdp__hero-ctas {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.vdp__hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--vdp-border);
    border-radius: 8px;
    background: var(--vdp-bg);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--vdp-text);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.vdp__hero-cta:hover {
    border-color: var(--vdp-primary);
    color: var(--vdp-primary);
}
.vdp__hero-cta--primary {
    background: var(--vdp-primary);
    border-color: var(--vdp-primary);
    color: #fff;
}
.vdp__hero-cta--primary:hover {
    opacity: 0.9;
    color: #fff;
}
.vdp__hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--vdp-border);
    font-size: 0.8125rem;
    color: var(--vdp-text-muted);
}
.vdp__hero-trust span,
.vdp__hero-trust a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: inherit;
    text-decoration: none;
}
.vdp__hero-trust svg { color: #10b981; }
.vdp__hero-trust a:hover { color: var(--vdp-primary); }

/* Gallery - Right side */
.vdp__hero-gallery {
    position: relative;
}
.vdp__gallery-main {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--vdp-radius);
    overflow: hidden;
    background: #f0f0f0;
}
.vdp__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vdp__gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
}
.vdp__gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--vdp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
}
.vdp__gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.vdp__gallery-nav--prev { left: 0.75rem; }
.vdp__gallery-nav--next { right: 0.75rem; }
.vdp__gallery-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    z-index: 10;
}
.vdp__gallery-fullscreen {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: rgba(255,255,255,0.9);
    color: var(--vdp-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.vdp__gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.vdp__thumb {
    width: 64px;
    height: 48px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    padding: 0;
    background: none;
}
.vdp__thumb:hover,
.vdp__thumb.is-active {
    opacity: 1;
    border-color: var(--vdp-primary);
}
.vdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vdp__thumb--more {
    background: var(--vdp-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--vdp-text-muted);
    opacity: 1;
}

/* Mobile: Stack layout */
@media (max-width: 900px) {
    .vdp__hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .vdp__hero-gallery {
        order: -1;
    }
    .vdp__hero-price {
        display: none; /* Show in mobile sticky bar instead */
    }
}

/* ===== FINANCING 1-2-3 PROMO BLOCK ===== */
.vdp__fin-promo {
    margin-top: 1.5rem;
    background: var(--brand-bg, #fff);
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: var(--vdp-radius);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.vdp__fin-promo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    background: var(--brand-secondary, #1B1B1B);
    color: var(--brand-text-inverse, #fff);
}
.vdp__fin-promo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vdp__fin-promo-est {
    font-size: 0.875rem;
}
.vdp__fin-promo-est strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-accent, #E3173E);
}

/* Steps row */
.vdp__fin-steps {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    gap: 0;
}
.vdp__fin-step {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
}
.vdp__fin-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-accent-rgb, 227, 23, 62), 0.1);
    color: var(--brand-accent, #E3173E);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    border: 2px solid rgba(var(--brand-accent-rgb, 227, 23, 62), 0.25);
}
.vdp__fin-step-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.vdp__fin-step-text strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-text, #1B1B1B);
    line-height: 1.2;
}
.vdp__fin-step-text span {
    font-size: 0.6875rem;
    color: var(--brand-text-muted, #94a3b8);
    line-height: 1.3;
}
.vdp__fin-step-line {
    flex-shrink: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(var(--brand-accent-rgb, 227, 23, 62), 0.2), rgba(var(--brand-accent-rgb, 227, 23, 62), 0.4));
    border-radius: 1px;
    margin: 0 0.25rem;
}

/* CTA button */
.vdp__fin-promo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--brand-accent, #E3173E);
    color: var(--brand-text-inverse, #fff);
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.vdp__fin-promo-cta:hover {
    background: var(--brand-primary-hover, #A21C1D);
    color: var(--brand-text-inverse, #fff);
}
.vdp__fin-promo-cta svg {
    transition: transform 0.2s;
}
.vdp__fin-promo-cta:hover svg {
    transform: translateX(4px);
}

/* Mobile: steps stack vertically */
@media (max-width: 768px) {
    .vdp__fin-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .vdp__fin-step-line {
        width: 2px;
        height: 16px;
        margin: 0 0 0 15px;
    }
    .vdp__fin-promo-header {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

/* ===== TEXT ME QUICK FORM ===== */
.vdp__textme {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--brand-border, #e2e8f0);
}
.vdp__textme-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-text, #1B1B1B);
}
.vdp__textme-header svg {
    color: var(--brand-accent, #E3173E);
    flex-shrink: 0;
}
.vdp__textme-form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.vdp__textme-field input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--brand-text, #1B1B1B);
    background: var(--brand-bg-alt, #f8fafc);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}
.vdp__textme-field input::placeholder {
    color: var(--brand-text-muted, #94a3b8);
}
.vdp__textme-field input:focus {
    border-color: var(--brand-accent, #E3173E);
    box-shadow: 0 0 0 3px rgba(var(--brand-accent-rgb, 227, 23, 62), 0.1);
    background: var(--brand-bg, #fff);
}
.vdp__textme-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8125rem;
    background: var(--brand-accent, #E3173E);
    color: var(--brand-text-inverse, #fff);
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.vdp__textme-submit:hover {
    background: var(--brand-primary-hover, #A21C1D);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand, 0 4px 14px rgba(227, 23, 62, 0.25));
}
.vdp__textme-submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}
.vdp__textme-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #ecfdf5;
    border-radius: 8px;
    color: #059669;
    font-weight: 600;
    font-size: 0.9375rem;
}
.vdp__textme-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vdp-spin 0.6s linear infinite;
}
@keyframes vdp-spin {
    to { transform: rotate(360deg); }
}

/* Fix: match button gap to form field gap */
.vdp__cta-secondary {
    gap: 0.625rem;
}
.vdp__cta-link {
    padding: 0.75rem 0.875rem;
}

/* Force spacing between secondary CTA buttons */
.vdp__price-card .vdp__cta-secondary {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1rem 1.5rem;
}
.vdp__price-card .vdp__cta-secondary .vdp__cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.vdp__price-card .vdp__cta-secondary .vdp__cta-link:hover {
    border-color: var(--brand-accent, #E3173E);
    color: var(--brand-accent, #E3173E);
}

/* Spacing between text-me form and Call Us button */
.vdp__price-card .vdp__cta-primary {
    margin-top: 1.25rem;
}

/* Match Call Us spacing to form field gap (0.625rem) */
.vdp__price-card .vdp__cta-primary {
    margin-top: 0.625rem;
}
