.elementor-352 .elementor-element.elementor-element-1f810ee{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-a424307 *//* Contenedor principal */
.custom-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
  background: #fff; /* Fondo principal blanco */
  font-family: 'Poppins', sans-serif;
}

/* Filtros */
.filtros {
  flex: 1 1 250px;
}

.filtro-box {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  background: #f3f3f3; /* Gris claro solo para el filtro */
}

.filtro-box h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  color: #3278ff;
}

.filtro-box details {
  margin-bottom: 10px;
}

.filtro-box summary {
  font-size: 15px;
  cursor: pointer;
  color: #333;
}

.filtro-box ul {
  list-style: none;
  margin: 5px 0 10px 10px;
  padding: 0;
}

.filtro-box li {
  margin-bottom: 6px;
  color: #333;
}

.filtro-box a {
  color: #333;
  text-decoration: none;
}

.filtro-box a:hover {
  color: #3278ff;
  text-decoration: underline;
}

/* Productos */
.productos {
  flex: 3 1 900px;
}

/* Barra superior */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chip {
  background: #e0e0e0;
  border: none;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  color: #333;
}

.chip:hover {
  background: #3278ff;
  color: #fff;
}

.ordenar label {
  margin-right: 6px;
  font-size: 14px;
  color: #333;
}

.ordenar select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}

/* Estilo de productos WooCommerce */
.woocommerce ul.products.columns-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.woocommerce ul.products.columns-4 li.product {
  width: 23%;
  margin: 1%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 10px;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 360px;
  box-sizing: border-box;
}

/* Hover efecto */
.woocommerce ul.products.columns-4 li.product:hover {
  transform: translateY(-5px);
}

/* Imagen centrada */
.woocommerce ul.products.columns-4 li.product img {
  max-height: 180px;
  object-fit: contain;
  width: auto;
  margin: 0 auto 10px;
  display: block;
}

/* Título del producto */
.woocommerce ul.products.columns-4 li.product h2.woocommerce-loop-product__title {
  font-size: 16px;
  color: #3278ff;
  font-weight: 600;
  min-height: 48px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Precio */
.woocommerce ul.products.columns-4 li.product .price {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

/* Botón */
.woocommerce ul.products.columns-4 li.product .button {
  background-color: #3278ff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 12px auto 0 auto;
  display: inline-block;
  width: auto;
  max-width: 80%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
}

/* Hover botón */
.woocommerce ul.products.columns-4 li.product .button:hover {
  background-color: #1d5ce6;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Responsive tablet (2 columnas) */
@media screen and (max-width: 1024px) {
  .woocommerce ul.products.columns-4 li.product {
    width: 48%;
    margin-bottom: 20px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Responsive mobile: carrusel horizontal */
@media screen and (max-width: 768px) {
  .custom-container {
    flex-direction: column;
  }

  .woocommerce ul.products.columns-4 {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px;
  }

  .woocommerce ul.products.columns-4 li.product {
    flex: 0 0 80%;
    margin: 0;
    scroll-snap-align: start;
    min-width: 260px;
    max-width: 300px;
  }

  .woocommerce ul.products.columns-4::-webkit-scrollbar {
    display: none;
  }

  .top-bar {
    align-items: flex-start;
  }
}
/* Filtro: color de enlaces visibles */
.filtro-box a {
  color: #333 !important;  /* Gris oscuro, visible en fondo claro */
  text-decoration: none;
  font-weight: 300;
}

.filtro-box a:hover {
  color: #3278ff !important; /* Azul corporativo al pasar el mouse */
  text-decoration: underline;
}/* End custom CSS */