/* PV 0% USt. Umschalter */

.lion-pv-toggle {
    --lion-pv-accent: #9FE223;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.2;
}

.lion-pv-toggle--inline {
    margin: 0.5rem 0 1rem;
}

/* Schalter + Text: vertikal mittig zueinander, fester Abstand */
.lion-pv-toggle-row {
    display: flex;
    align-items: center;
}

.lion-pv-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    margin: 0 !important; /* Bootstrap label-Margin neutralisieren */
    cursor: pointer;
    flex: 0 0 auto;
}

.lion-pv-text {
    margin-left: 10px;
    user-select: none;
    color: inherit;
}

/* Spalte innerhalb der bestehenden Top-Leiste (gleiche Zeile wie Kontakt) */
.lion-pv-topbar-col {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding: 0 15px;
}

/* Header-Leiste (Fallback-Einfügepunkt) */
.lion-pv-header-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.35rem 0;
}

.lion-pv-header-inner {
    display: flex;
    align-items: center;
}

/* Switch-Optik */
.lion-pv-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.lion-pv-slider {
    position: absolute;
    inset: 0;
    background: #c7c7c7;
    border-radius: 22px;
    transition: background 0.2s ease;
}

.lion-pv-slider::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.lion-pv-switch input:checked + .lion-pv-slider {
    background: var(--lion-pv-accent, #9FE223);
}

.lion-pv-switch input:checked + .lion-pv-slider::before {
    transform: translateX(20px);
}

.lion-pv-switch input:focus-visible + .lion-pv-slider {
    outline: 2px solid var(--lion-pv-accent, #9FE223);
    outline-offset: 2px;
}

/* Gesperrter Zustand (Firmenkunde im Checkout) */
.lion-pv-toggle--locked .lion-pv-switch {
    cursor: not-allowed;
}

.lion-pv-toggle--locked .lion-pv-slider {
    background: #dcdcdc;
}

.lion-pv-toggle--locked .lion-pv-text {
    opacity: 0.6;
}

/* Hinweistext unter dem Schalter (nur Checkout) */
.lion-pv-notice {
    margin-top: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #b02a37;
    max-width: 560px;
    text-align: left;
}

.lion-pv-notice p {
    margin: 0 0 2px;
}

.lion-pv-notice .lion-pv-notice-bullet {
    padding-left: 0.75rem;
}

/* Ladezustand: kurzes visuelles Feedback bis zum Reload */
.lion-pv-loading .lion-pv-toggle {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 576px) {
    .lion-pv-toggle {
        font-size: 0.8rem;
    }
}
