/* WC Fitment – automobilio pasirinkimo widget'as */
.wcf-search-widget {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 28px;
}
.wcf-selects {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
}
.wcf-select-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 130px;
}
.wcf-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.wcf-select-wrap select {
    padding: 9px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color .15s;
}
.wcf-select-wrap select:disabled {
    background: #e9ecef;
    color: #aaa;
    cursor: not-allowed;
}
.wcf-select-wrap select:focus {
    outline: none;
    border-color: #1F5C99;
    box-shadow: 0 0 0 3px rgba(31,92,153,.15);
}
.wcf-btn-wrap { display: flex; flex-direction: column; }
.wcf-btn {
    background: #1F5C99;
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.wcf-btn:hover { background: #174d82; }

/* Pasirinkto automobilio banner'is */
.wcf-selected-vehicle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e8f0fb;
    border: 1px solid #b3cdf5;
    border-radius: 5px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 14px;
}
.wcf-selected-vehicle strong { color: #1F5C99; }
.wcf-selected-vehicle small  { color: #888; font-size: 12px; }
.wcf-clear {
    color: #c0392b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
    white-space: nowrap;
}
.wcf-clear:hover { color: #922b21; }

/* Responsive */
@media (max-width: 600px) {
    .wcf-selects { flex-direction: column; }
    .wcf-select-wrap, .wcf-btn-wrap { min-width: 100%; }
}
