.holiday-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.holiday-popup-overlay.show {
    display: block;
    opacity: 1;
}

.holiday-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%) scale(0.96);
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(2, 6, 23, 0.35);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--primary, #0ea5e9);
}

.holiday-popup-overlay.show + .holiday-popup,
.holiday-popup.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.holiday-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: var(--dark, #0f172a);
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.holiday-popup-close:hover {
    background: rgba(15, 23, 42, 0.14);
    transform: rotate(90deg);
}

.holiday-popup-close:focus {
    outline: 2px solid var(--primary, #0ea5e9);
    outline-offset: 2px;
}

.holiday-popup-header {
    padding: 34px 30px 18px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(99, 102, 241, 0.08));
    border-radius: 22px 22px 0 0;
}

.holiday-popup-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #0ea5e9), var(--accent, #6366f1));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.holiday-popup-header h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark, #0f172a);
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.holiday-popup-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary, #0ea5e9);
    margin-bottom: 10px;
}

.holiday-popup-body {
    padding: 18px 30px 26px 30px;
}

.holiday-popup-body p {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 14px 0;
}

.holiday-popup-body p:last-child {
    margin-bottom: 0;
}

.holiday-date-band {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 16px 0 18px 0;
    text-align: center;
}

.holiday-date-band .dates {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark, #0f172a);
    letter-spacing: -0.01em;
}

.holiday-date-band .label {
    display: block;
    font-size: 0.78rem;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.holiday-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.holiday-highlights li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 9px;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

.holiday-highlights li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary, #0ea5e9);
    font-size: 0.9rem;
}

.holiday-popup-footer {
    padding: 0 30px 30px 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.holiday-popup-footer .btn {
    flex: 1;
    min-width: 140px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.holiday-popup-footer .btn-primary-holiday {
    background: var(--accent, #6366f1);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.3);
}

.holiday-popup-footer .btn-primary-holiday:hover {
    background: var(--accent-hover, #4338ca);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.4);
}

.holiday-popup-footer .btn-secondary-holiday {
    background: rgba(15, 23, 42, 0.05);
    color: var(--dark, #0f172a);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.holiday-popup-footer .btn-secondary-holiday:hover {
    background: rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.holiday-popup-footer .btn:focus {
    outline: 2px solid var(--primary, #0ea5e9);
    outline-offset: 2px;
}

@media print {
    .holiday-popup-overlay,
    .holiday-popup {
        display: none !important;
    }
}

@media (max-width: 560px) {
    .holiday-popup {
        max-width: calc(100% - 28px);
        border-radius: 18px;
    }

    .holiday-popup-header {
        padding: 30px 22px 16px 22px;
    }

    .holiday-popup-header h2 {
        font-size: 1.25rem;
    }

    .holiday-popup-body {
        padding: 16px 22px 22px 22px;
    }

    .holiday-popup-footer {
        padding: 0 22px 22px 22px;
    }

    .holiday-popup-footer .btn {
        flex: 1 1 100%;
    }
}
