/* Holiday Alert Bar */
.holiday-alert-bar {
    background-color: #F4F4C5;
    color: #252525;
    width: 100%;
    z-index: 1000;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px;
}

.holiday-alert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.holiday-alert-content {
    flex: 1;
    text-align: center;
}

.holiday-alert-icon {
    margin-right: 8px;
    font-size: 16px;
    color: #ffc107;
}

.holiday-alert-text strong {
    font-weight: 600;
}

.holiday-alert-desc {
    opacity: 0.85;
    font-size: 13px;
}

.holiday-alert-separator {
    opacity: 0.5;
    margin: 0 5px;
}

.holiday-alert-close {
    background: none;
    border: none;
    color: #252525;
    font-size: 22px;
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
}

.holiday-alert-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .holiday-alert-container {
        padding: 0px 15px;
    }

    .holiday-alert-bar {
        font-size: 12px;
    }

    .holiday-alert-icon {
        font-size: 14px;
    }

    .holiday-alert-close {
        font-size: 18px;
    }
}
