/* Лента уведомлений в личном кабинете (не путать с чатами в шапке) */
.customer-notif-hint {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-light);
}

.customer-notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.customer-notif-head h3 {
    margin: 0;
    font-size: 17px;
    color: var(--text-dark);
}

.customer-notif-unread-pill {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(51, 0, 114, 0.12);
    color: var(--primary-color);
}

.customer-notif-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.customer-notif-empty {
    margin: 0;
    padding: 16px 8px;
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
}

.customer-notif-item {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid var(--border-hairline);
    border-radius: 14px;
    padding: 12px 14px;
    background: var(--surface-muted);
    cursor: pointer;
    font: inherit;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

.customer-notif-item--unread {
    background: rgba(51, 0, 114, 0.06);
    border-color: rgba(51, 0, 114, 0.18);
}

.customer-notif-item:active {
    opacity: 0.92;
}

.customer-notif-item__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.customer-notif-item__body {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 6px;
}

.customer-notif-item__meta {
    font-size: 11px;
    color: var(--text-hint);
}

.customer-notif-mark-all {
    display: block;
    width: 100%;
    margin-top: 10px;
    border: none;
    background: none;
    color: var(--link-accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 4px;
    -webkit-tap-highlight-color: transparent;
}

.customer-push-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--text-dark);
}
