/* =======================================
   NAVBAR.CSS COMPLETO - MR CONSTRUCTOR
   ✅ 100% RESPONSIVE
   ✅ BUSCADOR OPTIMIZADO
   ✅ BOTONES TOUCH-FRIENDLY
   ======================================= */

:root {
  /* COLORES PRINCIPALES - GRIS MUY CLARO */
  --navbar-gray-main: #828282;
  --navbar-gray-dark: #6E6E6E;
  --navbar-gray-light: #9A9A9A;
  --navbar-white: #ffffff;
  --navbar-gray-text: #BCAAA4;
  --navbar-brown: #6B4423;
  --navbar-brown-dark: #4A2F1A;
  --navbar-brown-light: #8B5A3C;
  
  /* Dimensiones RESPONSIVE */
  --navbar-top-height-desktop: 80px;
  --navbar-bottom-height-desktop: 50px;
  --navbar-top-height-tablet: 70px;
  --navbar-bottom-height-tablet: 45px;
  --navbar-top-height-mobile: 60px;
  --navbar-bottom-height-mobile: 0px;
  
  /* Efectos */
  --navbar-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  --navbar-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-radius: 0.5rem;
}

/* =======================================
   ESTRUCTURA BASE - RESPONSIVE
   ======================================= */
#mainNavbar {
  background: linear-gradient(180deg, var(--navbar-gray-light) 0%, var(--navbar-gray-dark) 100%);
  border: none;
  box-shadow: var(--navbar-shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  padding: 0;
  transition: var(--navbar-transition);
}

#mainNavbar .container {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* =======================================
   FILA SUPERIOR - Logo, Enlaces y Acciones
   ======================================= */
.navbar-top-row {
  min-height: var(--navbar-top-height-desktop);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  width: 100%;
}

/* Logo RESPONSIVE */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--navbar-transition);
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  grid-column: 1;
}

.logo-container {
  display: flex;
  align-items: center;
  height: 60px;
  transition: var(--navbar-transition);
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--navbar-transition);
}

.navbar-brand:hover .logo-img {
  transform: scale(1.03);
}

/* =======================================
   ENLACES BÁSICOS
   ======================================= */
.enlaces-basicos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  grid-column: 2;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.enlace-basico {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  border: none;
  min-height: 38px;
}

.enlace-basico:hover {
  color: var(--navbar-white) !important;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.enlace-basico.active {
  color: #4A2F1A !important;
  background: linear-gradient(135deg, #FFB300 0%, #FF9800 100%);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
}

.enlace-basico.active:hover {
  background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
}

.enlace-basico i {
  font-size: 0.85rem;
  transition: all 0.3s ease;
  color: inherit;
}

/* Ocultar separadores - ya no se necesitan */
.separator {
  display: none;
}

/* =======================================
   ACCIONES DEL NAVBAR
   ======================================= */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  grid-column: 3;
}

/* =======================================
   BUSCADOR - RESPONSIVE
   ======================================= */
.navbar-search {
  max-width: 500px;
  flex: 0 1 500px;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--navbar-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--navbar-transition);
  height: 48px;
}

.search-input-group:focus-within {
  border-color: var(--navbar-gray-dark);
  box-shadow: 0 0 0 4px rgba(110, 110, 110, 0.15);
}

.search-input {
  border: none;
  background: transparent;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  color: var(--navbar-gray-main);
  flex: 1;
  outline: none;
  font-weight: 500;
  min-width: 0;
}

.search-input::placeholder {
  color: var(--navbar-gray-text);
  font-weight: 400;
  font-size: 0.9rem;
}

.search-btn {
  background: var(--navbar-gray-main);
  border: none;
  color: var(--navbar-white);
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  transition: var(--navbar-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 50px;
}

.search-btn:hover {
  background: var(--navbar-gray-dark);
  color: var(--navbar-white);
  transform: scale(1.02);
}

.search-btn i {
  font-size: 1.1rem;
}

/* =======================================
   BOTONES DE ACCIÓN (Carrito, Usuario)
   ======================================= */
.btn-nav-action {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--navbar-white);
  color: var(--navbar-gray-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--navbar-transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  flex-shrink: 0;
}

.btn-nav-action:hover {
  background: var(--navbar-gray-dark);
  color: var(--navbar-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cart-badge,
.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 10px;
  background: #dc3545;
  color: var(--navbar-white);
  border: 2px solid var(--navbar-white);
}

/* =======================================
   BOTONES DE AUTENTICACIÓN - RESPONSIVE
   ======================================= */
.login-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.login-actions .btn-auth {
  padding: 0.5rem 1.25rem;
  border-radius: var(--navbar-radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--navbar-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  min-height: 44px;
  justify-content: center;
}

.login-actions .btn-login {
  background: var(--navbar-white);
  color: var(--navbar-gray-dark);
  border-color: var(--navbar-gray-dark);
}

.login-actions .btn-login:hover {
  background: var(--navbar-gray-dark);
  color: var(--navbar-white);
  border-color: var(--navbar-gray-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(110, 110, 110, 0.3);
}

.login-actions .btn-register {
  background: var(--navbar-gray-dark);
  color: var(--navbar-white);
  border-color: var(--navbar-gray-dark);
}

.login-actions .btn-register:hover {
  background: var(--navbar-gray-main);
  border-color: var(--navbar-gray-main);
  color: var(--navbar-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(130, 130, 130, 0.3);
}

.login-actions .btn-auth i {
  font-size: 0.9rem;
  color: inherit;
}

/* Usuario autenticado */
.user-dropdown .dropdown-toggle {
  padding: 0.5rem 1rem !important;
  border-radius: var(--navbar-radius) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: var(--navbar-white) !important;
  font-weight: 600 !important;
  min-height: 44px !important;
}

.user-dropdown .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--navbar-white) !important;
}

.user-avatar {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

/* =======================================
   FILA INFERIOR - Menú de categorías
   ======================================= */
.navbar-bottom-row {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-collapse {
  padding: 0;
}

/* ✅ MENÚ CENTRADO */
.navbar-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.nav-item {
  position: relative;
}

/* ============================================
   ✅ OPCIÓN A - LIMPIO Y MINIMALISTA
   ============================================ */
.nav-link-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  color: var(--navbar-white) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--navbar-transition);
  white-space: nowrap;
  background: transparent !important;
  border: 1.5px solid transparent !important;
  min-height: 40px;
  position: relative;
}

/* Ocultar iconos del menú */
.nav-link-custom i,
.nav-link-custom .nav-icon {
  display: none !important;
}

/* ✅ HOVER - Burbuja/cápsula con borde visible */
.nav-link-custom:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: var(--navbar-white) !important;
  text-decoration: none;
}

/* ✅ ACTIVE/EXPANDED - Burbuja más visible cuando el dropdown está abierto */
.nav-link-custom.active,
.nav-link-custom[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: var(--navbar-white) !important;
  text-decoration: none;
}

/* Flecha del dropdown */
.dropdown-toggle::after {
  margin-left: 0.4rem;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  transition: var(--navbar-transition);
  opacity: 0.7;
}

.dropdown-toggle:hover::after {
  opacity: 1;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* =======================================
   TOGGLE MÓVIL
   ======================================= */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--navbar-radius);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== RESPONSIVE - TABLET (< 992px) ===== */
@media (max-width: 991.98px) {
  .navbar-top-row {
    min-height: var(--navbar-top-height-tablet);
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
  }
  
  .logo-container {
    height: 50px;
  }
  
  .enlaces-basicos {
    display: none;
  }
  
  .navbar-actions {
    gap: 0.5rem;
  }
  
  .navbar-search {
    max-width: 300px;
    flex: 0 1 300px;
  }
  
  .search-input-group {
    height: 44px;
  }
  
  .search-input {
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
  }
  
  .search-btn {
    padding: 0.65rem 1rem;
    min-width: 45px;
  }
  
  .btn-nav-action {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .login-actions .btn-auth {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
  
  .navbar-collapse {
    background: var(--navbar-gray-dark);
    border-radius: var(--navbar-radius);
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-link-custom {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--navbar-radius);
    background: rgba(255, 255, 255, 0.05) !important;
  }
  
  .nav-link-custom:hover {
    background: rgba(255, 255, 255, 0.1) !important;
  }
}

/* ===== RESPONSIVE - MÓVIL (< 768px) ===== */
@media (max-width: 767.98px) {
  .navbar-top-row {
    min-height: var(--navbar-top-height-mobile);
    padding: 0.35rem 0;
  }
  
  .logo-container {
    height: 45px;
  }
  
  .navbar-search {
    max-width: 200px;
  }
  
  .search-input-group {
    height: 40px;
  }
  
  .search-input {
    font-size: 0.85rem;
    padding: 0.5rem 0.9rem;
  }
  
  .search-input::placeholder {
    font-size: 0.8rem;
  }
  
  .search-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.95rem;
    min-width: 40px;
  }
  
  .btn-nav-action {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  
  .cart-badge,
  .notification-badge {
    min-width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }
  
  .login-actions .btn-auth {
    padding: 0.4rem 0.875rem;
    font-size: 0.75rem;
  }
}

/* ===== RESPONSIVE - MÓVIL PEQUEÑO (< 576px) ===== */
@media (max-width: 575.98px) {
  #mainNavbar .container {
    padding: 0 0.75rem;
  }
  
  .navbar-top-row {
    gap: 0.5rem;
  }
  
  .navbar-search {
    display: none;
  }
  
  .navbar-actions {
    gap: 0.4rem;
  }
  
  .btn-nav-action {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .login-actions {
    gap: 0.35rem;
  }
  
  .login-actions .btn-auth {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
  }
  
  .login-actions .btn-auth i {
    display: none;
  }
  
  .login-actions .btn-register {
    display: none;
  }
  
  .navbar-toggler {
    width: 40px;
    height: 40px;
  }
}

/* ===== RESPONSIVE - MÓVIL EXTRA PEQUEÑO (< 400px) ===== */
@media (max-width: 399.98px) {
  .logo-container {
    height: 40px;
  }
  
  .btn-nav-action {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  
  .cart-badge,
  .notification-badge {
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    top: -3px;
    right: -3px;
  }
  
  .login-actions .btn-auth {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
}

/* ===== ESTADOS ESPECIALES ===== */
.navbar-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar-scrolled .navbar-top-row {
  min-height: calc(var(--navbar-top-height-desktop) - 10px);
}

.navbar-scrolled .logo-container {
  height: 50px;
}

/* ===== ANIMACIONES ===== */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-collapse.show {
  animation: slideDown 0.3s ease-out;
}

/* ===== ACCESIBILIDAD ===== */
.nav-link-custom:focus,
.enlace-basico:focus,
.btn-nav-action:focus,
.login-actions .btn-auth:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navbar-gray-dark);
  color: var(--navbar-white);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 0 0 var(--navbar-radius) 0;
  z-index: 2000;
}

.skip-to-content:focus {
  top: 0;
}

/* ===== PRINT ===== */
@media print {
  #mainNavbar {
    display: none;
  }
}

/* ===== OPTIMIZACIÓN DE RENDIMIENTO ===== */
.navbar-brand,
.enlace-basico,
.btn-nav-action,
.login-actions .btn-auth,
.nav-link-custom {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================
   USER DROPDOWN - DISEÑO PREMIUM ELEGANTE
   ============================================ */

/* Botón principal del usuario */
.btn-user-premium {
  padding: 6px 12px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
  gap: 8px;
}

.btn-user-premium:hover,
.btn-user-premium:focus,
.btn-user-premium[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 100%) !important;
  border-color: rgba(255,255,255,0.4) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Avatar del usuario en el botón */
.user-avatar-premium {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #4A2F1A;
  box-shadow: 0 2px 8px rgba(255, 179, 0, 0.4);
  border: 2px solid rgba(255,255,255,0.3);
}

/* Info del usuario al lado del avatar */
.user-info-premium {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.user-name-premium {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.user-status-premium {
  font-size: 0.7rem;
  color: #4ADE80;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-status-premium::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.dropdown-caret {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.btn-user-premium[aria-expanded="true"] .dropdown-caret {
  transform: rotate(180deg);
}

/* ===== MENÚ DROPDOWN PREMIUM ===== */
.user-menu-premium {
  min-width: 280px !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.1) !important;
  overflow: hidden;
  margin-top: 10px !important;
  animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header del menú con info del usuario */
.user-menu-premium .dropdown-header {
  padding: 0 !important;
  background: linear-gradient(135deg, #6B4423 0%, #4A2F1A 100%);
}

.user-header-premium {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.user-avatar-large-premium {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #4A2F1A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border: 3px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.user-details-premium {
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.user-details-premium strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-details-premium small {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Separador elegante */
.user-menu-premium .dropdown-divider {
  margin: 0 !important;
  border-color: #f0f0f0 !important;
  opacity: 1;
}

/* Items del menú */
.user-menu-item-premium {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 20px !important;
  color: #444 !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: all 0.2s ease !important;
  border-left: 3px solid transparent !important;
}

.user-menu-item-premium:hover {
  background: linear-gradient(90deg, #FFF8E7 0%, #fff 100%) !important;
  color: #6B4423 !important;
  border-left-color: #FFB300 !important;
}

.user-menu-item-premium:active {
  background: #FFF0D0 !important;
}

/* Iconos del menú */
.menu-icon-premium {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B4423;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.user-menu-item-premium:hover .menu-icon-premium {
  background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
  color: #4A2F1A;
  transform: scale(1.05);
  box-shadow: 0 3px 10px rgba(255, 179, 0, 0.3);
}

/* Item de cerrar sesión - estilo especial */
.logout-item-premium {
  color: #dc3545 !important;
}

.logout-item-premium .menu-icon-premium {
  background: #FEE2E2;
  color: #dc3545;
}

.logout-item-premium:hover {
  background: linear-gradient(90deg, #FEE2E2 0%, #fff 100%) !important;
  color: #b91c1c !important;
  border-left-color: #dc3545 !important;
}

.logout-item-premium:hover .menu-icon-premium {
  background: #dc3545;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .user-menu-premium {
    min-width: 260px !important;
  }
  
  .user-header-premium {
    padding: 15px;
  }
  
  .user-avatar-large-premium {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .user-menu-item-premium {
    padding: 12px 16px !important;
  }
  
  .menu-icon-premium {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}