
    /* Reset & Base Styles */
    html {
        scroll-behavior: smooth;
    }
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #f7fafc;
      color: #2d3748;
      line-height: 1.6;
      min-height: 100vh;
    }

    /* Layout */
    .app-container {
      display: flex;
      min-height: calc(100vh - 64px);
    }

    /* Sidebar */
    .sidebar {
      width: 280px;
      min-width: 280px;
      background-color: #ffffff;
      border-right: 1px solid #e2e8f0;
      padding: 24px 16px;
      position: sticky;
      top: 64px;
      height: calc(100vh - 64px);
      overflow-y: auto;
      z-index: 100;
    }

    .sidebar-logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #2c5282;
      padding: 0 12px 24px;
      border-bottom: 1px solid #e2e8f0;
      margin-bottom: 24px;
    }

    .sidebar-nav {
      list-style: none;
    }

    .sidebar-nav li {
      margin-bottom: 4px;
    }

    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      text-decoration: none;
      color: #4a5568;
      border-radius: 10px;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .sidebar-nav a:hover {
      background-color: #ebf8ff;
      color: #4299e1;
    }

    .sidebar-nav a.active {
      background-color: #2c5282;
      color: #ffffff;
    }

    .sidebar-nav a.active:hover {
      background-color: #2b6cb0;
      color: #ffffff;
    }

    .nav-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
    }

    /* Main Content */
    .main-content {
      flex: 1;
      padding: 25px 30px;
      min-width: 0;
    }

    /* Header */
    .page-header {
      margin-bottom: 32px;
    }

    .page-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1a202c;
      margin-bottom: 8px;
    }

    .page-subtitle {
      color: #718096;
      font-size: 1rem;
    }

    /* Filter Bar */
    .filter-bar {
      display: flex;
      gap: 12px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 10px 20px;
      border: 1px solid #e2e8f0;
      background-color: #ffffff;
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 500;
      color: #4a5568;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .filter-btn:hover {
      border-color: #4299e1;
      color: #4299e1;
    }

    .filter-btn.active {
      background-color: #2c5282;
      border-color: #2c5282;
      color: #ffffff;
    }

    /* Product Grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    /* Estilos adicionales para la tarjeta de producto */
    .product-description {
      font-size: 0.875rem;
      color: #718096;
      text-align: center;
      line-height: 1.5;
      /* Las siguientes líneas limitan el texto a un máximo de 2 renglones con puntos suspensivos */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 4px;
    }
    /* Product Card */
    .product-card {
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: transparent;
    }

    .product-image-wrapper {
      position: relative;
      padding-top: 100%;
      overflow: hidden;
      background-color: #f7fafc;
    }

    .product-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .product-card:hover .product-image {
      transform: scale(1.05);
    }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 12px;
      background-color: #2c5282;
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .product-info {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .product-name {
      font-size: 1rem;
      font-weight: 600;
      color: #1a202c;
      text-align: center;
      line-height: 1.4;
    }

    .product-price {
      font-size: 0.875rem;
      color: #718096;
      text-align: center;
    }

    .product-price span {
      font-weight: 700;
      color: #2c5282;
      font-size: 1.125rem;
    }

    .view-more-btn {
      display: block;
      width: 100%;
      padding: 14px 24px;
      background-color: #4299e1;
      color: #ffffff;
      border: none;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s ease;
      margin-top: auto;
    }

    .view-more-btn:hover {
      background-color: #3182ce;
    }

    /* WhatsApp Floating Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 1000;
      text-decoration: none;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-btn svg {
      width: 32px;
      height: 32px;
      fill: #ffffff;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      position: fixed;
      top: 16px;
      left: 16px;
      z-index: 200;
      width: 48px;
      height: 48px;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-toggle svg {
      width: 24px;
      height: 24px;
      color: #2c5282;
    }

    /* Sidebar Overlay */
    .sidebar-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 90;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .product-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 992px) {
      .sidebar {
        position: fixed;
        top: 64px;
        left: 0;
        height: calc(100vh - 64px);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
      }

      .sidebar.open {
        transform: translateX(0);
      }

      .sidebar-overlay.open {
        display: block;
      }

      .mobile-menu-toggle {
        display: flex;
      }

      .main-content {
        padding: 32px 24px;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
    }

    @media (max-width: 576px) {
      .product-grid {
        grid-template-columns: 1fr;
      }

      .page-title {
        font-size: 1.5rem;
      }

      .filter-bar {
        gap: 8px;
      }

      .filter-btn {
        padding: 8px 16px;
        font-size: 0.8125rem;
      }

      .whatsapp-btn {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
      }
    }

    /* Top Navigation Bar */
    .top-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 64px;
      background-color: #ffffff;
      border-bottom: 1px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      z-index: 150;
    }

    .top-nav-logo {
      font-size: 1.25rem;
      font-weight: 700;
      color: #2c5282;
      text-decoration: none;
    }

    .top-nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .top-nav-links a {
      text-decoration: none;
      color: #4a5568;
      font-weight: 500;
      font-size: 0.9375rem;
      transition: color 0.2s ease;
    }

    .top-nav-links a:hover {
      color: #4299e1;
    }

    .top-nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .top-nav-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background-color: transparent;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease;
      color: #4a5568;
    }

    .top-nav-icon:hover {
      background-color: #ebf8ff;
      color: #4299e1;
    }

    .top-nav-icon svg {
      width: 22px;
      height: 22px;
    }

    .cart-badge {
      position: relative;
    }

    .cart-badge::after {
      content: "3";
      position: absolute;
      top: 4px;
      right: 4px;
      width: 18px;
      height: 18px;
      background-color: #4299e1;
      color: #ffffff;
      font-size: 0.6875rem;
      font-weight: 600;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Footer */
    .site-footer {
      background-color: #1a202c;
      color: #a0aec0;
      padding: 60px 40px 32px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin-bottom: 48px;
    }

    .footer-brand h3 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .footer-brand p {
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background-color: #2d3748;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #a0aec0;
      transition: all 0.2s ease;
    }

    .footer-social a:hover {
      background-color: #4299e1;
      color: #ffffff;
    }

    .footer-social svg {
      width: 20px;
      height: 20px;
    }

    .footer-column h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 12px;
    }

    .footer-column a {
      color: #a0aec0;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-column a:hover {
      color: #4299e1;
    }

    .footer-bottom {
      border-top: 1px solid #2d3748;
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 0.875rem;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: #a0aec0;
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s ease;
    }

    .footer-legal a:hover {
      color: #4299e1;
    }

    /* Responsive adjustments for nav and footer */
    @media (max-width: 992px) {
      .top-nav {
        padding: 0 16px;
      }

      .top-nav-links {
        display: none;
      }

      .mobile-menu-toggle {
        position: static;
        margin-right: 12px;
      }

      .top-nav-logo {
        flex: 1;
      }

      .site-footer {
        padding: 48px 24px 24px;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 576px) {
      .top-nav-actions {
        gap: 8px;
      }

      .top-nav-icon {
        width: 36px;
        height: 36px;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-legal {
        justify-content: center;
      }
    }
  .product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden; 
}

/* Botones circulares estilo Mercado Libre */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 50% 50% 0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* La sombrita de la foto */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

/* Pegados un poquito a los bordes */
.prev-btn { left: 0px; border-radius: 0 50% 50% 0;}
.next-btn { right: 0px;  border-radius: 50% 0 0 50%;}

/* Efecto hover sobre el botoncito */
.gallery-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Estado oculto controlado por JS (cuando no hay más fotos) */
.gallery-btn.hidden-btn {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

/* Mostrar botones cuando el usuario posa el mouse en CUALQUIER parte de la tarjeta */
.product-image-wrapper:hover .gallery-btn:not(.hidden-btn) {
    opacity: 1;
    visibility: visible;
}

/* Regla para celulares (oculta los botones en táctil) */
@media (max-width: 768px), (hover: none) {
    .gallery-btn {
        display: none !important;
    }
}
/* Íconos dinámicos cargados como máscara */
.nav-icon.mask-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: currentColor; /* Toma el color de la letra (azul, gris, el que sea) */
    
    /* Configuración de la máscara */
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.product-variants-container {
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 8px;
}

.variants-dropdown {
    width: 100%;
}

.variants-summary {
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Oculta el marcador por defecto */
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Oculta la flecha nativa en Safari/Chrome */
.variants-summary::-webkit-details-marker {
    display: none;
}

.variants-summary:hover {
    color: #0e2283; /* Tu azul corporativo */
}

/* Rota la flechita cuando está abierto */
.variants-dropdown[open] .variants-summary svg {
    transform: rotate(180deg);
}

.variants-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    font-size: 0.75rem;
    color: #555;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.variants-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Los circulitos de colores */
.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

/* =========================================
   CARRUSEL DE DESTACADOS (OPTIMIZADO)
   ========================================= */

/* 1. CONTENEDOR DESTACADO */
.featured-section {
    margin-bottom: 25px;
    padding: 15px 0;
    /* Un degradado muy sutil y una sombrita para que resalte como una "isla" */
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f7 100%);
    border: 1px solid #c1c1c1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-radius: 12px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding: 0 24px;
}

.featured-title {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.featured-link {
    font-size: 0.9rem;
    color: #3483fa; 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.featured-link:hover {
    color: #2968c8;
}

/* 2. CONTENEDOR DEL SCROLL */
.featured-carousel {
    display: flex;
    gap: 16px;
    /* Mucho padding abajo (24px) para dar espacio a la animación de salto de la tarjeta */
    padding: 10px 24px 24px 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.featured-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* 3. LA TARJETA (MÁS CHICA Y CON HOVER ARREGLADO) */
.featured-card {
    width: 200px; /* Reducida de 240px a 200px */
    min-width: 200px;
    scroll-snap-align: start;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #7b7b7b;
    border-radius: 8px;
    overflow: visible; /* Cambiado a visible para que el truco del ::after funcione */
    cursor: pointer;
    /* Animación muy suave y natural */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* EL TRUCO PARA EL BUG DEL HOVER:
   Crea un área invisible de 15px debajo de la tarjeta. 
   Si la tarjeta sube al hacer hover, tu mouse sigue tocando esta área y no tiembla. */
.featured-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.featured-card:hover {
    /* La tarjeta "salta" 6px hacia arriba */
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border: 1px solid #7b7b7b;
}

/* 4. IMAGEN DE LA TARJETA (EFECTO ZOOM) */
.product-image-wrapper {
    width: 100%;
    height: 200px; /* Ajusta esto según la proporción de tus fotos */
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; /* Transición para el zoom */
}

/* Al hacer hover en la tarjeta, la imagen hace un mini zoom */
.featured-card:hover .product-image {
    transform: scale(1.05);
}

/* 5. TEXTOS Y CONTENIDOS INTERNOS */
.product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-subtitle {
    font-size: 0.7rem;
    color: #999;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 0.95rem;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 500;
    /* Para que si el nombre es largo, se corte con puntos suspensivos (...) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: auto; /* Empuja el precio siempre al fondo de la tarjeta */
}

.top-badge {
    background-color: #ff7733;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* 6. COLORES DE VARIANTES */
.product-colors {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0 10px 0;
}

.color-title {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.color-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); /* Agrega un borde interno sutil por si el color es blanco */
}

/* 7. BOTONES DEL CARRUSEL */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #3483fa;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 44px; /* Un poquito más delicados */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background-color: #3483fa;
    color: #fff;
    box-shadow: 0 6px 14px rgba(52, 131, 250, 0.3);
}

.carousel-btn.prev-btn { left: -15px; }
.carousel-btn.next-btn { right: -15px; }

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    .featured-section {
        padding: 20px 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}

/* =========================================
   CABECERA DEL CATÁLOGO GENERAL
   ========================================= */
.catalog-header {
    text-align: left;
    margin-top: 10px; 
    margin-bottom: 30px;
}

.catalog-title {
    font-size: 1.5rem; /* Un poco más grande que el del carrusel para darle jerarquía */
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: -0.5px; /* Junta apenitas las letras, da un toque muy moderno */
}

.catalog-subtitle {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

/* Ajuste para celulares */
@media (max-width: 768px) {
    .catalog-header {
        padding: 0 20px;
        margin-top: 40px;
        margin-bottom: 24px;
    }
    
    .catalog-title {
        font-size: 1.3rem;
    }
}

/* =========================================
   SELECTOR DE CATEGORÍAS MÓVIL (NATIVO HTML)
   ========================================= */

/* Por defecto en PC se oculta */
.mobile-category-dropdown {
    display: none;
}

@media (max-width: 992px) {
    .mobile-category-dropdown {
        display: block;
        position: relative; 
        margin: 15px 20px 25px 20px;
        z-index: 999;
    }

    /* El botón principal */
    .mobile-category-dropdown details summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        list-style: none; /* Quita la flecha fea en Firefox */
    }

    /* Quita la flecha por defecto en Chrome/Safari */
    .mobile-category-dropdown details summary::-webkit-details-marker {
        display: none;
    }

    .summary-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Animación de la flechita cuando se abre */
    .mobile-category-dropdown details[open] .chevron {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    /* =================================
       LA LISTA POPUP
       ================================= */
    .mobile-dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 8px 0 0 0;
        padding: 8px 0;
        background-color: #fff;
        border: 1px solid #eaeaea;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        list-style: none;
        
        /* Altura máxima para que no ocupe toda la pantalla y permita scrollear dentro */
        max-height: 60vh;
        overflow-y: auto;
    }

    .mobile-dropdown-list li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 18px;
        text-decoration: none;
        color: #555;
        font-size: 0.95rem;
        border-bottom: 1px solid #f8f8f8;
        transition: background-color 0.2s;
    }

    .mobile-dropdown-list li:last-child a {
        border-bottom: none;
    }

    /* Estilo cuando está seleccionada */
    .mobile-dropdown-list li a.active {
        color: #3483fa;
        background-color: #f0f8ff;
        font-weight: 600;
        border-left: 3px solid #3483fa;
    }

    /* Iconos dentro de la lista popup */
    .mobile-dropdown-list .nav-icon {
        width: 20px;
        height: 20px;
        display: inline-block;
    }
}
.featured-badge-oferta {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
    letter-spacing: 0.5px;
}