/* Overlay */
.mn-popup-overlay {
    position: fixed; z-index: 99999;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    padding: 15px; /* Spazio su mobile */
    backdrop-filter: blur(3px);
}
.mn-popup-overlay.is-visible { opacity: 1; }

/* Box Bianco */
.mn-popup-container {
    background: #fff;
    width: 100%;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    overflow: visible; /* Per la X esterna */
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; flex-direction: column;
}
.mn-popup-overlay.is-visible .mn-popup-container { transform: translateY(0); }

/* --- TASTO CHIUDI --- */
.mn-popup-close {
    position: absolute;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 20;
    transition: transform 0.2s, color 0.2s;
    display: flex; align-items: center; justify-content: center;
}

.mn-popup-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.mn-close-fallback {
    font-family: sans-serif;
    font-weight: 100;
    font-size: 40px;
    line-height: 0.8;
    display: block;
}

/* Desktop */
@media (min-width: 768px) {
    .mn-popup-close {
        top: -40px;
        right: 0px;
        color: #ffffff;
        width: 30px;
        height: 30px;
        font-size: 24px;
    }
    .mn-popup-close:hover { color: #ffcccc; }
}

/* Mobile */
@media (max-width: 767px) {
    .mn-popup-close {
        top: 5px;
        right: 5px;
        color: #333333;
        width: 30px;
        height: 30px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        font-size: 20px;
    }
    .mn-close-fallback { font-size: 30px; }
}

/* Immagine */
.mn-popup-img img {
    width: 100%; height: auto; display: block;
    border-radius: 6px 6px 0 0;
}
.mn-popup-container.no-text .mn-popup-img img { border-radius: 6px; }

/* Testo */
.mn-popup-text {
    padding: 20px 25px 10px 25px;
    color: #333; font-size: 16px; line-height: 1.5;
}

/* Azioni */
.mn-popup-actions {
    padding: 0 25px 25px 25px;
    text-align: center;
}

/* Pulsante .mn-btn */
.mn-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.mn-btn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}