.vwp-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    padding: 10px;
}

/* Tabs */
.vwp-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    border-bottom: 3px solid #eee;
}

.vwp-tab-button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    min-width: 80px;
    position: relative;
    outline: none;
}

.vwp-tab-button:hover,
.vwp-tab-active {
    background: #fdfdfd;
}

.vwp-tab-active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0073aa;
}

.vwp-thumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 5px;
}

.vwp-tab-img {
    max-height: 100%;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
}

.vwp-tab-title {
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

/* Vehicle Views */
.vwp-vehicle-block {
    text-align: left;
}

.vwp-vehicle-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.vwp-side-by-side {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    align-items: flex-start;
}

.vwp-left-col {
    flex: 1 1 0;
    min-width: 0;
}

.vwp-right-col {
    flex: 0 0 320px;
}

.vwp-main-image-container {
    width: 100%;
    margin-bottom: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vwp-full-car-img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.vwp-desc-box {
    margin-top: 10px;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 80px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.vwp-desc-box p {
    margin: 0;
}

/* Tiers List (Right Side) */
.vwp-tiers-list {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.vwp-tier-row {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: background-color 0.2s;
}

.vwp-tier-row:last-child {
    border-bottom: none;
}

.vwp-tier-row:hover,
.vwp-tier-active {
    background-color: #f1f8fe;
}

.vwp-tier-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 3px;
}

.vwp-tier-price {
    font-size: 14px;
    color: #666;
}

@media (max-width: 800px) {
    .vwp-side-by-side {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .vwp-right-col {
        flex: 1 1 100%;
        width: 100%;
    }
}
