#simple-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#simple-popup {
    background: white;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
	color: var(--bde-woo-base-text-color) !important;
}

#simple-popup.popup-type-text_image {
    max-width: 900px;
	color: var(--bde-woo-base-text-color) !important;
}

#simple-popup.popup-type-image {
    max-width: 700px;
    padding: 20px;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#simple-popup h2 {
    margin-top: 0;
	color: var(--bde-woo-base-text-color) !important;
    font-size: 24px;
}

#simple-popup p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
	color: var(--bde-woo-base-text-color) !important;
}

#simple-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

#simple-popup-close:hover {
    color: #333;
}


.popup-button-wrapper {
	clear: both;
	margin-top: 2rem;
}
.popup-button-wrapper a.popup-button {
	/*
--bde-button-primary-border-color: var(--bde-palette-color-1-e43d8481-72a4-4f72-aea8-70b3972c869c);
    --bde-button-primary-border-color-hover: var(--bde-palette-color-1-e43d8481-72a4-4f72-aea8-70b3972c869c);
    --bde-button-primary-background-color: var(--bde-palette-color-1-e43d8481-72a4-4f72-aea8-70b3972c869c);
    --bde-button-primary-background-color-hover: transparent;
    --bde-button-primary-text-color: var(--bde-palette-color-1-8625b541-6187-4143-810b-1e9667b7e020);
    --bde-button-primary-text-color-hover: var(--bde-palette-color-1-8625b541-6187-4143-810b-1e9667b7e020);
	*/
	padding: 1rem;
	border: none;
    background: #C08056;
	color: #fff !important;
    font-family: dejanire-headline;
    font-size: 1rem;
    font-weight: 300;
	text-decoration: none;
}

.popup-button-wrapper a:hover.popup-button {
}

/* Split layout styling */
.popup-split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.popup-split-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-split-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.popup-split-right {
    flex: 1;
}

.popup-split-right h2 {
    margin-top: 0;
	color: var(--bde-woo-base-text-color) !important;
}

/* Image-only popup */
.popup-image-only {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-image-only img {
    width: 100%;
    height: auto;
}

/* Responsive voor mobiel */
@media (max-width: 768px) {
    .popup-split-content {
        flex-direction: column;
    }
    
    .popup-split-left,
    .popup-split-right {
        width: 100%;
    }
}