/* Extracted from layouts\partials\navigation.blade.php (block 1) */
/* Badge Count Styling */
.dropdown-item {
position: relative;
}

.badge-count {
display: inline-block;
background: #c19a6b;
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 0.125rem 0.5rem;
border-radius: 12px;
margin-left: auto;
min-width: 20px;
text-align: center;
}

.badge-count.liked {
background: #ef4444;
}

.profile-dropdown-menu .dropdown-item {
display: flex;
align-items: center;
gap: 0.75rem;
}

.profile-dropdown-menu .dropdown-item span:not(.badge-count) {
flex: 1;
}

.mobile-nav-links a {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
}

.mobile-nav-links .badge-count {
margin-left: auto;
}

/* Notification Bell */
.nav-notification-bell {
position: relative;
display: flex;
align-items: center;
margin-right: 0.5rem;
}

.notification-bell-btn {
background: none;
border: none;
color: var(--foreground);
font-size: 1.15rem;
cursor: pointer;
padding: 0.5rem;
position: relative;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: background 0.2s;
}

.notification-bell-btn:hover {
background: rgba(0,0,0,0.05);
}

.notification-badge {
position: absolute;
top: 0;
right: 0;
background: #e74c3c;
color: white;
font-size: 0.625rem;
font-weight: 700;
min-width: 18px;
height: 18px;
border-radius: 9px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 4px;
box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

/* Notification Dropdown */
.notification-dropdown {
position: absolute;
top: 100%;
right: 0;
width: 360px;
max-height: 480px;
background: white;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
box-shadow: 0 8px 40px rgba(0,0,0,0.12);
z-index: 1000;
display: none;
overflow: hidden;
}

.notification-dropdown.active {
display: block;
}

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

.notification-dropdown-title {
font-weight: 600;
font-size: 0.9375rem;
color: var(--foreground);
}

.notification-dropdown-view-all {
font-size: 0.8125rem;
color: var(--primary);
text-decoration: none;
font-weight: 500;
}

.notification-dropdown-view-all:hover {
text-decoration: underline;
}

.notification-dropdown-body {
overflow-y: auto;
max-height: 400px;
}

.notification-dropdown-empty {
text-align: center;
padding: 2.5rem 1.5rem;
color: var(--muted-foreground);
}

.notification-dropdown-empty i {
font-size: 2rem;
opacity: 0.3;
margin-bottom: 0.75rem;
}

.notification-dropdown-empty p {
font-size: 0.875rem;
}

.notification-dropdown-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
padding: 0.875rem 1.25rem;
text-decoration: none;
color: var(--foreground);
transition: background 0.15s;
border-bottom: 1px solid var(--border);
}

.notification-dropdown-item:last-child {
border-bottom: none;
}

.notification-dropdown-item:hover {
background: rgba(212, 115, 63, 0.04);
}

.notification-dropdown-item.unread {
background: rgba(212, 115, 63, 0.03);
border-left: 3px solid var(--primary);
}

.notification-dropdown-icon {
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(212, 115, 63, 0.1);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8125rem;
flex-shrink: 0;
}

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

.notification-dropdown-text {
font-size: 0.875rem;
line-height: 1.4;
margin-bottom: 0.125rem;
}

.notification-dropdown-time {
font-size: 0.75rem;
color: var(--muted-foreground);
}

@media (max-width: 640px) {
.notification-dropdown {
position: fixed;
top: 60px;
left: 0;
right: 0;
width: 100%;
max-height: calc(100vh - 60px);
border-radius: 0;
}
}