﻿/* ==================== BREADCRUMB ==================== */
.vd-breadcrumb-section {
    background-color: #ffffff;
    padding: 10px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.vd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.vd-breadcrumb-item {
    color: #666666;
    text-decoration: none;
    text-transform: uppercase;
}

    .vd-breadcrumb-item:hover {
        color: #000000;
    }

    .vd-breadcrumb-item.active {
        color: #000000;
    }

.vd-breadcrumb-separator {
    color: #666666;
}

/* ==================== MAIN LAYOUT ==================== */
.vd-vehicle-layout {
    max-width: 1600px;
    margin: 0 auto;
    padding: 25px 40px;
    display: grid;
    grid-template-columns: 62% 1fr;
    gap: 30px;
    align-items: start;
    background-color: #ffffff;
}

/* ==================== LEFT - IMAGE ==================== */
.vd-image-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 100%;
}

.vd-main-image-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    height: 450px;
    position: relative;
    cursor: pointer;
}

.vd-main-car-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vd-main-image-box:hover .vd-main-car-image {
    transform: scale(1.05);
}

.vd-image-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.vd-thumbnails-wrapper {
    position: relative;
    overflow: hidden;
}

.vd-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #f0f0f0;
    padding-bottom: 5px;
}

    .vd-thumbnails::-webkit-scrollbar {
        height: 6px;
    }

    .vd-thumbnails::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .vd-thumbnails::-webkit-scrollbar-thumb {
        background: #c0c0c0;
        border-radius: 10px;
    }

        .vd-thumbnails::-webkit-scrollbar-thumb:hover {
            background: #a0a0a0;
        }

.vd-thumb {
    flex: 0 0 auto;
    width: calc(20% - 6.4px);
    min-width: 120px;
    aspect-ratio: 1.5;
    background: #d9d9d9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
    border: 2px solid transparent;
}

    .vd-thumb:hover {
        border-color: #FFB74D;
        transform: scale(1.02);
    }

    .vd-thumb.active {
        border-color: #FFB74D;
    }

    .vd-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ==================== RIGHT - CARD ==================== */
.vd-details-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.vd-top-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vd-btn-outline,
.vd-btn-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    white-space: nowrap;
}

.vd-btn-outline {
    background: rgba(197, 197, 197, 0.14);
    border: 1px solid #000000;
    color: #242424;
}

    .vd-btn-outline:hover {
        background: rgba(197, 197, 197, 0.24);
    }

.vd-btn-dark {
    background: #242424;
    color: #ffffff;
}

    .vd-btn-dark:hover {
        background: #333333;
    }

.vd-btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.vd-info-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #454545;
    border-radius: 50px;
    border: 1px solid rgba(221, 221, 221, 0.66);
    width: fit-content;
}

    .vd-info-badge span {
        font-size: 11px;
        font-weight: 600;
        color: #ffffff;
    }

.vd-car-info {
    margin: 0;
}

.vd-car-title {
    font-size: 20px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 6px;
    line-height: 1.3;
}

.vd-car-price {
    font-size: 22px;
    font-weight: 600;
    color: #23a400;
}

.vd-specs-box {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid #939393;
    border-radius: 14px;
    padding: 20px;
}

.vd-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vd-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.vd-spec-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

.vd-spec-title {
    font-size: 14px;
    font-weight: 600;
    color: #242424;
    line-height: 1.2;
}

.vd-spec-val {
    font-size: 12px;
    font-weight: 500;
    color: #242424;
}

.vd-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vd-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vd-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #242424;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

    .vd-action-btn:hover {
        background: #333333;
        transform: translateY(-1px);
    }

    .vd-action-btn span {
        font-size: 12px;
        font-weight: 600;
        color: #ffffff;
    }

.vd-reserve-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(0deg, rgba(254, 239, 198, 0.35), rgba(254, 239, 198, 0.35)), linear-gradient(137deg, #da8207 0%, #dd9318 9%, #ffcb3c 23%, #ffcb3c 68%, #e39c1e 80%, #fbc63a 84%);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 203, 60, 0.25);
}

    .vd-reserve-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 8px;
        background: linear-gradient(180deg, rgba(242, 213, 107, 0.59) 0%, rgba(247, 199, 70, 0.71) 55%, rgba(251, 188, 40, 0.8) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .vd-reserve-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 12px rgba(255, 203, 60, 0.35);
    }

    .vd-reserve-btn svg {
        width: 16px;
        height: 16px;
        position: relative;
        z-index: 2;
        fill: #242424;
    }

    .vd-reserve-btn span {
        font-size: 14px;
        font-weight: 700;
        color: #242424;
        position: relative;
        z-index: 2;
    }

/* ==================== SUMMARY SECTION ==================== */
.vd-summary-section {
    background: #3a3a3a;
    padding: 50px 0;
}

.vd-summary-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.vd-summary-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.vd-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vd-summary-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

    .vd-summary-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

.vd-summary-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vd-summary-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.vd-summary-label {
    font-size: 13px;
    font-weight: 600;
    color: #cccccc;
    text-transform: capitalize;
}

.vd-summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    padding-left: 40px;
}

/* ==================== FULL SPECIFICATION SECTION ==================== */
.vd-specification-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.vd-specification-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.vd-specification-title {
    font-size: 32px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 30px;
}

.vd-specification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vd-specification-item {
    background: #3a3a3a;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .vd-specification-item:hover {
        background: #2a2a2a;
        border-color: rgba(255, 167, 38, 0.3);
        transform: translateX(5px);
    }

.vd-spec-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vd-spec-item-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    flex-shrink: 0;
}

.vd-spec-item-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.vd-spec-item-arrow {
    width: 20px;
    height: 20px;
    color: #cccccc;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.vd-specification-item:hover .vd-spec-item-arrow {
    transform: translateX(5px);
    color: #ffffff;
}

/* ==================== FINANCE SECTION ==================== */
.vd-finance-section {
    background: #1a1a1a;
    padding: 60px 0;
}

.vd-finance-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.vd-finance-header {
    text-align: center;
    margin-bottom: 40px;
}

.vd-finance-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.vd-finance-subtitle {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.vd-finance-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vd-finance-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

    .vd-finance-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vd-emi-calculator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
}

.vd-emi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.vd-emi-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vd-emi-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.vd-emi-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.vd-emi-amount {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.vd-emi-controls {
    margin-bottom: 20px;
}

.vd-control-group {
    margin-bottom: 24px;
}

.vd-control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vd-control-label {
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

.vd-control-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.vd-percentage-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.vd-percentage-btn {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .vd-percentage-btn:hover,
    .vd-percentage-btn.active {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }

.vd-slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vd-slider-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .vd-slider-btn:hover {
        background: rgba(255, 255, 255, 0.15);
    }

.vd-slider-wrapper {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    flex: 1;
}

.vd-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 3px;
    pointer-events: none;
}

.vd-emi-slider {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

    .vd-emi-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 16px;
        height: 16px;
        background: #ffffff;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .vd-emi-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        background: #ffffff;
        border-radius: 50%;
        cursor: pointer;
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

.vd-get-details-btn {
    width: 100%;
    padding: 14px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    text-transform: uppercase;
}

    .vd-get-details-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    }

/* ==================== COMPARE CARS SECTION ==================== */
.vd-compare-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.vd-compare-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.vd-compare-title {
    font-size: 32px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 30px;
}

.vd-compare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vd-compare-car-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .vd-compare-car-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

.vd-compare-car-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e0e0e0;
}

    .vd-compare-car-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.vd-compare-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
}

    .vd-compare-rating svg {
        width: 12px;
        height: 12px;
        color: #FFD700;
        fill: #FFD700;
    }

    .vd-compare-rating span {
        font-size: 11px;
        font-weight: 600;
        color: #ffffff;
    }

.vd-compare-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #242424;
    backdrop-filter: blur(10px);
}

.vd-compare-car-details {
    padding: 16px;
}

.vd-compare-car-name {
    font-size: 14px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 8px;
    line-height: 1.3;
}

.vd-compare-car-price {
    font-size: 16px;
    font-weight: 700;
    color: #23a400;
    margin-bottom: 12px;
}

.vd-compare-car-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.vd-compare-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

    .vd-compare-spec-item svg {
        width: 18px;
        height: 18px;
        color: #666666;
        flex-shrink: 0;
    }

    .vd-compare-spec-item .vd-compare-spec-label {
        font-size: 9px;
        color: #666666;
        font-weight: 500;
        text-transform: uppercase;
    }

    .vd-compare-spec-item .vd-compare-spec-value {
        font-size: 11px;
        color: #242424;
        font-weight: 600;
    }

.vd-compare-car-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.vd-compare-callback-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    background: #FFB74D;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .vd-compare-callback-btn:hover {
        background: #FFA726;
        transform: translateY(-1px);
    }

.vd-compare-whatsapp-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .vd-compare-whatsapp-btn:hover {
        background: #20BA5A;
        transform: scale(1.05);
    }

    .vd-compare-whatsapp-btn svg {
        width: 22px;
        height: 22px;
        color: #ffffff;
    }

/* ==================== PORTFOLIO SECTION ==================== */
.vd-portfolio-section {
    background: #ffffff;
    padding: 60px 0;
}

.vd-portfolio-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.vd-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.vd-portfolio-title {
    font-size: 32px;
    font-weight: 700;
    color: #242424;
}

.vd-view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #FFB74D;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .vd-view-all-link:hover {
        color: #FFA726;
    }

.vd-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.vd-brand-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
    text-decoration: none;
}

    .vd-brand-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

.vd-brand-logo {
    width: 100%;
    height: auto;
    max-width: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.vd-brand-card:hover .vd-brand-logo {
    filter: grayscale(0%);
}

.vd-car-style-title {
    font-size: 32px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 30px;
}

.vd-car-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.vd-car-style-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
    text-decoration: none;
}

    .vd-car-style-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

.vd-car-style-icon {
    width: 60px;
    height: 60px;
    color: #666666;
    transition: color 0.3s ease;
}

.vd-car-style-card:hover .vd-car-style-icon {
    color: #FFB74D;
}

.vd-car-style-name {
    font-size: 13px;
    font-weight: 600;
    color: #242424;
    text-transform: uppercase;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 1200px) {
    .vd-vehicle-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 30px;
    }

    .vd-details-card {
        position: relative;
        top: 0;
    }

    .vd-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vd-finance-container {
        grid-template-columns: 1fr;
    }

    .vd-compare-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vd-brand-grid,
    .vd-car-style-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .vd-breadcrumb-section {
        padding: 10px 15px;
    }

    .vd-vehicle-layout {
        padding: 0;
        gap: 0;
        display: block;
    }

    .vd-image-container {
        margin-bottom: 0;
        border-radius: 0;
    }

    .vd-main-image-box {
        height: 250px;
        border-radius: 0;
    }

    .vd-thumbnails-wrapper {
        padding: 10px 15px;
        background: #ffffff;
    }

    .vd-thumb {
        min-width: 80px;
        width: 80px;
    }

    .vd-details-card {
        padding: 20px 15px;
        position: relative;
        top: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .vd-top-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vd-btn-outline,
    .vd-btn-dark {
        padding: 12px 10px;
        font-size: 11px;
    }

    .vd-info-badge {
        width: 100%;
        text-align: center;
    }

        .vd-info-badge span {
            font-size: 10px;
        }

    .vd-car-title {
        font-size: 16px;
    }

    .vd-car-price {
        font-size: 18px;
    }

    .vd-specs-box {
        padding: 15px;
    }

    .vd-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .vd-spec-icon {
        width: 24px;
        height: 24px;
    }

    .vd-spec-title {
        font-size: 10px;
    }

    .vd-spec-val {
        font-size: 9px;
    }

    .vd-action-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .vd-action-btn {
        padding: 12px 6px;
        gap: 6px;
    }

        .vd-action-btn .vd-btn-icon {
            width: 14px;
            height: 14px;
        }

        .vd-action-btn span {
            font-size: 9px;
        }

    .vd-reserve-btn {
        padding: 14px;
    }

        .vd-reserve-btn span {
            font-size: 12px;
        }

    .vd-summary-section,
    .vd-specification-section,
    .vd-finance-section,
    .vd-compare-section,
    .vd-portfolio-section {
        padding: 30px 15px;
    }

    .vd-summary-container,
    .vd-specification-container,
    .vd-finance-wrapper,
    .vd-compare-container,
    .vd-portfolio-container {
        padding: 0;
    }

    .vd-summary-title,
    .vd-specification-title,
    .vd-finance-title,
    .vd-portfolio-title,
    .vd-compare-title,
    .vd-car-style-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .vd-summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vd-summary-item {
        padding: 15px;
    }

    .vd-summary-icon {
        width: 24px;
        height: 24px;
    }

    .vd-summary-label {
        font-size: 11px;
    }

    .vd-summary-value {
        font-size: 13px;
        padding-left: 36px;
    }

    .vd-specification-item {
        padding: 15px 18px;
    }

    .vd-spec-item-label {
        font-size: 12px;
    }

    .vd-finance-header {
        margin-bottom: 25px;
    }

    .vd-finance-title {
        font-size: 20px;
    }

    .vd-finance-subtitle {
        font-size: 11px;
    }

    .vd-emi-calculator {
        padding: 20px 15px;
    }

    .vd-percentage-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .vd-percentage-btn {
        padding: 6px 8px;
        font-size: 10px;
    }

    .vd-compare-grid {
        grid-template-columns: 1fr;
    }

    .vd-compare-car-image {
        height: 160px;
    }

    .vd-brand-grid,
    .vd-car-style-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .vd-brand-card,
    .vd-car-style-card {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .vd-breadcrumb {
        font-size: 8px;
    }

    .vd-main-image-box {
        height: 220px;
    }

    .vd-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .vd-spec-icon {
        width: 20px;
        height: 20px;
    }

    .vd-spec-title {
        font-size: 9px;
    }

    .vd-spec-val {
        font-size: 8px;
    }

    .vd-action-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .vd-action-btn {
        padding: 10px 4px;
        gap: 4px;
    }

        .vd-action-btn .vd-btn-icon {
            width: 12px;
            height: 12px;
        }

        .vd-action-btn span {
            font-size: 8px;
        }

    .vd-brand-grid,
    .vd-car-style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vd-percentage-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ==================== ICON VISIBILITY FIXES ==================== */
/* This forces the SVGs to display their correct colors and overrides global site styles */

.vd-spec-icon {
    color: #242424 !important;
    fill: currentColor !important;
    display: block !important;
}

.vd-btn-outline .vd-btn-icon {
    color: #242424 !important;
    stroke: currentColor !important;
    fill: none !important;
}

.vd-btn-dark .vd-btn-icon,
.vd-action-btn .vd-btn-icon {
    color: #ffffff !important;
    fill: currentColor !important;
}

.vd-reserve-btn svg {
    fill: #242424 !important;
    color: #242424 !important;
}

.vd-summary-icon,
.vd-spec-item-icon,
.vd-emi-icon,
.vd-compare-whatsapp-btn svg {
    color: #ffffff !important;
    fill: currentColor !important;
}

.vd-spec-item-arrow {
    color: #cccccc !important;
    fill: currentColor !important;
}

.vd-compare-rating svg {
    color: #FFD700 !important;
    fill: currentColor !important;
}

.vd-compare-spec-item svg {
    color: #666666 !important;
    fill: currentColor !important;
}