/* Tarjeta moderna con colores corporativos para WooCommerce */
.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #aeafab;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #fdca5a;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  font-size: 18px;
  font-weight: bold;
  color: #3a3a3a;
  margin: 15px 15px 10px;
}

.woocommerce ul.products li.product .price {
  color: #d24917;
  font-weight: bold;
  font-size: 17px;
  margin: 0 15px 10px;
}

.woocommerce ul.products li.product .button {
  background-color: #d24917;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 15px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
  background-color: #b73c14;
}

/* Estrellas y calificación (si aplica) */
.woocommerce ul.products li.product .star-rating span:before {
  color: #fdca5a;
}