.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.82);
}

.promo-popup.is-visible {
    display: flex;
}

.promo-popup__dialog {
    position: relative;
    width: min(100%, 720px);
    min-height: 420px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.promo-popup__dialog::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84));
}

.promo-popup__dialog::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 22px;
    background-color: #1a1a1a;
    -webkit-mask: url('/static/content/themes/wirtualny/images/mask/mask-top-add-alt.png') top left no-repeat;
    -webkit-mask-size: cover !important;
}

.promo-popup__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 420px;
    padding: 60px 42px 46px;
    text-align: left;
}

.promo-popup__label {
    display: inline-block;
    margin-bottom: 18px;
    color: #e41779;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
}

.promo-popup__text {
    margin: 0;
    max-width: 460px;
    font-family: Vidaloka, serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.promo-popup__subtext {
    margin-top: 18px;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
}

.promo-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.promo-popup__close:hover {
    background: #e41779;
    border-color: #e41779;
    color: #fff;
}

.promo-popup__close:active,
.promo-popup__close:focus,
.promo-popup__close:focus-visible {
    top: 18px !important;
    right: 18px;
    outline: none;
    box-shadow: 0 0 0 2px rgba(228, 23, 121, 0.35);
}

@media (max-width: 767px) {
    .promo-popup__dialog {
        min-height: 360px;
    }

    .promo-popup__content {
        min-height: 360px;
        padding: 72px 22px 34px;
    }

    .promo-popup__text {
        font-size: 28px;
        line-height: 1.15;
    }

    .promo-popup__subtext {
        font-size: 14px;
        line-height: 1.6;
    }
}
