/* Start custom CSS */.col-stock.dtr-hidden {
    display:table-cell !important;
}



/* Version mobile : bouton avec icône + */
@media screen and (max-width: 768px) {
  .single_add_to_cart_button {
    font-size: 0 !important;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
  }
  
  /* Uniformise la taille du champ quantité et du bouton */
.add-to-cart-button {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  max-width: 60px; /* ou ajuste selon tes besoins */
}

/* Taille identique pour l'input et le bouton */
.add-to-cart-button .quantity input.qty,
.add-to-cart-button .single_add_to_cart_button {
  width: 60px;
  height: 60px;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
  border-radius: 8px; /* optionnel, pour un arrondi */
}

/* Centre le texte ou l’icône dans le bouton */
.add-to-cart-button .single_add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: center;
}

  .single_add_to_cart_button::before {
    content: "+";
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: Arial, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
  }
}

@media screen and (max-width: 768px) {
  a.added_to_cart.wc-forward {
    font-size: 0 !important; /* cache le texte */
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  a.added_to_cart.wc-forward::before {
    content: "🛒"; /* ou "\f07a" si tu utilises Font Awesome */
    font-size: 20px;
    line-height: 1;
  }

  /* Garde la flèche ➔ */
  a.added_to_cart.wc-forward::after {
    font-size: 16px;
    margin-left: 4px;
    display: inline-block;
    transform: translateY(1px); /* légère correction verticale */
  }
}/* End custom CSS */