/* Overlay */
.bf-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Modal */
.bf-popup-modal {
    background: #ffffff;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 30px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--bf-accent, #c7b199);
    text-align: center;
}

/* Close Button */
.bf-popup-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--bf-close, #777777);
    cursor: pointer;
    width: 44px; height: 44px; /* Touch-freundlich */
    display: flex;
    align-items: center;
    justify-content: center;
}
.bf-popup-close:hover { color: var(--bf-title, #2f2f2f); }

/* Title */
.bf-popup-title {
    color: var(--bf-title, #2f2f2f);
    font-size: 1.75rem;
    margin: 0 0 20px 0;
    font-weight: 600;
}

/* Message */
.bf-popup-message {
    color: var(--bf-text, #505050);
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}

.bf-popup-message p {
    margin-bottom: 12px;
}

/* Button */
.bf-popup-button {
    background: var(--bf-accent, #c7b199);
    color: var(--bf-button-text, #ffffff);
    border: none;
    border-radius: 5px;
    padding: 12px 36px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
    min-width: 200px;
}

/* Mobile */
@media (max-width: 768px) {
    .bf-popup-overlay { padding: 10px; }
    .bf-popup-modal {
        padding: 30px 20px 20px;
        max-height: 90vh;
    }
    .bf-popup-title { font-size: 1.4rem; }
    .bf-popup-message { font-size: 0.95rem; }
    .bf-popup-button {
        width: 100%;
        padding: 14px;
    }
}