/* Estilos base */
.subcat-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
  }
  
  .subcat-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  
  .subcat-pill {
    display: inline-block;
    background-color: #d5ecf7;      /* Fondo normal */
    color: #000 !important;                    /* Texto siempre negro */
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .subcat-pill:hover {
    background-color: #defe8d;      /* Color de fondo al hacer hover */
    color: #000;                    /* Asegura que el texto sigue negro */
  }
  
   /* En móvil: convertir en scroll horizontal */
  .subcat-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .subcat-pill {
    flex: 0 0 auto;
  }