/* =========================================================
   Popup-Hinweis – Piano Service Berlin
   ========================================================= */

/* Checkbox unsichtbar (steuert das Popup) */
.psb-popup-toggle{
    position: fixed;
    left: -9999px;
    top: -9999px;
}

/* Overlay */
.psb-popup-overlay{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.55);
    padding: 24px;
}

/* Sichtbar, wenn Checkbox aktiv */
.psb-popup-toggle:checked + .psb-popup-overlay{
    display: grid;
    place-items: center;
}

/* Popup-Fenster */
.psb-popup{
    width: min(560px, 100%);
    background: #ffffff;
    color: inherit;
    font-family: inherit;
    border: 1px solid currentColor;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.35);
    padding: 22px 22px 18px;
    position: relative;
}

/* Schließen (X) */
.psb-popup-close{
    position: absolute;
    top: 8px;
    right: 10px;
    width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    user-select: none;

    background: transparent;
    border: 1px solid currentColor;
    border-radius: 8px;
    color: inherit;
}

.psb-popup-close:hover{
    background: rgba(0,0,0,0.06);
}

/* Inhalt */
.psb-popup-title{
    margin: 0 42px 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.psb-popup-text{
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

/* Mobile Optimierung */
@media (max-width: 420px){
    .psb-popup{
        padding: 18px 16px 14px;
        border-radius: 12px;
    }

    .psb-popup-title{
        font-size: 18px;
    }

    .psb-popup-text{
        font-size: 15px;
    }
}

/* Logo */
.psb-popup-logo{
    text-align: center;
    margin-bottom: 14px;
}

.psb-popup-logo img{
    max-width: 180px;
    height: auto;
}

/* Headline */
.psb-popup-headline{
    margin: 0 42px 12px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.psb-popup-headline span{
    display: block;
    font-weight: 400;
    font-size: 16px;
}

.psb-popup-sub{
    font-size: 14px;
    opacity: 0.85;
}

