/* VRT Translate Frontend */

/* ------------------------------ Topbar ------------------------------ */
.vrt-topbar {
    background: #111;
    color: #ddd;
    font-size: 13px;
    line-height: 1;
    position: relative;
    z-index: 999;
}
.vrt-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.vrt-topbar a {
    color: #ddd;
    text-decoration: none;
}
.vrt-topbar a:hover {
    color: #fff;
}
.vrt-topbar-left,
.vrt-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.vrt-topbar .vrt-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vrt-topbar .vrt-social svg {
    width: 15px;
    height: 15px;
    fill: #ddd;
    vertical-align: middle;
}
.vrt-topbar .vrt-social a:hover svg {
    fill: #fff;
}
.vrt-topbar .vrt-account a {
    margin-left: 12px;
}

/* --------------------------- Sprachumschalter ------------------------ */
.vrt-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.vrt-switcher a,
.vrt-switcher span.current {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    opacity: 0.65;
    transition: opacity 0.15s;
}
.vrt-switcher a:hover {
    opacity: 1;
}
.vrt-switcher .current {
    opacity: 1;
}
.vrt-switcher svg.vrt-flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    display: block;
}

/* ------------------------- Floating Switcher ------------------------- */
.vrt-floating-switcher {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    background: rgba(17, 17, 17, 0.92);
    border-radius: 24px;
    padding: 8px 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.vrt-floating-switcher .vrt-switcher svg.vrt-flag {
    width: 26px;
    height: 18px;
}

/* --------------------------- Fahrzeugfilter -------------------------- */
.vrt-vfilter {
    background: #1a1a1a;
    color: #eee;
    padding: 24px;
    border-radius: 8px;
    max-width: 420px;
}
.vrt-vfilter .vrt-vfilter-title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.vrt-vfilter .vrt-vfilter-row {
    margin-bottom: 12px;
}
.vrt-vfilter .vrt-vfilter-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    color: #aaa;
}
.vrt-vfilter select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #0d0d0d;
    color: #eee;
    font-size: 15px;
}
.vrt-vfilter select:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.vrt-vfilter .vrt-vfilter-submit {
    width: 100%;
    margin-top: 8px;
    padding: 13px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: #e21b22;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}
.vrt-vfilter .vrt-vfilter-submit:hover {
    background: #c4151b;
}
.vrt-vfilter .vrt-vfilter-submit:disabled {
    background: #555;
    cursor: not-allowed;
}
.vrt-vfilter .vrt-vfilter-notfound {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #bbb;
    text-decoration: underline;
}
.vrt-vfilter .vrt-vfilter-notfound:hover {
    color: #fff;
}
.vrt-vfilter .vrt-loading {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 600px) {
    .vrt-topbar-inner {
        justify-content: center;
    }
    .vrt-vfilter {
        max-width: none;
    }
}
