.elementor-6076 .elementor-element.elementor-element-0df532c{--display:flex;}.elementor-6076 .elementor-element.elementor-element-e03d2c0{--display:flex;}.elementor-6076 .elementor-element.elementor-element-cd1112a > .elementor-widget-container{background-image:url("https://mevak.es/wp-content/uploads/2026/01/Diseno-sin-titulo-47.png");}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-cd1112a *//* Contenedor de productos */
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  padding: 0;
  list-style: none;
}

/* Cada producto */
ul.products li.product {
  background: #ffffff; /* fondo blanco, mismo que el de la página */
  border: 1px solid #e0e0e0; /* borde sutil */
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Imagen */
ul.products li.product img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
ul.products li.product:hover img {
  transform: scale(1.03);
}

/* Título */
ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px;
  color: #333333;
  margin-bottom: 6px;
  min-height: 44px;
}

/* Precio */
ul.products li.product .price {
  color: #9e2323;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
}

/* Botón */
ul.products li.product a.button,
ul.products li.product .button {
  background: #9e2323;
  color: #ffffff !important;
  padding: 7px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
ul.products li.product a.button:hover,
ul.products li.product .button:hover {
  background: #cc3a3a;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  ul.products {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  ul.products {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */