/* Extracted from Views/MarketPlace/ModernVDP.cshtml style block 1. */
.vnuo.demo {
            background: #000000 !important;
            color: #fff !important;
        }
        
        /* Breadcrumb Styles */
        .mvdp-breadcrumb {
            padding: 15px 0 10px 0;
        }
        .mvdp-breadcrumb .breadcrumb {
            background: transparent;
            margin: 0;
            padding: 0;
            font-size: 13px;
        }
        .mvdp-breadcrumb .breadcrumb-item {
            display: inline;
        }
        .mvdp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            padding: 0 8px;
            color: #666;
        }
        .mvdp-breadcrumb .breadcrumb-item a {
            color: #333;
            text-decoration: none;
        }
        .mvdp-breadcrumb .breadcrumb-item a:hover {
            color: #007bff;
            text-decoration: underline;
        }
        .mvdp-breadcrumb .breadcrumb-item.active {
            color: #666;
        }
        @media (max-width: 768px) {
            .mvdp-breadcrumb {
                padding: 10px 0 5px 0;
            }
            .mvdp-breadcrumb .breadcrumb {
                font-size: 12px;
            }
        }

        .mvdp-kia-cpo-logo {
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }
        .mvdp-kia-cpo-logo img {
            max-width: 100%;
            height: auto;
        }
        
        /* Features Section Styles */
        .mvdp-features-section {
            padding: 40px 0;
            background-color: #fff;
        }
        .mvdp-section-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        /* Description Read More */
        .mvdp-description-content {
            max-height: 150px;
            overflow: hidden;
            position: relative;
            transition: max-height 0.5s ease-in-out;
        }
        .mvdp-description-content.expanded {
            max-height: 5000px !important;
            overflow: visible;
        }
        
        /* Dealer Comment in Love It Section */
        .mvdp-dealer-comment {
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .mvdp-dealer-comment-content {
            text-align: justify;
            font-size: 15px;
            line-height: 1.7;
            color: #444;
        }
        .mvdp-read-more {
            display: inline-block;
            margin-top: 10px;
            font-weight: 700;
            color: #007bff; /* Adjust color as needed */
            cursor: pointer;
            text-decoration: none;
        }
        
        /* Accordion Styles */
        .mvdp-accordion .panel-default {
            border: none;
            box-shadow: none;
            border-bottom: 1px solid #e0e0e0;
            border-radius: 0;
            margin-top: 0;
        }
        .mvdp-accordion .panel-heading {
            background-color: transparent;
            border: none;
            padding: 15px 0;
        }
        .mvdp-accordion .panel-title a {
            display: block;
            font-weight: 700;
            color: #333;
            text-decoration: none;
            font-size: 16px;
            position: relative;
        }
        .mvdp-accordion .panel-title a:hover,
        .mvdp-accordion .panel-title a:focus {
            text-decoration: none;
            color: #000;
        }
        .mvdp-accordion .panel-body {
            border-top: none;
            padding-top: 0;
            padding-bottom: 20px;
        }
        .mvdp-feature-list {
            padding-left: 20px;
            margin-bottom: 0;
        }
        .mvdp-feature-list li {
            padding: 3px 0;
            color: #555;
            font-size: 14px;
            list-style-type: disc;
        }
        
        /* Chevron Rotation */
        .mvdp-accordion .panel-title a .fa-caret-down {
            transition: transform 0.3s ease;
        }
        .mvdp-accordion .panel-title a.collapsed .fa-caret-down {
            transform: rotate(-90deg);
        }
        
        /* Two Column Feature List */
        .mvdp-feature-list.two-column-list {
            column-count: 2;
            column-gap: 40px;
        }
        @media (max-width: 768px) {
            .mvdp-feature-list.two-column-list {
                column-count: 1;
            }
        }
        
        /* Mobile Specs Grid - 2 columns with conditional visibility */
        @media (max-width: 768px) {
            .mvdp-specs-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }
            /* Hide all spec cells on mobile by default */
            .mvdp-specs-grid .mvdp-spec-cell {
                display: none;
            }
            /* For Used vehicles: show Odometer, Stock#, Condition, Engine */
            .mvdp-specs-grid.specs-used .spec-odometer,
            .mvdp-specs-grid.specs-used .spec-stock,
            .mvdp-specs-grid.specs-used .spec-condition,
            .mvdp-specs-grid.specs-used .spec-engine {
                display: block;
            }
            /* For New vehicles: show Stock#, Condition, Engine, Exterior */
            .mvdp-specs-grid.specs-new .spec-stock,
            .mvdp-specs-grid.specs-new .spec-condition,
            .mvdp-specs-grid.specs-new .spec-engine,
            .mvdp-specs-grid.specs-new .spec-exterior {
                display: block;
            }
        }

        /* Force Footer Visibility (overrides .light { display: none } from quote.min.css) */
        .footer.light {
            display: block !important;
        }
        
        /* All Images Overlay - Modern Style */
        .mvdp-all-images-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #000;
            z-index: 10000;
            overflow-y: auto;
            overflow-x: hidden;
        }
        
        .mvdp-all-images-header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background: #000;
            z-index: 10001;
            padding: 20px 0;
            border-bottom: 1px solid #333;
        }
        
        .mvdp-all-images-header .container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mvdp-all-images-close {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #fff;
            font-size: 36px;
            font-weight: 300;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            transition: color 0.2s ease;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -10px;
        }
        
        .mvdp-all-images-close:hover {
            color: #ccc;
        }
        
        .mvdp-all-images-title {
            color: #fff;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
            text-align: center;
            padding-right: 50px;
        }
        
        .mvdp-all-images-body {
            padding: 30px 0;
        }
        
        .mvdp-all-images-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }
        
        .mvdp-all-images-grid .large-img,
        .mvdp-all-images-grid > div {
            width: 100%;
        }
        
        .mvdp-all-images-grid img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
        
        @media (max-width: 992px) {
            .mvdp-all-images-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .mvdp-all-images-title {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .mvdp-all-images-grid {
                grid-template-columns: 1fr;
            }
            .mvdp-all-images-title {
                font-size: 16px;
                padding-right: 40px;
            }
            .mvdp-all-images-close {
                font-size: 28px;
                right: 10px;
            }
        }
        
        /* Form Validation Error Styles */
        .mvdp-form .has-error .form-control {
            border-color: #dc3545;
            background-color: #fff8f8;
        }
        .mvdp-form .has-error .form-control:focus {
            border-color: #dc3545;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }
        .mvdp-form .form-error {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
        }
        .mvdp-form .dv-err {
            color: #dc3545;
            font-size: 13px;
            font-weight: 500;
        }
        .mvdp-form-response {
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 4px;
        }
        .mvdp-form-response:empty {
            display: none;
            padding: 0;
            margin: 0;
        }
        .mvdp-form-response .text-success {
            color: #28a745;
        }
        .mvdp-form-response .text-danger {
            color: #dc3545;
        }
        
        /* Datepicker Styles */
        .dt-picker-custom {
            position: relative;
        }
        .dt-picker-custom .datepicker {
            z-index: 1050;
        }
        .dt-picker-custom .form-control[readonly] {
            background-color: #fff;
            cursor: pointer;
        }
        
        /* Sale Price / Savings Styles */
        .mvdp-sale-info {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 4px;
            flex-wrap: wrap;
        }
        .mvdp-regular-price {
            color: #999;
            font-size: 18px;
            text-decoration: line-through;
        }
        .mvdp-savings-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: #003478;
            font-weight: 600;
            font-size: 14px;
            position: relative;
        }
        .mvdp-savings-info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 1.5px solid #003478;
            color: #003478;
            font-size: 12px;
            font-weight: 700;
            font-style: italic;
            font-family: Georgia, serif;
            cursor: pointer;
            line-height: 1;
            flex-shrink: 0;
        }
        @media (hover: hover) and (pointer: fine) {
            .mvdp-savings-info-icon:hover {
                background-color: #003478;
                color: #fff;
            }
        }
        .mvdp-savings-tooltip {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            padding: 10px 14px;
            z-index: 100;
            min-width: 200px;
            white-space: nowrap;
        }
        .mvdp-savings-tooltip::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 14px;
            width: 10px;
            height: 10px;
            background: #fff;
            border-left: 1px solid #ddd;
            border-top: 1px solid #ddd;
            transform: rotate(45deg);
        }
        .mvdp-savings-tooltip.show {
            display: block;
        }
        .mvdp-savings-tooltip-item {
            display: block;
            font-size: 13px;
            color: #333;
            padding: 2px 0;
        }
        .mvdp-savings-tooltip-item .evap-tax-note {
            display: block;
            color: #64748b;
            font-size: 11px;
            font-weight: 400;
            line-height: 1.2;
            margin-top: 1px;
        }
        
        /* Price Breakdown Modal z-index fixes */
        #mdPriceBreakdown.modal {
            z-index: 1060 !important;
        }
        #mdPriceBreakdown .modal-dialog {
            z-index: 1065 !important;
            margin-top: 30px;
            opacity: 1 !important;
            visibility: visible !important;
            display: block !important;
        }
        #mdPriceBreakdown.in .modal-dialog {
            transform: translate(0, 0) !important;
        }
        .modal-backdrop {
            z-index: 1050 !important;
        }
        
        /* Offer Info Button and Tooltip Styles */
        .mvdp-offer-details {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }
        .mvdp-offer-info-btn {
            background: none;
            border: none;
            color: #003478;
            cursor: pointer;
            padding: 0 4px;
            font-size: 16px;
            line-height: 1;
        }
        .mvdp-offer-info-btn:hover {
            color: #002050;
        }
        .mvdp-offer-tooltip {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 10px 12px;
            font-size: 13px;
            color: #333;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            z-index: 100;
            margin-top: 5px;
            line-height: 1.4;
        }
        /* Stackability conflict styles */
        .mvdp-offer-item.stack-disabled {
            opacity: 0.55;
            pointer-events: none;
        }
        .mvdp-offer-item.stack-disabled .mvdp-offer-checkbox {
            pointer-events: auto;
            cursor: not-allowed;
        }
        .mvdp-stack-conflict {
            width: 100%;
            font-size: 11px;
            color: #c70818;
            margin-top: 2px;
            font-style: italic;
        }
        /* Two-tier cash/finance pricing */
        .mvdp-two-tier-pricing {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-bottom: 4px;
            max-width: 360px;
        }
        .mvdp-tier-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            font-size: 16px;
            line-height: 1.4;
        }
        .mvdp-tier-label {
            font-weight: 400;
            color: #555;
            margin-right: 10px;
        }
        .mvdp-tier-value {
            font-weight: 700;
            color: #222;
        }
        .mvdp-tier-discount .mvdp-tier-value {
            color: #28a745;
        }
        .mvdp-tier-finance {
            padding-top: 4px;
            border-top: 1px solid #ccc;
            margin-top: 2px;
        }
        .mvdp-tier-finance .mvdp-tier-value {
            color: #003478;
        }
