.vm-vehicle-features {
    --vm-features-columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--vm-features-columns), minmax(0, 1fr));
    gap: 12px 18px;
}

.vm-vehicle-features__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
}

.vm-vehicle-features__icon,
.vm-vehicle-showcase__feature-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
}

.vm-vehicle-features__icon img,
.vm-vehicle-showcase__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vm-vehicle-features__content,
.vm-vehicle-showcase__feature-text {
    min-width: 0;
}

.vm-vehicle-features__name,
.vm-vehicle-showcase__feature-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.vm-vehicle-features__value,
.vm-vehicle-showcase__feature-value {
    margin-top: 4px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.vm-vehicle-showcase {
    direction: rtl;
    border: 1px solid #d8d8d8;
    background: #f9f9f9;
    overflow: hidden;
}

.vm-vehicle-showcase__body {
    display: flex;
    flex-direction: row-reverse;
    gap: 18px;
    padding: 16px;
}

.vm-vehicle-showcase__info {
    flex: 1 1 65%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vm-vehicle-showcase__features {
    --vm-features-columns: 2;
    display: grid;
    grid-template-columns: repeat(var(--vm-features-columns), minmax(0, 1fr));
    gap: 12px 18px;
}

.vm-vehicle-showcase__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e6e6e6;
}

.vm-vehicle-showcase__media {
    flex: 0 0 300px;
    max-width: 300px;
    border: 1px solid #d8d8d8;
    background: #fff;
}

.vm-vehicle-showcase__title {
    padding: 10px 12px;
    background: #f6a21a;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.vm-vehicle-showcase__gallery {
    padding: 14px;
}

.vm-vehicle-showcase__slides {
    position: relative;
    min-height: 220px;
}

.vm-vehicle-showcase__slide {
    display: none;
    align-items: center;
    justify-content: center;
}

.vm-vehicle-showcase__slide.is-active {
    display: flex;
}

.vm-vehicle-showcase__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.vm-vehicle-showcase__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.vm-vehicle-showcase__dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #c9c9c9;
    cursor: pointer;
    padding: 0;
}

.vm-vehicle-showcase__dot.is-active {
    background: #4185b7;
}

.vm-vehicle-showcase__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vm-vehicle-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 11px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-decoration: none;
}

.vm-vehicle-showcase__button:hover,
.vm-vehicle-showcase__button:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.92;
}

.vm-vehicle-showcase__button--orange {
    background: #f6a21a;
}

.vm-vehicle-showcase__button--red {
    background: #df3c2f;
}

.vm-vehicle-showcase__button--blue {
    background: #1273eb;
}

.vm-vehicle-showcase__button--green {
    background: #2fa941;
}

.vm-vehicle-showcase__button--dark {
    background: #444;
}

.vm-vehicle-showcase__button--light {
    background: #f2f2f2;
    color: #333;
    border: 1px solid #ddd;
}

.vm-vehicle-showcase__empty,
.vm-vehicle-showcase__empty-inner {
    padding: 18px;
    border: 1px dashed #d3d3d3;
    background: #fff;
    color: #666;
    text-align: center;
}

@media (max-width: 1024px) {
    .vm-vehicle-showcase__body {
        flex-direction: column;
    }

    .vm-vehicle-showcase__media {
        flex-basis: auto;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .vm-vehicle-features,
    .vm-vehicle-showcase__features {
        --vm-features-columns: 1 !important;
    }

    .vm-vehicle-showcase__button {
        width: 100%;
        min-width: 0;
    }
}
