/* ————————————————————————————————————————————
   Estilos para los botones de filtro
   ———————————————————————————————————————————— */
   #c94-cat-filters {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  #c94-cat-filters .c94-cat-filter {
    display: inline-block;
    margin: 0 .5rem .5rem 0;
    padding: .5rem 1rem;
    border: 2px solid #ff0000;
    border-radius: 4px;
    background: #fff;
    color: #ff0000;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  
  #c94-cat-filters .c94-cat-filter:hover {
    background: #ff0000;
    color: #fff;
  }
  
  #c94-cat-filters .c94-cat-filter.active {
    background: #ff0000;
    color: #fff;
  }

  /* Botón “Cargar más” */
    #c94-cat-loadmore {
    margin-top: 1.5rem;
    padding: .75rem 1.5rem;
    border: 2px solid #ff0000;
    border-radius: 4px;
    background: #fff;
    color: #ff0000;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  
  #c94-cat-loadmore:hover {
    background: #ff0000;
    color: #fff;
  }
  
  #c94-cat-loadmore:disabled {
    opacity: .6;
    cursor: not-allowed;
  }
  