/* Estilos para el plugin de categorías desplegables */
.categorias-desplegables {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.categoria-padre {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  width: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.categoria-titulo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #635641; /* Color marrón oscuro */
  cursor: pointer;
}

.categoria-padre:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(138, 120, 92, 0.15); /* sombra marrón claro */
}

.subcategorias {
  display: none;
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.subcategorias li {
  margin-bottom: 10px;
}

.subcategorias a {
  text-decoration: none;
  color: #635641;
  font-weight: normal;
  font-size: 1rem;
}

.subcategorias a:hover {
  color: #8a785c; /* Color marrón claro */
}
