/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

/**
 * Estilos para el popup enriquecido de Tartas
 * Añadir en: Impreza → Opciones del tema → Código personalizado → CSS personalizado
 */

/* ==========================================
   CONTENEDOR PRINCIPAL DEL POPUP
   ========================================== */
.mfp-tarta-popup .mfp-content {
    max-width: 950px;
    width: 90%;
}

.tarta-popup-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.tarta-popup-wrapper .l-section {
    padding: 30px !important;
}

.tarta-popup-wrapper .l-section-h {
    max-width: 100% !important;
}

/* ==========================================
   LOADER / CARGANDO
   ========================================== */
.tarta-popup-loading {
    background: #fff;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    min-width: 300px;
}

.tarta-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #c9a227;
    border-radius: 50%;
    animation: tartaSpin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes tartaSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tarta-popup-loading p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* ==========================================
   BOTÓN DE CERRAR
   ========================================== */
.mfp-tarta-popup .mfp-close {
    color: #333;
    font-size: 28px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    background: #fff;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.mfp-tarta-popup .mfp-close:hover {
    background: #f0f0f0;
}

/* ==========================================
   OVERLAY OSCURO
   ========================================== */
.mfp-tarta-popup.mfp-bg {
    background: rgba(0, 0, 0, 0.85);
}

/* ==========================================
   AJUSTES PARA EL CONTENIDO DEL BLOQUE
   ========================================== */
.tarta-popup-wrapper h1,
.tarta-popup-wrapper h2,
.tarta-popup-wrapper h3 {
    margin-top: 0;
}

.tarta-popup-wrapper img {
    border-radius: 8px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .mfp-tarta-popup .mfp-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .tarta-popup-wrapper .l-section {
        padding: 20px !important;
    }
    
    .tarta-popup-loading {
        padding: 40px 20px;
        min-width: auto;
    }
}