.crf-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Filter bar */
.crf-filter-form {
    background: #f7f7f9;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 30px;
}

.crf-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.crf-filter-row select {
    flex: 1 1 180px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
}

.crf-btn {
    display: inline-block;
    background: #e63946;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.crf-btn:hover {
    background: #c92c39;
    color: #fff;
}

.crf-btn-outline {
    background: transparent;
    border: 1px solid #e63946;
    color: #e63946;
    width: 100%;
    margin-top: 10px;
}

.crf-btn-outline:hover {
    background: #e63946;
    color: #fff;
}

/* Results grid - stacked horizontal cards */
.crf-results-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.2s ease;
}

.crf-results-grid.crf-loading {
    opacity: 0.4;
    pointer-events: none;
}

.crf-car-card {
    display: flex;
    gap: 24px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.crf-car-thumb {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crf-car-thumb img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.crf-car-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.crf-car-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.crf-car-title {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.crf-car-category {
    font-size: 14px;
    color: #888;
}

.crf-car-price {
    text-align: right;
    white-space: nowrap;
}

.crf-price-amount {
    color: #f4a300;
    font-size: 22px;
    font-weight: 700;
}

.crf-price-unit {
    color: #999;
    font-size: 13px;
}

.crf-price-label {
    font-size: 13px;
    color: #333;
}

.crf-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #f6f7f9;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 14px 0;
    font-size: 14px;
    color: #444;
}

.crf-car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.crf-car-location {
    font-size: 14px;
    color: #777;
}

.crf-btn-rent {
    background: #4a3fce;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.crf-btn-rent:hover {
    background: #3c32a8;
    color: #fff;
}

.crf-no-results {
    text-align: center;
    color: #888;
    padding: 40px 0;
}

@media (max-width: 640px) {
    .crf-car-card {
        flex-direction: column;
    }
    .crf-car-thumb {
        flex: none;
    }
}
