/* === VikRentCar Search Results - Rolzo Style Layout === */

/* Main Card Layout */
.car_result {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.car_result:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Image Area */
.vrc-car-result-left {
    flex: 0 0 220px;
    margin-right: 30px;
}

.vrc-car-result-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Text Area */
.vrc-car-result-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Vehicle Name */
.vrc-car-name {
    font-size: 26px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 10px;
}

/* Description Styling */
.vrc-car-result-description {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
}

/* Price Section */
.vrcsfresultprice {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

/* Continue Button */
.vrcsfbuttoncontinue input[type="button"],
.vrcsfbuttoncontinue input[type="submit"] {
    background-color: #bfa265;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vrcsfbuttoncontinue input[type="button"]:hover,
.vrcsfbuttoncontinue input[type="submit"]:hover {
    background-color: #9c8854;
}

/* Responsive Mobile Adjustments */
@media (max-width: 768px) {
    .car_result {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .vrc-car-result-left {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .vrc-car-name {
        font-size: 22px;
    }

    .vrcsfbuttoncontinue input[type="button"],
    .vrcsfbuttoncontinue input[type="submit"] {
        width: 80%;
    }
}
