body.labour-day-popup-open {
    overflow: hidden;
}

.labour-day-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.labour-day-popup.is-open {
    display: flex;
}

.labour-day-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.78);
}

.labour-day-popup__panel {
    position: relative;
    z-index: 1;
    width: fit-content;
    max-width: min(853px, 94vw);
    max-height: 94vh;
    background: #fff;
    border-radius: 0.875rem;
    box-shadow: 0 22px 48px rgba(56, 1, 115, 0.32);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.labour-day-popup__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    width: 2.125rem;
    height: 2.125rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #380173;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}

.labour-day-popup__close:hover {
    background: #fff;
}

.labour-day-popup__content {
    overflow: hidden;
    background: #fff;
    padding: 0;
    line-height: 0;
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.labour-day-popup__image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(853px, 94vw);
    max-height: calc(94vh - 52px);
    object-fit: contain;
    object-position: center top;
}

.labour-day-popup__footer {
    flex: 0 0 auto;
    padding: 0.625rem 1rem;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    justify-content: center;
}

.labour-day-popup__btn {
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #380173, #5b21b6);
    cursor: pointer;
}

.labour-day-popup__btn:hover {
    filter: brightness(1.05);
}

.labour-day-popup__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
