/* MB Fahrzeugfilter */
.mbvf-box {
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding: 14px;
    background: #fff;
}
.mbvf-heading {
    font-weight: 600;
    margin-bottom: 10px;
}
.mbvf-box .mbvf-select,
.mbvf-box .mbvf-search-input {
    margin-bottom: 8px;
    width: 100%;
}
.mbvf-box .mbvf-submit {
    width: 100%;
    margin-top: 4px;
}
.mbvf-search {
    position: relative;
}
.mbvf-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 30;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}
.mbvf-suggestions:empty {
    display: none;
}
.mbvf-suggestion {
    padding: 8px 10px;
    cursor: pointer;
    font-size: .9rem;
    border-bottom: 1px solid #f1f1f1;
}
.mbvf-suggestion:hover {
    background: #f5f7fa;
}
.mbvf-or {
    text-align: center;
    color: #999;
    font-size: .8rem;
    margin: 10px 0;
    position: relative;
}
.mbvf-or span {
    background: #fff;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}
.mbvf-or::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}
.mbvf-current {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.mbvf-current-caption {
    color: #777;
    font-size: .85rem;
    display: block;
}
.mbvf-current-value {
    font-size: 1.05rem;
}
.mbvf-current-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}
/* Ergebnisseite */
.mbvf-results .mbvf-grid {
    margin-top: 16px;
}
.mbvf-card {
    border: 1px solid #ececec;
    border-radius: 6px;
    padding: 10px;
    height: 100%;
    text-align: center;
    margin-bottom: 16px;
}
.mbvf-card-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 8px;
}
.mbvf-card-name {
    display: block;
    font-size: .9rem;
    color: #222;
}
.mbvf-card-price {
    font-weight: 600;
    margin-top: 6px;
}

/* Header-Leiste (immer sichtbar) */
.mbvf-bar {
    background: #1c1d2c;
    color: #fff;
    border-bottom: 2px solid rgba(0, 0, 0, .15);
    font-size: .9rem;
}
.mbvf-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
}
.mbvf-bar-title {
    font-weight: 600;
    white-space: nowrap;
    margin-right: 6px;
}
.mbvf-bar-title .fas {
    margin-right: 4px;
}
.mbvf-bar .mbvf-picker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    margin: 0;
}
.mbvf-bar .mbvf-select {
    width: auto;
    flex: 0 1 150px;
    min-width: 110px;
    margin: 0;
}
.mbvf-bar .mbvf-search {
    position: relative;
    flex: 1 1 200px;
    min-width: 160px;
    margin: 0;
}
.mbvf-bar .mbvf-search-input {
    width: 100%;
    margin: 0;
}
.mbvf-bar .mbvf-submit {
    width: auto;
    margin: 0;
    white-space: nowrap;
}
.mbvf-bar .mbvf-current {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1 1 auto;
}
.mbvf-bar .mbvf-current-value {
    font-size: 1rem;
}
.mbvf-bar .mbvf-suggestions {
    color: #222;
}
@media (max-width: 767px) {
    .mbvf-bar .mbvf-select,
    .mbvf-bar .mbvf-search {
        flex: 1 1 100%;
        min-width: 0;
    }
    .mbvf-bar .mbvf-submit {
        width: 100%;
    }
}
