/* Christmas Gift Box Styles */
#solis-christmas-gift {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 10000;
    cursor: pointer;
    animation: giftFloat 3s ease-in-out infinite;
    font-family: 'Poppins', sans-serif;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
}

#solis-gift-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff3860, #ff144d);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 30px rgba(255, 56, 96, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #fff;
    overflow: hidden;
}

/* ... (include all the Christmas-specific CSS from previous response) ... */
