/* 1. OCULTAR COMPLIANZ SOLO MIENTRAS NUESTRO MURO ESTÉ ACTIVO */
body.sohah-muro-active .cmplz-cookiebanner {
    display: none !important;
}

/* 2. ESTILOS DE NUESTRO MURO MODAL */
#sohah-muro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none; 
    justify-content: center;
    align-items: center;
}

#sohah-muro-modal {
    background: #fff;
    max-width: 550px;
    width: 90%;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    font-family: sans-serif;
    text-align: center;
}

/* --- Cabecera --- */
.sohah-muro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.sohah-muro-header strong {
    font-size: 1.2em;
    color: var(--sohah-teal-dark, #004b91); /* Fallback incluido en el CSS */
}
.sohah-muro-header span {
    font-size: 0.9em;
}
.sohah-muro-header a {
    color: var(--sohah-teal-dark, #004b91);
    font-weight: bold;
    text-decoration: none;
}

/* --- Texto --- */
.sohah-muro-text {
    text-align: justify;
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* --- Botones --- */
.sohah-muro-btn {
    display: block;
    width: 100%;
    margin: 10px 0;
    border-radius: 50px;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 0.3s;
}
.sohah-muro-btn:hover {
    opacity: 0.85;
}
#sohah-btn-aceptar, #sohah-btn-suscribir {
    background-color: var(--sohah-teal-dark, #009999);
}

/* --- Pie (Enlaces legales) --- */
.sohah-muro-footer {
    margin-top: 15px;
    font-size: 12px;
}
.sohah-muro-footer a {
    color: #666;
    text-decoration: underline;
}
/* 1. OCULTAMOS EL COMPLIANZ ORIGINAL Y EL BOTÓN FLOTANTE (Para no premium) */
body:not(.logged-in) #cmplz-cookiebanner-container,
body:not(.logged-in) .cmplz-cookiebanner,
body:not(.logged-in) .cmplz-manage-consent,
body:not(.logged-in) #cmplz-manage-consent-container {
    display: none !important;
}

/* Si tienes la clase sohah-muro-active del JS, la usamos también por seguridad */
body.sohah-muro-active #cmplz-cookiebanner-container,
body.sohah-muro-active .cmplz-cookiebanner,
body.sohah-muro-active .cmplz-manage-consent,
body.sohah-muro-active #cmplz-manage-consent-container {
    display: none !important;
}

/* Ocultar el shortcode de la página de política de cookies si intentan hacerlo por ahí */
body:not(.logged-in) .cmplz-document.cookie-statement .cmplz-status-accepted,
body:not(.logged-in) .cmplz-document.cookie-statement .cmplz-status-denied {
    display: none !important;
}