/* card-product.css du thème enfant */

.shop-product-card-adjust {
  margin-bottom: -5%;
}

/* Style pour le titre du produit */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  text-align: center;
  font-size: 70%;
  margin-top: 0;
}

/* Style pour le conteneur du prix */
.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1f8bd7;
  text-align: center;
  position: relative;
}

/* Style pour le conteneur du montant et du symbole de devise */
.price .woocommerce-Price-amount {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: center;
}

/* Style pour le symbole de devise (€, $, etc.) */
span.woocommerce-Price-currencySymbol {
  font-size: 1em;
  margin-left: 0.1em;
}

/* Style pour le montant du prix */
.price .woocommerce-Price-amount bdi {
  font-weight: bold;
}

.add_to_cart_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  position: absolute;
  top: 90%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 110;
  font-size: 0;
  display: none;
}

.default-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("/wp-content/themes/extendable-child02/assets/svg/Card.svg");
}

.added_to_cart.wc-forward {
  display: none;
}

.product {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 250px; */
  height: 14em;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.woocommerce ul.products li.product a {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product a .price {
  margin-top: auto;
}

/* Masquer complètement l'étiquette promo */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  display: none;
}

/* Requête média pour les écrans de 768px et inférieurs */
@media (max-width: 768px) {
  .woocommerce ul.products li.product {
    height: 25%;
  }
}

/* Requête média pour les écrans entre 453px et 331px */
@media (max-width: 453px) and (min-width: 331px) {
  .woocommerce ul.products li.product {
    height: auto;
  }
}

/* Requête média pour les écrans de 330px et inférieurs */
@media (max-width: 330px) {
  .woocommerce ul.products li.product {
    height: 200px;
  }
}
