/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Text Domain: hello-elementor-child
*/


/* SINGLE PRODUIT */

.single-produit .produit-titre {
  margin: 0 0 8px;
  font-size: clamp(28px,4vw,40px);
  line-height:1.2;
  color: var(--e-global-color-primary);
  font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
}

/* Fallback minimal pour le bouton dans le template produit si les CSS Elementor ne sont pas chargées */
.single-produit .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--e-global-color-primary, #0d6efd);
  color: #fff;
  border-radius: 20px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #fff;
  transition: background .2s ease-in-out, transform .1s ease-in-out;
}

.single-produit .elementor-button .elementor-button-content-wrapper {
  display: inline-flex;
  align-items: center;
}

.single-produit .elementor-button:hover {
  background: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--e-global-color-accent);
}


/* GALERIE PRODUIT */

/* Wrapper des vignettes */
.galerie-produit .galerie-item {
  position: relative;
  display: inline-block;
}

/* Pastille loupe (fond gris rond) */
.galerie-produit .zoom-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,200,200,1);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 10;
}

/* effet au survol du 1er élément */
.galerie-produit .galerie-item:first-child img {
  transition: transform .2s ease;
}

.galerie-produit .galerie-item:first-child:hover img {
  transform: scale(1.01);
}

/* On s'assure que la loupe reste visible */
.galerie-produit .galerie-item:first-child:hover .zoom-badge {
  display: inline-flex; /* force l'affichage même au survol */
}


/* CATEGORIE */
.lien-produit .elementor-button-text {
  text-decoration: none;
}

.lien-produit:hover .elementor-button-text {
  text-decoration: underline;
}

.carte-produit img {
  transition: transform 0.4s ease;
}

.carte-produit:hover img {
  transform: scale(1.05);
}

.carte-produit .decorativePlus {
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.4;
}

.carte-produit:hover .decorativePlus {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 0.7;
}

/* FOOTER */
.contact-footer {
  text-decoration: none;
}

.contact-footer:hover {
  text-decoration: underline;
}