/* MatchMyCar Widget Styles */

/* Car Search Widget */
.mmc-search-widget {
    background: #1a2740;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.mmc-search-widget .mmc-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mmc-search-widget .mmc-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 18px;
}

.mmc-search-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.mmc-search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 120px;
}

.mmc-search-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,.35);
}

.mmc-search-select {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 7px;
    color: #fff;
    padding: 9px 12px;
    font-size: .85rem;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: border-color .2s;
}

.mmc-search-select:focus { border-color: #e8552a; }
.mmc-search-select option { background: #1a2740; color: #fff; }
.mmc-search-select:disabled { opacity: .4; cursor: not-allowed; }

.mmc-search-btn {
    padding: 10px 20px;
    background: #e8552a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    align-self: flex-end;
}

.mmc-search-btn:hover    { background: #c94420; }
.mmc-search-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Fits-on widget (productpagina) */
.mmc-fits-on {
    background: #f8f9fb;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
}

.mmc-fits-on-title {
    font-size: .82rem;
    font-weight: 700;
    color: #1a2740;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mmc-fits-on-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mmc-fits-on-item {
    font-size: .82rem;
    color: #4a5568;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mmc-fits-on-years {
    color: #9aa5b4;
    font-size: .75rem;
}

.mmc-fits-on-more {
    font-size: .75rem;
    color: #e8552a;
    font-weight: 600;
    margin-top: 6px;
}

/* Responsive */
@media (max-width: 640px) {
    .mmc-search-row { flex-direction: column; }
    .mmc-search-field { min-width: 100%; }
    .mmc-search-btn { width: 100%; }
}
