/* ============================================================
   Font-Lab (nur Entwurfsphase): Umschalt-Widget unten links zum
   Testen von Headline-Schriften. Nur im Entwicklungsmodus sichtbar.
   ============================================================ */

.fontlab {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.fontlab-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #0a2540;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(3, 30, 53, 0.35);
}

.fontlab-panel {
    display: none;
    position: absolute;
    left: 0;
    bottom: 54px;
    width: 250px;
    padding: 14px 14px 12px;
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(3, 30, 53, 0.18);
}

.fontlab.is-open .fontlab-panel {
    display: block;
}

.fontlab-head {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5d7086;
}

.fontlab-list {
    display: grid;
    gap: 2px;
}

.fontlab-opt {
    display: block;
    width: 100%;
    padding: 7px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a2540;
    cursor: pointer;
}

.fontlab-opt:hover {
    background: rgba(128, 179, 44, 0.1);
}

.fontlab-opt.is-active {
    background: rgba(128, 179, 44, 0.16);
    box-shadow: inset 0 0 0 1px rgba(128, 179, 44, 0.5);
}

.fontlab-note {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    color: #5d7086;
}
