/* ========== NOTIFICATION BELL ========== */
.notif-bell-container {
    position: relative;
}

.notif-bell-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
}

.notif-bell-btn:hover { color: var(--text); background: var(--accent-soft); }

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--pink);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notif-badge.show { display: flex; }

/* ========== NOTIFICATION DROPDOWN ========== */
.notif-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 300px;
    max-height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
    display: none;
    flex-direction: column;
    z-index: 150;
    margin-bottom: 8px;
    overflow: hidden;
}

.notif-dropdown.show { display: flex; }

.notif-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.notif-dropdown-header h4 {
    font-size: 0.9rem;
    font-weight: 500;
}

.notif-clear-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    cursor: pointer;
    font-family: var(--font);
    transition: color 0.2s;
}

.notif-clear-btn:hover { color: var(--red); }

.notif-list {
    overflow-y: auto;
    max-height: 340px;
    flex: 1;
}

.notif-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
}

.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--bg-card-hover); }
.notif-item.unread { background: rgba(155, 109, 255, 0.05); }

.notif-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.notif-content { flex: 1; min-width: 0; }

.notif-text {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}

.notif-item.unread .notif-text { font-weight: 500; }

.notif-time {
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.notif-empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.notif-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
    display: none;
}

.notif-item.unread .notif-dot { display: block; }
