/* 
 * Tema Navideño - InkaBox Express
 * Activable desde CMS
 */

/* Contenedor de nieve */
.christmas-snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* Copos de nieve individuales */
.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    animation: snowfall linear infinite;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

/* Animación simple y confiable */
@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 10px)) rotate(360deg);
        opacity: 0;
    }
}







/* Ocultar por defecto */
.christmas-effects {
    display: none;
}

/* Mostrar cuando está activo */
body.christmas-active .christmas-effects {
    display: block;
}

body.christmas-active {
    /* Aplicar clase christmas-theme automáticamente */
}