.copp-notify-bell {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    cursor: pointer;
    color: var(--copp-ink);
    background: transparent;
    border: 0;
    transition: color 0.15s;
    margin-right: 4px;
}

@media (max-width: 991px) {
    .copp-notify-bell { display: none !important; }
}
.copp-notify-bell:hover, .copp-notify-bell--active { color: var(--copp-red); }
.copp-notify-bell svg { width: 20px; height: 20px; }
.copp-notify-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--copp-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}
.copp-notify-dropdown {
    display: none;
    position: fixed;
    width: 360px;
    max-height: 480px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(var(--copp-ink-rgb), 0.08);
    box-shadow: 0 18px 42px rgba(var(--copp-ink-rgb), 0.14);
    z-index: 9999;
}
.copp-notify-dropdown.is-open { display: block; }
.copp-notify-dropdown__loading, .copp-notify-dropdown__empty {
    padding: 24px;
    text-align: center;
    color: var(--copp-muted);
    font-size: 14px;
}
.copp-notify-item {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(var(--copp-ink-rgb), 0.04);
    transition: background 0.15s;
}
.copp-notify-item:hover { background: rgba(var(--copp-red-rgb), 0.04); text-decoration: none; }
.copp-notify-item.is-unread { background: rgba(var(--copp-red-rgb), 0.02); }
.copp-notify-item__icon { flex: 0 0 36px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--copp-red); }
.copp-notify-item__icon svg { width: 18px; height: 18px; }
.copp-notify-item__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.copp-notify-item__body strong { font-size: 13px; font-weight: 700; color: var(--copp-ink); line-height: 1.3; }
.copp-notify-item__body em { font-size: 12px; color: var(--copp-muted); font-style: normal; line-height: 1.3; }
.copp-notify-item__body small { font-size: 11px; color: rgba(var(--copp-ink-rgb), 0.4); }
.copp-notify-dropdown__footer {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--copp-red);
    text-decoration: none;
    border-top: 1px solid rgba(var(--copp-ink-rgb), 0.06);
}
.copp-notify-dropdown__footer:hover { background: rgba(var(--copp-red-rgb), 0.04); text-decoration: none; }
