/* * Estilos para el aviso de cookies de Encantada
 * Diseño fijo en la parte inferior, sutil y responsivo.
 */

.encantada-cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Fondo limpio */
    color: #333333;
    padding: 15px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08); /* Sombra suave para destacar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 9999; /* Asegura que esté por encima de todo */
    font-family: inherit; /* Hereda la fuente de tu tema Kadence */
    border-top: 3px solid var(--e-morado, #6c5ce7); /* Un toque de tu color de marca */
}

.encantada-cookie-notice p {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 800px;
}

.encantada-cookie-notice a {
    color: var(--e-morado, #6c5ce7);
    text-decoration: underline;
    font-weight: 600;
}

.encantada-cookie-notice a:hover {
    color: var(--e-morado-osc, #4834d4);
}

.encantada-cookie-notice button {
    background-color: var(--e-morado, #6c5ce7);
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 30px; /* Bordes redondeados, estilo moderno */
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.encantada-cookie-notice button:hover {
    background-color: var(--e-morado-osc, #4834d4);
    transform: translateY(-2px);
}

/* Adaptación para pantallas más grandes (Tablets y Desktop) */
@media (min-width: 768px) {
    .encantada-cookie-notice {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 40px;
        text-align: left;
    }

    .encantada-cookie-notice p {
        margin: 0 20px 0 0; /* Espacio entre el texto y el botón */
    }
}