/* ════════════════════════════════════════════════════════════════════
   Chat-BP S4 «4 Танца» — promo banner
   Файл:  assets/css/cbp_promo.css   (подключается в layout.php / chat.php)
   Палитра: #0f0a18 (фон), #D4A574 (золото), #8B1A4F (вино)
   Anti-FOUC: см. inline-скрипт в layout.php — он добавляет
   .cbp-dismissed на <html> до рендера; правило ниже мгновенно
   скрывает баннер без мигания.
   ════════════════════════════════════════════════════════════════════ */

html.cbp-dismissed .cbp-promo-wrap,
html.cbp-dismissed .cbp-chat-nudge { display: none !important; }

/* ───── FULL вариант (главная nflix) ───── */
.cbp-promo-wrap { margin: 8px 0 16px; padding: 0 4px; }

.cbp-promo {
    position: relative;
    background:
        radial-gradient(circle at 0% 0%, rgba(212,165,116,0.10) 0%, transparent 55%),
        linear-gradient(135deg, #1a1020 0%, #0f0a18 60%, #1a0f1a 100%);
    border: 1px solid rgba(212,165,116,0.28);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .25s ease, max-height .3s ease, margin .3s ease, padding .3s ease;
}
.cbp-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212,165,116,0.18), 0 2px 8px rgba(139,26,79,0.20);
    border-color: rgba(212,165,116,0.45);
}

.cbp-promo__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px 14px 14px;
    text-decoration: none;
    color: inherit;
    min-height: 104px;
}

/* Постер (трейлер thumbnail с play-иконкой) */
.cbp-promo__poster {
    position: relative;
    flex: 0 0 96px;
    width: 96px;
    height: 128px;
    border-radius: 10px;
    background-color: #1a0f1a;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(212,165,116,0.35);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4);
}
.cbp-promo__play {
    position: absolute;
    right: 6px; bottom: 6px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(15,10,24,0.85);
    color: #D4A574;
    font-size: 10px;
    line-height: 24px;
    text-align: center;
    border: 1px solid rgba(212,165,116,0.6);
}

/* Текстовый блок */
.cbp-promo__body { flex: 1; min-width: 0; }
.cbp-promo__eyebrow {
    color: #D4A574;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.92;
}
.cbp-promo__title {
    color: #f5ede0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 4px;
}
.cbp-promo__subtitle {
    color: #c9b3a8;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

/* CTA-колонка */
.cbp-promo__cta-col {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-width: 140px;
}
.cbp-promo__cta {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #D4A574 0%, #b88554 50%, #8B1A4F 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(139,26,79,0.35);
    white-space: nowrap;
    transition: transform .15s ease;
}
.cbp-promo:hover .cbp-promo__cta { transform: scale(1.03); }
.cbp-promo__value {
    text-align: center;
    color: #9d8a82;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Dismiss — invisible 44×44 hit area через ::before */
.cbp-promo__dismiss {
    position: absolute;
    top: 4px; right: 4px;
    width: 28px; height: 28px;
    border: none;
    background: transparent;
    color: #c9b3a8;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    opacity: 0.4;
    border-radius: 50%;
    z-index: 3;
    transition: opacity .15s ease, background .15s ease;
}
.cbp-promo__dismiss::before {
    content: "";
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
}
.cbp-promo__dismiss:hover,
.cbp-promo__dismiss:focus-visible {
    opacity: 0.9;
    background: rgba(255,255,255,0.06);
    outline: none;
}

/* Анимация скрытия */
.cbp-promo.is-dismissing {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ───── MOBILE (≤640px) — compact 1-row ───── */
@media (max-width: 640px) {
    .cbp-promo-wrap { margin: 6px 0 10px; padding: 0 8px; }
    .cbp-promo__link {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 8px 10px;
        min-height: 0;
        align-items: center;
    }
    .cbp-promo__poster { flex: 0 0 48px; width: 48px; height: 64px; border-radius: 6px; }
    .cbp-promo__play { width: 18px; height: 18px; line-height: 18px; font-size: 8px; right: 3px; bottom: 3px; }
    .cbp-promo__eyebrow { font-size: 9px; letter-spacing: 0.6px; margin-bottom: 2px; }
    .cbp-promo__title { font-size: 13px; line-height: 1.2; margin-bottom: 1px; }
    .cbp-promo__subtitle { font-size: 11px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .cbp-promo__cta-col {
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        min-width: 0;
        gap: 2px;
    }
    .cbp-promo__cta {
        padding: 7px 10px;
        font-size: 11px;
        border-radius: 7px;
        white-space: nowrap;
    }
    .cbp-promo__value { font-size: 9px; letter-spacing: 0; }
    .cbp-promo__dismiss { top: 2px; right: 2px; width: 22px; height: 22px; font-size: 14px; line-height: 22px; }
}

/* ───── chat.php nudge — CSS-only точка-индикатор ───── */
.cbp-chat-nudge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 8px;
    margin: 0 6px 0 0;
    height: 28px;
    border-radius: 14px;
    background: rgba(212,165,116,0.10);
    border: 1px solid rgba(212,165,116,0.30);
    text-decoration: none;
    color: #D4A574;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: background .15s ease, border-color .15s ease;
}
.cbp-chat-nudge:hover {
    background: rgba(212,165,116,0.18);
    border-color: rgba(212,165,116,0.55);
}
.cbp-chat-nudge__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #D4A574;
    box-shadow: 0 0 6px rgba(212,165,116,0.7);
    animation: cbp-pulse 2.4s ease-in-out infinite;
}
.cbp-chat-nudge__label { white-space: nowrap; }
@keyframes cbp-pulse {
    0%, 100% { transform: scale(1);   opacity: 0.9; }
    50%      { transform: scale(1.3); opacity: 1; }
}
@media (max-width: 480px) {
    .cbp-chat-nudge { padding: 4px 8px; font-size: 10px; }
    .cbp-chat-nudge__label { display: none; }
    .cbp-chat-nudge { padding: 4px; width: 24px; height: 24px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .cbp-chat-nudge__dot { animation: none; }
    .cbp-promo { transition-duration: 0s; }
}