/* Overlay */

.samoerai-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0.85);
    /* Donkere overlay van Samoerai */
    z-index: 999998;
}
/* Popup Container */

.samoerai-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 999999;
    width: 90%;
    max-width: 600px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.samoerai-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.samoerai-popup__inner {
    position: relative;
    padding: 3rem 2.5rem;
}
/* Close Button */

.samoerai-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: 1px solid #FA9137;
    color: #FA9137;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 28px;
    cursor: pointer;
    padding: 0;
    transition: 0.2s;
}
.samoerai-popup__close:hover {
    background: #FA9137;
    color: #fff;
}
/* Typography */

.samoerai-popup__title {
    font-family: 'Rajdhani', sans-serif;
    color: #00738C;
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}
.samoerai-popup__content {
    font-family: 'Inter', sans-serif;
    color: #416971;
    line-height: 1.6;
}
/* Gravity Forms styling integratie binnen popup */

.samoerai-popup .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
    background-color: #FA9137;
    border-color: #FA9137;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
}