/* --- Variables --- */
:root {
    --vs-gold: #d4a017;
    --vs-navy: #0a192f;
    --vs-bg: #f4f7f6;
    --vs-white: #ffffff;
    --vs-text: #4a4a4a;
}

/* --- Global Reset for Section (Hide Bullet Points) --- */
.vehicle-show-patch, 
.vehicle-show-patch *, 
.vehicle-show-patch ul, 
.vehicle-show-patch li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
    text-indent: 0;
}

.vehicle-show-patch {
    padding: 60px 20px;
    background-color: var(--vs-bg);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Wrapper --- */
.vehicle-show-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    background: var(--vs-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
}

/* --- Image Side & Slider Fix --- */
.vehicle-show-image-side {
    flex: 1.1;
    position: relative;
    background: #000;
    min-height: 400px;
    overflow: hidden;
}

.vehicle-show-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.vehicle-show-img.active {
    opacity: 1;
    z-index: 2;
    position: relative; /* पहिली इमेज फ्रेम साइज ठरवते */
}

/* --- Navigation Dots (No Bullets) --- */
.vehicle-show-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.vehicle-show-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--vs-white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    display: block;
}

.vehicle-show-dot.active {
    background: var(--vs-gold);
    width: 30px;
    border-radius: 10px;
    border-color: var(--vs-gold);
}

/* --- Content Details --- */
.vehicle-show-details {
    flex: 0.9;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--vs-white);
}

.vehicle-show-title {
    font-size: 28px;
    color: var(--vs-navy);
    margin: 0 0 5px 0;
    font-weight: 800;
    line-height: 1.2;
}

.vehicle-show-subtitle {
    color: var(--vs-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.vehicle-show-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.vehicle-show-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vehicle-show-icon {
    width: 45px;
    height: 45px;
    background: #fdf8ed;
    color: var(--vs-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.vehicle-show-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin: 0;
}

.vehicle-show-val {
    display: block;
    font-weight: 700;
    color: var(--vs-navy);
    font-size: 15px;
    margin: 0;
}

/* --- Button Style --- */
.vehicle-show-btn {
    background: var(--vs-navy);
    color: var(--vs-white);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vehicle-show-btn:hover {
    background: var(--vs-gold);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
    transform: translateY(-2px);
}

/* --- Responsive Layout --- */
@media (max-width: 850px) {
    .vehicle-show-wrapper {
        flex-direction: column;
    }
    .vehicle-show-image-side {
        min-height: 280px;
    }
    .vehicle-show-details {
        padding: 30px;
    }
    .vehicle-show-title {
        font-size: 24px;
    }
}