/**
 * WESTELECOM Customer Personalization
 * CSS для условного показа контента клиентам/новым посетителям
 * v1.0 - 26.01.2026
 */

/* === Скрыть акции для клиентов === */
.wt-customer .promo-new-clients,
.wt-customer .acquisition-banner,
.wt-customer .sticky-connect-button,
.wt-customer [data-hide-for-customers],
.wt-customer .b2b-sticky-bar,
.wt-customer .exit-intent-popup {
    display: none !important;
}

/* === Показать контент для клиентов === */
.loyalty-banner,
.customer-greeting,
[data-show-for-customers] {
    display: none;
}

.wt-customer .loyalty-banner,
.wt-customer .customer-greeting,
.wt-customer [data-show-for-customers] {
    display: block !important;
}

/* === Для неактивных клиентов (долг/заморозка) === */
.wt-customer-inactive .pay-debt-banner {
    display: block !important;
}

/* === Приветствие клиента === */
.customer-greeting {
    display: none;
    padding: 10px 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 5px;
}

.wt-customer .customer-greeting {
    display: block;
}
