/* === ПИХТОВАЯ ГИРЛЯНДА === */
.ny-garland {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: url('/catalog/view/javascript/newyear/garland.png') repeat-x;
    background-size: auto 90px;
    z-index: 9999;
    pointer-events: none;
}

/* === ЛАМПОЧКИ === */
.ny-lights {
    position: absolute;
    top:-20px;
    left: 0;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: space-around;
}

.ny-light {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.ny-light.red { background: #ff3b3b; }
.ny-light.yellow { background: #ffd93b; }
.ny-light.green { background: #3bff6f; }
.ny-light.blue { background: #3bc7ff; }

@keyframes blink {
    0%, 100% { opacity: .3; }
    50% { opacity: 1; }
}

/* === СНЕГ (canvas) === */
#ny-snow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
}
