/* דף חיפוש מגבים לרכב – עיצוב חדשני */
.carwipers-form .form-select:focus,
.carwipers-form .form-label {
    transition: color 0.2s ease, border-color 0.2s ease;
}

.carwipers-form .form-select {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}

.carwipers-form .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* כרטיס טופס – לבן, צל עדין, פינות מעוגלות */
.carwipers-form-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.carwipers-form-card .card-body {
    padding: 1.25rem 1.5rem;
}

/* שורת הטופס – במסכים גדולים שדות בשורה אחת, כפתורים בצד */
@media (min-width: 768px) {
    .carwipers-form-row {
        flex-wrap: nowrap;
    }
}

/* כפתורים באותה שורה */
.carwipers-form-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.carwipers-form-buttons .btn-warning {
    font-weight: 600;
}

/* בלוק תמונה + טקסט */
.carwipers-image-text-wrap {
    gap: 0.75rem;
}

.carwipers-product-img {
    max-width: 220px;
    flex-shrink: 0;
}

.carwipers-product-img img {
    display: block;
}

.carwipers-image-text-wrap .flex-grow-1 {
    min-width: 0;
}

.carwipers-result .card-body {
    min-height: 80px;
}

@media (max-width: 575.98px) {
    .carwipers-product-img {
        max-width: 100%;
    }

    .carwipers-form .row.flex-nowrap {
        flex-wrap: wrap;
    }

    .carwipers-form-buttons {
        width: 100%;
        min-width: 0;
    }

    .carwipers-form-buttons .btn {
        flex: 1;
    }
}
