/* --- ESTILO PARA CARDS DE LA TIENDA --- */

.woocommerce ul.products {
  gap: 24px;
}

.woocommerce ul.products li.vedu-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.woocommerce ul.products li.vedu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.woocommerce ul.products li.vedu-card img {
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.woocommerce ul.products li.vedu-card h2 {
  font-size: 18px;
  color: #003d3d;
  font-weight: 600;
  margin-bottom: 10px;
}

.woocommerce ul.products li.vedu-card .vedu-price {
  font-size: 16px;
  font-weight: 500;
  color: #1c7066;
  margin-bottom: 12px;
}

.woocommerce ul.products li.vedu-card .vedu-price del {
  color: #999;
  font-size: 14px;
  margin-right: 6px;
}

.woocommerce ul.products li.vedu-card .star-rating {
  display: none;
}

/* Pseudo-elemento para el badge "En Oferta" (con !important) */
.woocommerce ul.products li.vedu-card.on-sale::before {
  content: "¡Oferta!";
  background-color: #157878;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  top: 12px;
  left: 12px;
  position: absolute !important;
  z-index: 10 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block !important;
}

/* Badge de "Incluye Envío" */
.woocommerce ul.products li.vedu-card .vedu-product-badge {
  background-color: #003d3d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  top: 12px;
  right: 12px;
  position: absolute !important;
  z-index: 10 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block !important;
}

/* Estilo para el botón de carrito */
.woocommerce ul.products li.vedu-card .custom-cart-icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #003d3d;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.woocommerce ul.products li.vedu-card .custom-cart-icon img {
  max-width: 24px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.vedu-card .custom-cart-icon:hover {
  background-color: #157878;
}

.woocommerce ul.products li.vedu-card .custom-cart-icon:hover img {
  transform: scale(1.1);
}

/* --- ESTILO PARA CARDS DEL HOME (SHORTCODE) --- */

.vedu-product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 0;
}

.vedu-product-grid .vedu-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  max-width: 280px;
  width: 100%;
  position: relative;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vedu-product-grid .vedu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.vedu-product-grid .vedu-card img {
  max-height: 200px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
}

.vedu-product-grid .vedu-card h2 {
  font-size: 18px;
  color: #003d3d;
  font-weight: 600;
  margin-bottom: 10px;
}

.vedu-product-grid .vedu-card .vedu-price {
  font-size: 16px;
  font-weight: 500;
  color: #1c7066;
  margin-bottom: 12px;
}

.vedu-product-grid .vedu-card .vedu-price del {
  color: #999;
  font-size: 14px;
  margin-right: 6px;
}

.vedu-product-grid .vedu-card .star-rating {
  display: none;
}

/* Posicionamiento de los badges en el Home */
.vedu-product-grid .vedu-card .onsale {
  background-color: #157878;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  top: 12px;
  left: 12px;
  position: absolute !important;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block !important;
}

.vedu-product-grid .vedu-card .vedu-product-badge {
  background-color: #003d3d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  top: 12px;
  right: 12px;
  position: absolute !important;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block !important;
}

/* Estilo para el botón de carrito */
.vedu-product-grid .vedu-card .custom-cart-icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #003d3d;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.vedu-product-grid .vedu-card .custom-cart-icon img {
  max-width: 24px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
}

.vedu-product-grid .vedu-card .custom-cart-icon:hover {
  background-color: #157878;
}

.vedu-product-grid .vedu-card .custom-cart-icon:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .vedu-product-grid {
    justify-content: center;
  }
}