.rchalf-container {
    font-family: 'Oswald', 'Helvetica Neue', Arial, sans-serif;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 450px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
}

.rchalf-image-side {
    background-size: cover;
    background-position: center;
    height: 250px;
}

.rchalf-content-side {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

.rchalf-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
}

.rchalf-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    white-space: nowrap;
    justify-content: center;
}

.rchalf-subtitle-line {
    flex-grow: 1;
    height: 2px;
    background-color: #f25a22;
}

.rchalf-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 20px 0;
    text-align: center;
}

.rchalf-separator-star {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 25px;
}

.rchalf-separator-star::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

.rchalf-star {
    background-color: #ffffff;
    padding: 0 15px;
    z-index: 2;
    font-size: 20px;
    color: #f25a22;
}

.rchalf-rentals-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
    align-items: start;
    margin-top: 10px;
}

.rchalf-rental-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rchalf-vehicle-img-wrapper {
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Scaled down to closely match the visual height of the Rental Card V2 */
    height: 35px;
    overflow: hidden;
}

.rchalf-vehicle-img {
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.rchalf-rental-details {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.rchalf-rental-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.rchalf-price-wrap {
    display: flex;
    flex-direction: column;
}

.rchalf-price-lbl {
    font-size: 10px;
    color: #888888;
    letter-spacing: 1px;
}

.rchalf-price-val {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #f25a22;
}

.rchalf-price-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* Features List */
.rchalf-features-list-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    border-left: 1px solid #e0e0e0;
    padding-left: 15px;
}

.rchalf-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.rchalf-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.rchalf-feature-icon {
    font-size: 14px;
    color: #f25a22;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rchalf-feature-icon svg {
    width: 14px;
    height: 14px;
    fill: #f25a22;
}

.rchalf-feature-text {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Footer Disclaimer */
.rchalf-footer {
    padding: 20px 25px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fcf6f3;
}

.rchalf-footer-line {
    flex-grow: 1;
    height: 1px;
    background-color: #f25a22;
}

.rchalf-footer-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #777777;
    margin: 0;
    text-align: center;
    max-width: 70%;
}

@media (max-width: 480px) {
    .rchalf-rentals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rchalf-features-list-wrapper {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-left: 0;
        padding-top: 15px;
    }
}
