/* MadeOrigin - Styles personnalisés */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Reset minimal */
* {
  box-sizing: border-box;
}

/* Limite la hauteur des images produit pour éviter les images trop hautes (ex: Worx) */
#productImage {
  max-height: 500px !important;
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Assure que les images dans les cartes produits sont bien centrées et ne débordent pas */
.card figure {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.card figure img {
  object-fit: contain !important;
  max-height: 192px !important;
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}

/* Force les limites sur toutes les images de produits Worx */
img[src*="worx.com"],
img[src*="WR"]:not([src*="svg"]) {
  max-height: 192px !important;
  object-fit: contain !important;
}

/* Dans les fiches produits */
#productImageContainer img,
#productImage {
  max-height: 480px !important;
}
