.bvs-vehicle-search {
    position: relative;
    width: 100%;
    margin: 24px 0 0;
}

.bvs-search-shell {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.bvs-search-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.2fr 1.3fr auto;
    gap: 16px;
    align-items: end;
}

.bvs-field {
    min-width: 0;
}

.bvs-field label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.01em;
}

.bvs-field select {
    width: 100%;
    height: 56px;
    border: 1px solid #dbe1ea;
    border-radius: 14px;
    padding: 0 16px;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #6b7280 50%),
        linear-gradient(135deg, #6b7280 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.bvs-field select:focus {
    border-color: #7aa0ef;
    box-shadow: 0 0 0 4px rgba(80, 123, 232, 0.14);
}

.bvs-field select:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.bvs-action {
    display: flex;
    align-items: end;
}

.bvs-btn {
    height: 56px;
    min-width: 150px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #7ca0ee 0%, #5e86de 100%);
    color: #ffffff;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
    box-shadow: 0 10px 24px rgba(94, 134, 222, 0.28);
}

.bvs-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(94, 134, 222, 0.35);
}

.bvs-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.bvs-results {
    margin-top: 24px;
}

.bvs-loading,
.bvs-empty {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    color: #374151;
    font-weight: 600;
}

.bvs-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.bvs-product-card {
    border: 1px solid #e8ebf0;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.bvs-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
}

.bvs-product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

.bvs-product-card-body {
    padding: 16px;
}

.bvs-product-title {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 800;
    color: #111827;
}

.bvs-product-meta {
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 10px;
}

.bvs-product-price {
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
}

.bvs-product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    text-decoration: none;
    background: #101828;
    color: #ffffff;
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: opacity .2s ease;
}

.bvs-product-link:hover {
    opacity: 0.9;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .bvs-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bvs-action {
        grid-column: 1 / -1;
    }

    .bvs-btn {
        width: 100%;
    }

    .bvs-results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .bvs-search-shell {
        padding: 18px;
        border-radius: 18px;
    }

    .bvs-search-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bvs-action {
        grid-column: auto;
    }

    .bvs-results-grid {
        grid-template-columns: 1fr;
    }

    .bvs-product-card img {
        height: 220px;
    }
}
