/* ============================================================================
   HOLIDAY DECORATIONS - DISABLED UNTIL AFTER THANKSGIVING
   To re-enable: Remove the opening and closing comment markers around each section
   ============================================================================ */

/* Christmas String Lights - DISABLED */
/*
.christmas-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 1050;
    pointer-events: none;
    overflow: hidden;
}

.christmas-lights::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #2d5016 5%, 
        #2d5016 95%, 
        transparent 100%);
    border-radius: 2px;
}

.light-bulb {
    position: absolute;
    top: 6px;
    width: 12px;
    height: 16px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: twinkle 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px 2px currentColor;
}

.light-bulb::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 5px;
    background: #444;
    border-radius: 2px 2px 0 0;
}

.light-bulb.red { background: #ff3333; color: #ff3333; animation-delay: 0s; }
.light-bulb.green { background: #33ff33; color: #33ff33; animation-delay: 0.3s; }
.light-bulb.blue { background: #3399ff; color: #3399ff; animation-delay: 0.6s; }
.light-bulb.yellow { background: #ffdd33; color: #ffdd33; animation-delay: 0.9s; }
.light-bulb.pink { background: #ff69b4; color: #ff69b4; animation-delay: 1.2s; }

@keyframes twinkle {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.5; filter: brightness(0.6); }
}
*/

/* Santa Hat on Bob Widget Button - DISABLED */
/*
.ask-bob-button {
    position: relative;
}

.santa-hat {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 28px;
    height: 22px;
    z-index: 10;
    pointer-events: none;
    transform: rotate(18deg);
}

.santa-hat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.santa-hat::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 2px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid #d42426;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.santa-hat .pom-pom {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 5;
}
*/

/* Santa Hat on Bob Avatar in Panel - DISABLED */
/*
.ask-bob-avatar {
    position: relative;
}

.ask-bob-avatar .santa-hat-small {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 16px;
    z-index: 10;
    pointer-events: none;
    transform: rotate(20deg);
}

.santa-hat-small::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 2px;
}

.santa-hat-small::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 1px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 13px solid #d42426;
}

.santa-hat-small .pom-pom {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    z-index: 5;
}
*/

/* Santa Hat on Welcome Icon - DISABLED */
/*
.ask-bob-welcome-icon {
    position: relative;
}

.ask-bob-welcome-icon .santa-hat-large {
    position: absolute;
    top: -10px;
    right: -8px;
    width: 34px;
    height: 26px;
    z-index: 10;
    pointer-events: none;
    transform: rotate(18deg);
}

.santa-hat-large::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.santa-hat-large::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 2px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 22px solid #d42426;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.santa-hat-large .pom-pom {
    position: absolute;
    top: -3px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 5;
}
*/

