#k-popup {
    display: none; /* wichtig */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#k-popup.show {
    opacity: 1;
}

.k-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    text-align: center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.2);

    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#k-popup.show .k-box {
    transform: translateY(0);
}

/* Bild */
.k-image {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Titel */
.k-box h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

/* Text */
.k-box p {
    margin: 0 0 1rem;
    color: #555;
    line-height: 1.5;
}

/* CTA Button */
.k-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, #f05a00, #d94e00);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;

    box-shadow: 0 8px 20px rgba(240, 90, 0, 0.3);
    transition: all 0.2s ease;
}

.k-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(240, 90, 0, 0.4);
}

/* Close Button deutlich sichtbarer */
#k-close {
    background: none;
    border: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;

    opacity: 0.8;
    transition: all 0.2s ease;
}

#k-close:hover {
    opacity: 1;
    text-decoration: underline;
}


/* Container für Buttons */
.k-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}
