/**
 * Birchwood VDP Styles
 * Modeled after Birchwood website VDP design
 * Uses site color scheme for Leggat Stouffville Ford
 * Primary: #0d65bf (blue), Dark: #0051ab, Default: #000000
 */

/* ==================== STICKY HEADER - BIRCHWOOD STYLE ==================== */
.bvdp-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000; /* Ford black */
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bvdp-sticky-header.is-visible {
    transform: translateY(0);
}

.bvdp-sticky-header .container {
    padding-right: 0;
}

.bvdp-sticky-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    padding-left: 15px;
    gap: 15px;
    min-height: 60px;
}

/* Vehicle Info Section (Desktop Only) */
.bvdp-sticky-vehicle-info {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.bvdp-sticky-thumb {
    width: 50px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.bvdp-sticky-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bvdp-sticky-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.bvdp-sticky-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bvdp-sticky-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
}

.bvdp-sticky-badge.stock {
    color: #0d65bf;
    background: #ffffff;
}

.bvdp-sticky-badge.promo {
    color: #ffffff;
    background: transparent;
    opacity: 0.9;
}

/* Price Section (Desktop Only) */
.bvdp-sticky-pricing {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 15px;
    flex-shrink: 0;
}

.bvdp-sticky-price-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.bvdp-sticky-price-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.bvdp-sticky-price-value sup {
    font-size: 11px;
    font-weight: 400;
}

.bvdp-sticky-price-label {
    color: #999999;
    font-size: 11px;
    text-transform: lowercase;
}

.bvdp-sticky-price-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* Contact Dealership Button */
.bvdp-sticky-contact {
    flex-shrink: 0;
    display: flex;
}

.bvdp-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0d65bf; /* Ford blue */
    border: none;
    color: #ffffff;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.bvdp-contact-btn:hover,
.bvdp-contact-btn:focus,
.bvdp-contact-btn.is-open {
    background: #0051ab; /* Ford dark blue */
}

.bvdp-contact-btn .fa-comment {
    font-size: 20px;
}

.bvdp-contact-caret {
    transition: transform 0.2s ease;
    font-size: 24px;
    margin-left: 8px;
}

.bvdp-contact-btn.is-open .bvdp-contact-caret {
    transform: rotate(180deg);
}

/* ==================== CONTACT DROPDOWN (Desktop) ==================== */
.bvdp-contact-dropdown {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    max-width: 400px;
    width: 100%;
    display: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bvdp-contact-dropdown.is-visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.bvdp-contact-dropdown-inner {
    padding: 0;
}

.bvdp-contact-dealer-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.bvdp-contact-dealer-logo {
    width: 50%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.bvdp-contact-dealer-info {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}

.bvdp-contact-dealer-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.bvdp-contact-dealer-address {
    font-size: 13px;
    color: #666;
}

.bvdp-contact-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bvdp-contact-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.bvdp-contact-menu li:last-child {
    border-bottom: none;
}

.bvdp-contact-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.bvdp-contact-menu a:hover {
    background: #f8f8f8;
    color: #0d65bf;
}

.bvdp-contact-menu a .fa {
    width: 18px;
    text-align: center;
    color: #0d65bf;
    font-size: 15px;
}

/* ==================== CONTACT OVERLAY (Mobile Full-Screen) ==================== */
.bvdp-contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #ffffff;
    display: none;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.bvdp-contact-overlay.is-visible {
    display: flex;
    transform: translateX(0);
}

.bvdp-contact-overlay-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000000; /* Ford black */
    color: #ffffff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
}

.bvdp-contact-overlay-header .fa-comment {
    font-size: 16px;
}

.bvdp-contact-overlay-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.bvdp-contact-overlay-close:hover {
    opacity: 0.8;
}

.bvdp-contact-overlay-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.bvdp-contact-overlay .bvdp-contact-dealer-header {
    padding: 25px 20px;
}

.bvdp-contact-overlay .bvdp-contact-menu a {
    padding: 18px 20px;
    font-size: 15px;
}

/* Backdrop for dropdown */
.bvdp-contact-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.bvdp-contact-backdrop.is-visible {
    display: block;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Desktop: Show dropdown, hide overlay button behavior */
@media (min-width: 901px) {
    .bvdp-sticky-content {
        flex-wrap: nowrap;
    }
    
    .bvdp-contact-overlay {
        display: none !important;
    }
}

/* Mobile: Hide vehicle info and pricing, show only contact button */
@media (max-width: 900px) {
    .d-none.d-md-flex {
        display: none !important;
    }
    
    .bvdp-sticky-header .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .bvdp-sticky-content {
        justify-content: stretch;
        padding: 0 !important;
        gap: 0 !important;
    }
    
    .bvdp-sticky-contact {
        width: 100%;
    }
    
    .bvdp-contact-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 18px 24px;
        font-size: 20px;
        font-weight: 600;
        gap: 14px;
    }
    
    .bvdp-contact-btn .fa-comment {
        font-size: 22px;
    }
    
    .bvdp-contact-btn .bvdp-contact-caret {
        margin-left: auto;
        font-size: 30px;
    }
    
    .bvdp-contact-dropdown {
        display: none !important;
    }
}

/* Legacy styles for compatibility */
.bvdp-sticky-info {
    display: flex;
    flex-direction: column;
}

.bvdp-sticky-status {
    color: #0d65bf;
    font-size: 13px;
    font-weight: 500;
}

.bvdp-sticky-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    padding-right: 20px;
}

.bvdp-sticky-price .bvdp-price-amount {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.bvdp-sticky-price .bvdp-price-label {
    color: #999;
    font-size: 12px;
}

.bvdp-sticky-actions .bvdp-btn-inquiry {
    background: #0d65bf;
    border-color: #0d65bf;
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bvdp-sticky-actions .bvdp-btn-inquiry:hover {
    background: #0051ab;
    border-color: #0051ab;
}

/* ==================== CONTAINER ==================== */
.bvdp-container {
    padding-bottom: 60px;
    overflow-x: hidden;
}

/* ==================== BACK NAVIGATION ==================== */
.bvdp-back-nav {
    padding: 25px 0;
}

.bvdp-back-nav a {
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.bvdp-back-nav a:hover {
    color: #0d65bf;
}

.bvdp-back-nav a .fa {
    margin-right: 8px;
    font-size: 20px;
}

/* ==================== HERO SECTION ==================== */
.bvdp-hero {
    padding: 0 0 40px;
}

/* Gallery */
.bvdp-gallery {
    margin-bottom: 30px;
}

.bvdp-main-slider {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.bvdp-main-slider .slick-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    height: auto;
}

.bvdp-main-slider .slick-prev,
.bvdp-main-slider .slick-next {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
}

.bvdp-main-slider .slick-prev {
    left: 15px;
}

.bvdp-main-slider .slick-next {
    right: 15px;
}

.bvdp-main-slider .slick-prev:before,
.bvdp-main-slider .slick-next:before {
    color: #000;
    font-size: 24px;
}

.bvdp-thumb-slider {
    margin: 0 -5px;
}

.bvdp-thumb-slider .slick-slide {
    padding: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.bvdp-thumb-slider .slick-slide.slick-current {
    opacity: 1;
}

.bvdp-thumb-slider .slick-slide:hover {
    opacity: 1;
}

.bvdp-thumb-slider img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    height: auto;
}

.bvdp-video-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.bvdp-gallery-actions {
    margin-top: 15px;
    text-align: center;
}

.bvdp-view-all-btn {
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.bvdp-view-all-btn:hover {
    background: #000;
    color: #fff;
}

/* Vehicle Info */
.bvdp-vehicle-info {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    /* Removed shadow to match cleaner look of screenshot if desired, or keep it subtle */
    box-shadow: none;
}

/* Badge Style - Matched to Screenshot (Text only, no background pill unless 'used' needs distinction) */
.bvdp-badge {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    background: none;
    padding: 0;
}

/* Title Row with Heart */
.bvdp-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
    position: relative;
}

.bvdp-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin: 0;
    padding-right: 40px;
    /* Space for heart icon */
}

.bvdp-favorite-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 24px;
    color: #ccc;
    position: absolute;
    top: 5px;
    right: 0;
    transition: color 0.2s;
}

.bvdp-favorite-btn:hover {
    color: #0d65bf;
}

/* Status Row */
.bvdp-status-row {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

.bvdp-status-badge {
    color: #333;
}

/* Price Section */
.bvdp-price-section {
    margin-bottom: 20px;
}

.bvdp-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.bvdp-price-value {
    font-size: 32px;
    font-weight: 700;
    color: #0d65bf;
    /* Ford Blue */
}

.bvdp-biweekly-link {
    font-size: 16px;
    font-weight: 600;
    color: #0d65bf;
    /* Ford Blue */
    text-decoration: none;
    transition: all 0.2s;
}

.bvdp-biweekly-link:hover {
    text-decoration: none;
    color: #000000;
}

.bvdp-price-note {
    font-size: 11px;
    color: #777;
    margin-top: 3px;
}

/* Action Buttons Row */
.bvdp-action-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.bvdp-btn-primary {
    background: #0d65bf;
    /* Ford Blue */
    border: 1px solid #0d65bf;
    color: #fff;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s;
}

.bvdp-btn-primary:hover {
    background: #0051ab;
    /* Ford Dark Blue */
    border-color: #0051ab;
    color: #fff;
}

.bvdp-btn-outline {
    background: transparent;
    border: 1px solid #0d65bf;
    /* Ford Blue */
    color: #0d65bf;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.bvdp-btn-outline:hover {
    background: #e8f4ff;
    /* Light blue tint */
    color: #0051ab;
    border-color: #0051ab;
}

/* Remove theme arrows */
.bvdp-btn-primary:after,
.bvdp-btn-outline:after {
    content: none !important;
    display: none !important;
}

/* Inquiry Dropdown Menu */
.bvdp-inquiry-dropdown {
    position: relative;
}

.bvdp-inquiry-dropdown .dropdown-toggle {
    width: 100%;
    padding: 10px 20px !important;
    /* Prevent padding changes on hover */
}

.bvdp-inquiry-dropdown .dropdown-toggle:hover,
.bvdp-inquiry-dropdown .dropdown-toggle:focus,
.bvdp-inquiry-dropdown .dropdown-toggle:active {
    padding: 10px 20px !important;
    color: #fff !important;
    /* Lock padding and color on hover */
}

.bvdp-inquiry-dropdown .dropdown-toggle,
.bvdp-inquiry-dropdown .dropdown-toggle:visited {
    color: #fff !important;
}

.bvdp-inquiry-dropdown .bvdp-chevron {
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.2s;
}

.bvdp-inquiry-dropdown.open .bvdp-chevron,
.bvdp-inquiry-dropdown .dropdown-toggle[aria-expanded="true"] .bvdp-chevron {
    transform: rotate(180deg);
}

.bvdp-inquiry-menu {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 8px 0;
    margin-top: 8px;
}

.bvdp-inquiry-menu>li>a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.bvdp-inquiry-menu>li>a:hover {
    background: #f8f8f8;
    color: #0d65bf;
}

.bvdp-inquiry-menu>li>a .fa {
    width: 20px;
    margin-right: 10px;
    color: #0d65bf;
}

/* Frequency Dropdown - Add spacing between text and chevron */
.bvdp-payment-container .dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.bvdp-payment-container .dropdown-toggle .dd_val {
    margin-right: 0;
}

.bvdp-payment-container .dropdown-toggle .fa {
    position: static !important;
}

/* Specs Grid - Force Grid Layout */
.bvdp-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #e0e0e0;
    gap: 1px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden;
}

.bvdp-spec-cell {
    padding: 15px;
    font-size: 13px;
    color: #333;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    line-height: 1.4;
}



/* Trade-In Link */
.bvdp-tradein-link {
    margin-top: 20px;
}

.bvdp-tradein-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0d65bf;
    /* Ford Blue */
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.bvdp-tradein-link a:hover {
    text-decoration: none;
    color: #000000;
}

.bvdp-tradein-link a .fa {
    font-size: 12px;
    /* Rotation for arrow if needed */
    transform: rotate(-45deg);
}

/* Center Test Drive and Contact Modals - Robust Method */
#mdBookTestDrive,
#mdContactUs {
    text-align: center;
    padding-right: 0 !important;
}

#mdBookTestDrive:before,
#mdContactUs:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

#mdBookTestDrive .modal-dialog,
#mdContactUs .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    margin: 30px auto !important;
    /* Ensure horizontal auto margin */
    float: none !important;
    max-width: 600px;
    width: 90%;
    /* Responsive width */
}

.bvdp-carfax {
    margin-top: 15px;
}

/* ==================== WHY YOU'LL LOVE IT SECTION ==================== */
.bvdp-love-section {
    background: #f8f8f8;
    padding: 50px 0;
}

.bvdp-love-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.bvdp-love-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bvdp-love-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.bvdp-love-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro', sans-serif;
    position: absolute;
    left: 0;
    color: #0d65bf;
    font-weight: 600;
}

/* ==================== PAYMENT CALCULATOR SECTION ==================== */
.bvdp-payment-section {
    padding: 50px 0;
}

.bvdp-payment-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
}

.bvdp-payment-subtitle {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.bvdp-payment-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

/* Tabs - Birchwood Style */
.bvdp-tabs {
    position: relative;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
    font-size: 0;
    line-height: 0;
}

.bvdp-tabs .nav-tabs {
    margin-bottom: -1px;
    display: inline-flex;
    border: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.bvdp-tabs .nav-tabs>li {
    margin-bottom: 0;
    float: none;
}

.bvdp-tabs .nav-tabs>li>a {
    border: none;
    border-right: 1px solid #ddd;
    border-radius: 0;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    background: #fff;
    margin: 0;
    transition: all 0.2s;
}

.bvdp-tabs .nav-tabs>li:last-child>a {
    border-right: none;
}

.bvdp-tabs .nav-tabs>li>a:hover {
    border-color: #ddd;
    background: #f5f5f5;
    color: #333;
}

.bvdp-tabs .nav-tabs>li.active>a,
.bvdp-tabs .nav-tabs>li.active>a:hover,
.bvdp-tabs .nav-tabs>li.active>a:focus {
    border: none;
    border-right: 1px solid #ddd;
    background: #333;
    color: #fff;
    font-weight: 600;
}

.bvdp-tabs .nav-tabs>li:last-child.active>a {
    border-right: none;
}

/* Payment Options */
.bvdp-payment-options {
    padding: 20px 0;
    background: transparent !important;
    color: #333 !important;
}

.bvdp-payment-options .tab-pane {
    background: transparent !important;
    color: #333 !important;
}

.bvdp-payment-options .financeTabContent,
.bvdp-payment-options .leaseTabContent,
.bvdp-payment-options .cashTabContent {
    background: transparent !important;
    color: #333 !important;
}

/* Override dark backgrounds from quote.js */
#PaymentCalculator,
#PaymentCalculator .col-md-8,
#PaymentCalculator .col-md-4,
.bvdp-payment-container,
.bvdp-payment-options,
.bvdp-payment-options .tab-pane,
.bvdp-payment-options .tab-content,
#dvPaymentsTabContent {
    background-color: transparent !important;
    background: transparent !important;
}

/* Force payment cards container to have flex layout */
.bvdp-payment-cards {
    background: transparent !important;
}

/* Override any pmt_container styling from quote.js */
.bvdp-payment-options .pmt_container,
.bvdp-payment-cards .pmt_container,
#financePayments .pmt_container,
#leasePayments .pmt_container {
    display: none !important;
}

/* Ensure BVDP cards are visible */
.bvdp-payment-card {
    display: block !important;
}

.bvdp-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.bvdp-form-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bvdp-form-group label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.bvdp-frequency-select .dropdown-toggle {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-size: 14px;
}

/* Payment Cards */
.bvdp-payment-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.bvdp-payment-card {
    flex: 1 1 0;
    min-width: 0;
    border: 1px solid #ddd;
    background: #f9f9f9;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.bvdp-payment-card:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.bvdp-payment-card.active {
    background: #333;
    border-color: #333;
    color: #fff;
}

.bvdp-payment-card .bvdp-card-amount {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.bvdp-payment-card .bvdp-card-amount .cents {
    font-size: 14px;
    vertical-align: super;
}

.bvdp-payment-card .bvdp-card-frequency {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.bvdp-payment-card.active .bvdp-card-frequency {
    color: #ccc;
}

.bvdp-payment-card .bvdp-card-term {
    font-size: 12px;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.bvdp-payment-card.active .bvdp-card-term {
    color: #ccc;
    border-top-color: #555;
}

/* Pre-approval Link */
.bvdp-preapproval {
    text-align: center;
    margin-bottom: 30px;
}

.bvdp-preapproval a {
    color: #0d65bf;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.bvdp-preapproval a:hover {
    text-decoration: underline;
}

.bvdp-preapproval .fa {
    margin-right: 8px;
    color: #0d65bf;
}

/* Cash Down Section */
.bvdp-cash-down-section {
    margin-bottom: 25px;
}

.bvdp-cash-down-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.bvdp-cash-down-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bvdp-cash-down-input {
    flex: 0 0 150px;
}

.bvdp-cash-down-input .form-control {
    height: 48px;
    font-size: 16px;
    border-radius: 4px;
    text-align: center;
}

.bvdp-cash-down-text {
    flex: 1;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Trade Section */
.bvdp-trade-section {
    margin-bottom: 20px;
}

.bvdp-trade-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.bvdp-trade-value-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bvdp-trade-value-input {
    flex: 0 0 200px;
}

.bvdp-trade-value-input label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.bvdp-trade-value-input .form-control {
    height: 48px;
    font-size: 16px;
    border-radius: 4px;
    text-align: center;
}

.bvdp-trade-value-text {
    flex: 1;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    padding-top: 20px;
}

.bvdp-trade-value-text a {
    color: #0d65bf;
    font-weight: 500;
}

.bvdp-trade-row .form-control {
    height: 48px;
    font-size: 14px;
    border-radius: 4px;
}

.bvdp-trade-row .form-control:first-child {
    flex: 1;
}

.bvdp-mileage-input {
    flex: 0 0 180px !important;
}

.bvdp-trade-row .btn {
    white-space: nowrap;
    height: 48px;
    padding: 0 20px;
}

/* Summary Card */
.bvdp-summary-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
}

.bvdp-summary-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.bvdp-payment-amount {
    font-family: 'Roboto', sans-serif;
}

.bvdp-payment-amount .bvdp-currency {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
    color: #000;
}

.bvdp-payment-amount .bvdp-amount {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.bvdp-payment-amount .bvdp-cents {
    font-size: 24px;
    font-weight: 700;
    vertical-align: top;
    color: #000;
}

.bvdp-payment-term {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.bvdp-summary-details {
    margin-bottom: 25px;
}

.bvdp-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.bvdp-summary-row.bvdp-summary-total {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 10px;
    font-weight: 600;
    color: #000;
}

/* Action Buttons */
.bvdp-action-buttons {
    margin-top: 20px;
}

.bvdp-action-buttons .btn {
    margin-bottom: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.bvdp-action-buttons .btn-primary {
    background: #0d65bf !important;
    border-color: #0d65bf !important;
    color: #fff !important;
}

.bvdp-action-buttons .btn-primary:hover {
    background: #0051ab !important;
    border-color: #0051ab !important;
}

.bvdp-action-buttons .btn .fa {
    margin-right: 8px;
}

.bvdp-legal-link {
    text-align: center;
    font-size: 12px;
    color: #777;
    cursor: pointer;
    margin-top: 15px;
}

.bvdp-legal-link:hover {
    color: #0d65bf;
    text-decoration: underline;
}

/* ==================== CONTACT FORMS SECTION ==================== */
.bvdp-contact-section {
    padding: 30px 0 50px;
}

.bvdp-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin: 0 auto 20px;
    /* Center horizontally with auto margins */
    max-width: 800px;
}

.bvdp-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.bvdp-form-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.bvdp-form-header h3 .fa {
    color: #0d65bf;
    margin-right: 10px;
}

.bvdp-form-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.bvdp-form-close:hover {
    color: #0d65bf;
}

.bvdp-form .form-group {
    margin-bottom: 20px;
}

.bvdp-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.bvdp-form .form-control {
    height: 48px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.bvdp-form textarea.form-control {
    height: auto;
    min-height: 100px;
}

.bvdp-form-response {
    margin-bottom: 15px;
}

/* ==================== VEHICLE DETAILS SECTION ==================== */
.bvdp-details-section {
    padding: 50px 0;
    background: #fff;
}

.bvdp-details-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.bvdp-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bvdp-detail-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.bvdp-detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 5px;
}

.bvdp-detail-value {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

/* ==================== FEATURES ACCORDIONS SECTION ==================== */
.bvdp-features-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.bvdp-features-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.bvdp-accordions .panel {
    background: #fff;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bvdp-accordions .panel-heading {
    padding: 0;
    background: none;
    border: none;
}

.bvdp-accordions .panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: background 0.2s;
}

.bvdp-accordions .panel-title a:hover {
    background: #f5f5f5;
}

.bvdp-accordions .panel-title a .fa {
    transition: transform 0.3s;
}

.bvdp-accordions .panel-title a.collapsed .fa {
    transform: rotate(180deg);
}

.bvdp-accordions .panel-body {
    padding: 20px;
    border-top: 1px solid #eee;
}

.bvdp-accordions .panel-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.bvdp-accordions .panel-body ul li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    color: #333;
    break-inside: avoid;
}

.bvdp-accordions .panel-body ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro', sans-serif;
    position: absolute;
    left: 0;
    color: #0d65bf;
    font-size: 12px;
}

/* ==================== SIMILAR VEHICLES SECTION - BIRCHWOOD STYLE ==================== */
.bvdp-similar-section {
    padding: 60px 0;
    background: #fff;
}

/* Header with title and search link */
.bvdp-similar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.bvdp-similar-section h2 {
    font-size: 32px;
    font-family: Roboto, Poppins, sans-serif;
    font-weight: 700;
    margin: 0;
    color: #000;
    text-align: center;
}

.bvdp-similar-search-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #0d65bf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.bvdp-similar-search-link:hover {
    text-decoration: underline;
    color: #0d65bf;
}

/* Carousel Wrapper with external buttons */
.bvdp-similar-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

/* Carousel Navigation Buttons - Birchwood Style (round, outside slider) */
.bvdp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d0d0d0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bvdp-carousel-btn:hover {
    border-color: #333;
    background: #fff;
}

.bvdp-carousel-btn .fa {
    color: #333;
    font-size: 16px;
}

.bvdp-carousel-prev {
    left: 0;
}

.bvdp-carousel-next {
    right: 0;
}

.bvdp-similar-slider {
    margin: 0;
    overflow: hidden;
}

.bvdp-similar-slide {
    padding: 0 10px;
}

/* ==================== VEHICLE CARDS - SRP STYLE ==================== */
/* These styles ensure vehicle cards in Similar Vehicles look like SRP cards */

.bvdp-similar-slider .veh-card-leggat {
    display: block;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    color: #0a2237;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.bvdp-similar-slider .veh-card-leggat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: #0a2237;
    text-decoration: none;
}

/* Hide the NEW/USED header bar like SRP */
.bvdp-similar-slider .veh-card-header {
    display: none;
}

/* Vehicle Card Carousel/Image */
.bvdp-similar-slider .veh-card-carousel {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.bvdp-similar-slider .veh-card-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Info Section */
.bvdp-similar-slider .veh-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.bvdp-similar-slider .veh-title {
    font-size: 16px;
    font-weight: 600;
    color: #0a2237;
    line-height: 1.3;
    font-family: Roboto, 'Inter', sans-serif;
    margin-bottom: 2px;
}

.bvdp-similar-slider .veh-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
    font-family: Roboto, 'Inter', sans-serif;
    margin-bottom: 12px;
}

/* Pricing Section */
.bvdp-similar-slider .veh-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

.bvdp-similar-slider .veh-price-sale {
    font-size: 18px;
    font-weight: 600;
    color: #0a2237;
    font-family: Roboto, 'Inter', sans-serif;
}

/* Responsive adjustments for Similar Vehicles carousel */
@media (max-width: 991px) {
    .bvdp-similar-carousel-wrapper {
        padding: 0 40px;
    }

    .bvdp-carousel-btn {
        width: 36px;
        height: 36px;
    }

    .bvdp-carousel-btn .fa {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .bvdp-similar-header {
        flex-direction: column;
        gap: 10px;
    }

    .bvdp-similar-search-link {
        position: static;
        transform: none;
    }

    .bvdp-similar-carousel-wrapper {
        padding: 0;
    }

    .bvdp-carousel-btn {
        display: none;
    }

    .bvdp-similar-section h2 {
        font-size: 24px;
    }
}

/* Legacy styles - keep for backwards compatibility */
.veh-card-leggat {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    color: #333;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.veh-card-leggat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #333;
}

.veh-card-header {
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    letter-spacing: 0.5px;
}

.veh-card-leggat.used .veh-card-header {
    background: #0d65bf;
    /* Blue for Used */
}

.veh-card-leggat.new .veh-card-header {
    background: #000000;
    /* Black for New */
}

.veh-card-carousel {
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
}

.veh-card-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.veh-card-info {
    padding: 15px;
}

.veh-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.veh-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.veh-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.veh-price-sale {
    font-size: 20px;
    font-weight: 700;
    color: #0d65bf;
}

/* Legacy slick arrows hidden - using custom external buttons now */
.bvdp-similar-slider .slick-prev,
.bvdp-similar-slider .slick-next {
    display: none !important;
}

.bvdp-payments {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.bvdp-payment-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bvdp-payment-option:hover {
    border-color: #0d65bf;
    background: #fff;
}

.bvdp-payment-option.active {
    border-color: #0d65bf;
    background: #e8f4ff;
}

.bvdp-payment-option .bvdp-term {
    font-weight: 600;
    color: #000;
}

.bvdp-payment-option .bvdp-rate {
    color: #666;
    font-size: 14px;
}

.bvdp-payment-option .bvdp-pmt {
    font-weight: 700;
    color: #0d65bf;
    font-size: 16px;
}

/* ==================== SPECS AND WARRANTY SECTIONS ==================== */
.bvdp-specs-wrapper {
    margin-bottom: 30px;
}

.bvdp-specs-wrapper .spec {
    margin-bottom: 20px;
}

.bvdp-specs-wrapper .spec-val {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.bvdp-specs-wrapper .spec-val.bold {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
    margin-bottom: 5px;
    color: #000;
}

.bvdp-warranty-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.bvdp-warranty-wrapper .warranty {
    margin-bottom: 10px;
}

.bvdp-warranty-wrapper .ai-val {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.bvdp-warranty-wrapper .ai-val img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.bvdp-warranty-wrapper .warr {
    font-size: 14px;
    color: #333;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .bvdp-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bvdp-similar-slider .slick-prev,
    .bvdp-similar-slider .slick-next {
        display: none !important;
    }

    .bvdp-accordions .panel-body ul {
        columns: 1;
    }
}

@media (max-width: 767px) {
    .bvdp-sticky-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .bvdp-sticky-price {
        align-items: flex-start;
    }

    .bvdp-sticky-actions {
        width: 100%;
    }

    .bvdp-sticky-actions .btn {
        width: 100%;
    }

    .bvdp-title {
        font-size: 22px;
    }

    .bvdp-trim {
        font-size: 16px;
    }

    .bvdp-main-slider .slick-slide img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .bvdp-vehicle-info {
        margin-top: 20px;
    }

    /* Action buttons - stack vertically on mobile */
    .bvdp-action-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .bvdp-action-row .bvdp-btn-primary,
    .bvdp-action-row .bvdp-btn-outline,
    .bvdp-action-row .bvdp-inquiry-dropdown {
        width: 100%;
        flex: none;
    }

    .bvdp-inquiry-dropdown .dropdown-toggle {
        width: 100%;
    }

    .bvdp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Specs grid - 2 columns on mobile */
    .bvdp-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bvdp-details-grid {
        grid-template-columns: 1fr;
    }

    .bvdp-payment-card {
        padding: 15px 10px;
        min-width: 100px;
    }

    /* Payment cards - allow horizontal scroll on mobile */
    .bvdp-payment-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .bvdp-payment-card .bvdp-card-amount {
        font-size: 20px;
    }

    .bvdp-payment-card .bvdp-card-term {
        font-size: 11px;
    }

    .bvdp-tabs .nav-tabs>li>a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .bvdp-trade-row {
        flex-direction: column;
        align-items: stretch;
    }

    .bvdp-trade-row .form-control {
        flex: 1;
        max-width: none;
    }

    .bvdp-input-group .form-control {
        max-width: none;
    }

    /* Cash down section - compact on mobile */
    .bvdp-cash-down-section,
    .bvdp-trade-section {
        margin-bottom: 12px;
    }

    .bvdp-cash-down-section h4,
    .bvdp-trade-section h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .bvdp-cash-down-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .bvdp-cash-down-input {
        width: auto !important;
        max-width: none;
    }

    .bvdp-cash-down-input.input-group {
        width: auto !important;
        max-width: 160px;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
    }

    .bvdp-cash-down-input.input-group .input-group-addon {
        display: flex !important;
        align-items: center !important;
        justify-content: center;
        padding: 0 8px !important;
        background: #f5f5f5 !important;
        border: 1px solid #ddd !important;
        border-right: none !important;
        border-radius: 4px 0 0 4px !important;
        font-size: 13px;
        color: #666;
        width: auto !important;
        height: 34px !important;
        float: none !important;
    }

    .bvdp-cash-down-input.input-group .form-control {
        flex: 1 !important;
        border-radius: 0 4px 4px 0 !important;
        border: 1px solid #ddd !important;
        height: 34px !important;
        padding: 4px 8px !important;
        font-size: 13px;
        width: 100px !important;
        float: none !important;
    }

    .bvdp-cash-down-row {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center;
        gap: 8px !important;
    }

    .bvdp-cash-down-text {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 11px;
        color: #888;
        line-height: 1.3;
        width: 100%;
        margin-top: 4px !important;
    }

    .bvdp-trade-link-wrapper {
        padding: 0 !important;
        margin: 0 !important;
    }

    .bvdp-payment-amount .bvdp-amount {
        font-size: 36px;
    }

    .bvdp-form-card {
        padding: 20px;
    }

    /* Reduce section padding on mobile */
    .bvdp-features-section,
    .bvdp-similar-section,
    .bvdp-love-section,
    .bvdp-details-section {
        padding: 25px 0 !important;
    }

    .bvdp-similar-header {
        margin-bottom: 15px;
    }

    .bvdp-details-section h2,
    .bvdp-features-section h2,
    .bvdp-similar-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .bvdp-accordions .panel {
        margin-bottom: 6px;
    }

    .bvdp-accordions .panel-title a {
        padding: 12px 15px;
        font-size: 15px;
    }

    /* About This Vehicle section - appears separately on mobile */
    .bvdp-features-section .col-md-6:first-child {
        padding-top: 0 !important;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }

    .bvdp-features-section .bvdp-section-title:first-of-type {
        margin-top: 0;
    }

    .bvdp-description-wrapper {
        margin-bottom: 0;
    }
}

/* Mobile Optimization for Sticky Header - Simplify to match Birchwood */
@media (max-width: 767px) {

    .bvdp-sticky-info,
    .bvdp-sticky-price {
        display: none !important;
    }

    .bvdp-sticky-content {
        justify-content: center;
        padding: 5px 0;
    }

    .bvdp-sticky-actions {
        width: 100%;
        text-align: center;
    }

    .bvdp-sticky-actions .bvdp-btn-inquiry {
        width: 100%;
        max-width: 280px;
        font-size: 14px;
        padding: 8px 15px;
    }

    .bvdp-sticky-header {
        /* Ensure it sits at top */
        top: 0;
    }
}

/* Love It Section - Birchwood Reference Match */
.bvdp-love-it-section {
    background: #eff4f4;
    padding: 60px 0;
    margin-bottom: 30px;
    position: relative;
}

.bvdp-love-it-section::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 25px solid #eff4f4;
}

.bvdp-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.bvdp-love-content .row {
    display: flex;
    flex-wrap: wrap;
}

.bvdp-love-left-col {
    padding-right: 60px;
    display: flex;
    flex-direction: column;
}

.bvdp-love-right-col {
    padding-left: 80px;
    border-left: 2px solid #d7dddd;
}

.bvdp-love-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.bvdp-love-list-standard {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.bvdp-love-list-standard li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.bvdp-love-tagline {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.bvdp-love-tagline-sub {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0;
}

.bvdp-love-footer-wrapper {
    margin-top: 36px;
}

.bvdp-love-footer {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #333;
}

.bvdp-love-footer .fa {
    margin-right: 10px;
    font-size: 22px;
    color: #0d65bf;
}

/* Right Column - Features */
.bvdp-love-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bvdp-love-features-list li {
    display: flex;
    align-items: center;
    margin-top: 18px;
    font-size: 14px;
    color: #333;
}

.bvdp-love-features-list li:first-child {
    margin-top: 0;
}

.bvdp-love-features-list li .fa {
    margin-right: 15px;
    font-size: 20px;
    color: #0d65bf;
}

.bvdp-love-features-list li span {
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .bvdp-love-left-col {
        padding-right: 15px;
        margin-bottom: 40px;
        border-bottom: 2px solid #d7dddd;
        padding-bottom: 40px;
    }

    .bvdp-love-right-col {
        padding-left: 15px;
        border-left: none;
    }

    .bvdp-love-subtitle {
        font-size: 20px;
    }
}
