.anh-promo-popup {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
}

.anh-promo-popup[hidden] {
    display: none !important;
}

.anh-promo-popup.is-visible {
    display: flex !important;
}

.anh-promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    cursor: pointer;
}

.anh-promo-modal {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    animation: anhPromoIn 0.35s ease;
    display: flex;
    flex-direction: column;
}

@keyframes anhPromoIn {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.anh-promo-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 2147483001;
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--anh-promo-accent, #e91e63);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.anh-promo-close:hover,
.anh-promo-close:focus {
    filter: brightness(0.92);
    transform: scale(1.05);
    outline: none;
}

.anh-promo-grid {
    display: grid;
    grid-template-columns: minmax(320px, 42%) 1fr;
    flex: 1;
    min-height: 100vh;
    height: 100%;
}

.anh-promo-content {
    padding: 48px 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 2;
    overflow-y: auto;
}

.anh-promo-kicker {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.anh-promo-headline {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--anh-promo-accent, #e91e63);
}

.anh-promo-subtitle {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.anh-promo-desc {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #666;
    text-transform: uppercase;
}

.anh-promo-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.anh-promo-countdown-item {
    min-width: 64px;
    padding: 10px 8px;
    border-radius: 8px;
    background: var(--anh-promo-panel, #fce4ec);
    text-align: center;
}

.anh-promo-countdown-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--anh-promo-accent, #e91e63);
    line-height: 1.1;
}

.anh-promo-countdown-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #888;
    margin-top: 4px;
}

.anh-promo-cta {
    display: inline-block;
    padding: 14px 24px;
    background: var(--anh-promo-accent, #e91e63);
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.anh-promo-cta:hover {
    filter: brightness(0.95);
}

.anh-promo-dismiss {
    background: none;
    border: none;
    color: #888;
    font-size: 12px;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 0;
}

.anh-promo-visual {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    min-height: 100%;
    height: 100%;
    overflow: hidden;
}

.anh-promo-image {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.anh-promo-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

@media (max-width: 900px) {
    .anh-promo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .anh-promo-content {
        padding: 56px 24px 28px;
        order: 2;
    }

    .anh-promo-visual {
        order: 1;
        min-height: 50vh;
    }

    .anh-promo-image,
    .anh-promo-image-placeholder {
        min-height: 50vh;
    }

    .anh-promo-headline {
        font-size: 32px;
    }

    .anh-promo-close {
        top: 12px;
        right: 12px;
    }
}
