/* Header User Dropdown Menu Styles */

.dropdown-menu-new {
    min-width: 260px !important;
    padding: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* User Profile Header */
.dropdown-menu-new .dropdown-user-header {
    background: #ef4444 !important;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    padding: 16px 12px !important;
    border-radius: 8px 8px 0 0 !important;
    margin-bottom: 8px !important;
    border: none !important;
}

.dropdown-menu-new .dropdown-user-header * {
    color: white !important;
}

.dropdown-user-info {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.dropdown-user-avatar {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 18px !important;
    color: #ef4444 !important;
    flex-shrink: 0 !important;
}

.dropdown-user-avatar * {
    color: #ef4444 !important;
}

.dropdown-user-greeting {
    font-weight: 600 !important;
    font-size: 13px !important;
    color: white !important;
    line-height: 1.2 !important;
}

.dropdown-user-name {
    font-size: 12px !important;
    opacity: 0.95 !important;
    color: white !important;
    line-height: 1.2 !important;
}

/* Menu Items */
.dropdown-menu-new li a {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s;
    font-weight: 500;
}

.dropdown-menu-new li a:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding-left: 20px;
}

.dropdown-menu-new li a:hover i {
    color: white !important;
}

.dropdown-menu-new li a i {
    width: 16px;
    font-size: 14px;
    color: #ef4444;
}

/* Consistent Icon Colors - All RED */
.dropdown-menu-new li a .icon-profile,
.dropdown-menu-new li a .icon-orders,
.dropdown-menu-new li a .icon-addresses,
.dropdown-menu-new li a .icon-returns,
.dropdown-menu-new li a .icon-reviews,
.dropdown-menu-new li a .icon-companies,
.dropdown-menu-new li a .icon-login,
.dropdown-menu-new li a .icon-register,
.dropdown-menu-new li a .icon-password {
    color: #ef4444 !important;
}

.dropdown-menu-new li a .fas,
.dropdown-menu-new li a .fa {
    color: #ef4444 !important;
}

/* Divider */
.dropdown-divider {
    border-top: 1px solid #e5e7eb;
    margin: 8px 0;
}

/* Logout Button */
.dropdown-logout-wrapper {
    padding: 8px 12px !important;
}

.dropdown-logout-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 10px 16px !important;
    background: #ef4444 !important;
    color: white !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    width: 100% !important;
}

.dropdown-logout-btn:hover {
    background: #dc2626 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
    color: white !important;
}

.dropdown-logout-btn i,
.dropdown-logout-btn .fas,
.dropdown-logout-btn .fa {
    font-size: 12px !important;
    color: white !important;
}

/* Guest Message */
.dropdown-guest-message {
    padding: 12px 16px;
}

.dropdown-guest-message p {
    text-align: center;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 12px;
}

