.rcc-vehicle-order-button {
    color: white;
    font-family: Open Sans, Arial;
    font-size: 15px;
    text-align: right;
    margin-right: 45px;
    color: #FFFFFF00;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 3px;
    padding: 12px 24px 12px 24px;
	
	background-color: white;
    font-weight: 500;
    border-color: white;
    border-style: solid;
    border-width: 1px;
}

/* RCC Status Badges */
.rcc-status-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 0, 0, 0.85);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 10;
}

.image.rcc-status-sold .image-inner img,
.image.rcc-status-reserved .image-inner img {
    filter: grayscale(100%) brightness(0.85);
}

.rcc-status-reserved img,
.rcc-status-sold img {
    filter: grayscale(100%);
}

.rcc-vehicle-status-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,0,0,0.8);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
    z-index: 10;
    border-radius: 3px;
}

.rcc-status-reserved .rcc-vehicle-status-label {
    background: rgba(255,165,0,0.8); /* Orange */
}

.rcc-status-sold .rcc-vehicle-status-label {
    background: rgba(128,128,128,0.8); /* Gray */
}

.rcc-vehicle-order-button.reserved {
    background-color: transparent !important;
    color: #ccc !important;
    border: 1px solid #ccc;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* CAR IMAGES */
/* Shared container */
.rcc-color-images {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
    margin: 20px 0;
}

/* Wrapper for each image */
.rcc-color-images .rcc-exterior-image,
.rcc-color-images .rcc-interior-image {
    width: 48%;
    max-width: 48%;
}

/* Images: uniform height with cropping */
.rcc-color-images img {
    width: 100%;
    height: 260px !important;/* ← Set equal height (adjust if needed) */
    object-fit: cover;       /* Ensures images crop nicely */
    object-position: center; /* Keeps center of image visible */
    display: block;
    border-radius: 6px;      /* Optional */
}

/* Mobile: 100% width, same fixed height */
@media (max-width: 768px) {
    .rcc-color-images {
        flex-direction: column;
        gap: 20px;
    }

    .rcc-color-images .rcc-exterior-image,
    .rcc-color-images .rcc-interior-image {
        width: 100%;
        max-width: 100%;
    }

    .rcc-color-images img {
        height: 220px;       /* Slightly smaller height for mobile (optional) */
    }
}