/* K2 Massage – Info-/Aktions-Popup */

.k2pp-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.k2pp-overlay.k2pp-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.k2pp-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 40, 70, .6);
}

.k2pp-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    transform: translateY(14px) scale(.98);
    transition: transform .25s ease;
}

.k2pp-overlay.k2pp-open .k2pp-card {
    transform: translateY(0) scale(1);
}

.k2pp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #222222;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.k2pp-close:hover {
    background: #fff;
}

.k2pp-image {
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.k2pp-image img {
    width: 100%;
    height: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.k2pp-body {
    padding: 28px 26px 30px;
    text-align: center;
}

.k2pp-badge {
    display: inline-block;
    background: #FFF8E1;
    color: #142846;
    border: 1px solid #D6B32C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.k2pp-headline {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.3;
    color: #142846;
    font-weight: 800;
}

.k2pp-text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.55;
    color: #222222;
}

.k2pp-text p {
    margin: 0 0 10px;
}

.k2pp-text p:last-child {
    margin-bottom: 0;
}

.k2pp-button {
    display: inline-block;
    background: linear-gradient(135deg, #D6B32C, #E87522);
    color: #142846;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 999px;
    transition: filter .15s ease, transform .15s ease;
}

.k2pp-button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
    color: #142846;
}

body.k2pp-noscroll {
    overflow: hidden;
}

@media (max-width: 480px) {
    .k2pp-card {
        max-width: 100%;
    }

    .k2pp-body {
        padding: 22px 18px 24px;
    }

    .k2pp-headline {
        font-size: 19px;
    }
}
