.lozy-promo-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lozy-promo-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lozy-promo-modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 32px);
    overflow: auto;
    background: var(--white, #ffffff);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    text-align: center;
    padding: 22px 22px 20px;
    transform: translateY(18px) scale(0.96);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.lozy-promo-overlay.is-open .lozy-promo-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lozy-promo-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    line-height: 0;
}

.lozy-promo-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.lozy-promo-close svg path {
    stroke: var(--black, #000000);
}

.lozy-promo-figure {
    margin: 0 0 14px;
    line-height: 0;
}

.lozy-promo-figure img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: inline-block;
    object-fit: contain;
}

.lozy-promo-title {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--black, #000000);
}

.lozy-promo-offer {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black, #000000);
}

.lozy-promo-offer span {
    color: var(--primary, #ED1C24);
}

.lozy-promo-features {
    list-style: none;
    margin: 0 0 14px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border, #cccccc);
    border-bottom: 1px solid var(--border, #cccccc);
}

.lozy-promo-features li {
    position: relative;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.lozy-promo-features li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: var(--border, #cccccc);
}

.lozy-promo-features svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.lozy-promo-features span {
    font-size: 0.68rem;
    line-height: 1.25;
    font-weight: 600;
    color: var(--black, #000000);
}

.lozy-promo-copy {
    margin: 0 0 16px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text, #666666);
}

.lozy-promo-copy strong {
    color: var(--black, #000000);
}

.lozy-promo-cta {
    --height: 46px;
    --padding: 28px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--height);
    padding: 0 var(--padding);
    border: none;
    border-radius: 999px;
    background: var(--primary, #ED1C24);
    color: var(--white, #ffffff);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lozy-promo-cta:hover {
    opacity: 0.92;
}

.lozy-promo-cta:active {
    transform: scale(0.98);
}

.lozy-promo-note {
    margin: 10px 0 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #999999;
}

@media (max-width: 520px) {
    .lozy-promo-modal {
        padding: 18px 14px 16px;
        border-radius: 16px;
        max-width: 100%;
    }

    .lozy-promo-title {
        font-size: 1.15rem;
    }

    .lozy-promo-offer {
        font-size: 1rem;
    }

    .lozy-promo-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 0;
        padding: 12px 0;
    }

    .lozy-promo-features li:nth-child(2)::after {
        content: none;
    }

    .lozy-promo-features li:nth-child(1)::after,
    .lozy-promo-features li:nth-child(3)::after {
        content: "";
    }

    .lozy-promo-features span {
        font-size: 0.72rem;
    }
}
