CSS : 11 aout

*,
*::before,
*::after {
  font-family: 'Barlow', sans-serif !important;
}

@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/fonts/Barlow-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.mozza-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.mozza-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease !important;
  transform: none !important;
}

/* Image de hover */
.mozza-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.mozza-image-wrapper:hover .mozza-hover-image {
  opacity: 1;
}

/* --- GRILLE PRODUITS --- */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
}

@media only screen and (min-width: 769px) and (max-width: 1023px) {
  ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media only screen and (max-width: 768px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- GRILLE FLEX --- */
.wc-block-grid__product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.wc-block-grid__product .wc-block-grid__product-title {
  min-height: 3.2em;
  line-height: 1.6;
  display: block;
}

.wc-block-grid__product a[rel="tag"] {
  display: inline-block;
  min-height: 1.4em;
  margin-bottom: 0.5em;
}

.wc-block-grid__product .wc-block-grid__product-price {
  margin-top: auto;
}

/* --- ARRONDIS SUR MOBILE --- */
@media only screen and (max-width: 768px) {
  .wc-block-grid__product-image img,
  .wc-block-grid__product-image {
    border-radius: 20px !important;
  }
}

/* --- TEXTE DESCRIPTION CATÉGORIE --- */
.mozza-category-description {
  max-width: 800px;
  margin: 2rem auto 3rem auto;
  padding: 0 1rem;
  text-align: center;
  font-family: inherit;
}

.mozza-category-description h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #8c7e03;
}

.mozza-category-description p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 auto;
}

/* --- FOOTER --- */
footer a {
  text-decoration: none !important;
}

/* ==========================
   STYLES UNIQUEMENT POUR MOBILE
   ========================== */
@media only screen and (max-width: 768px) {

  /* --- FIL D'ARIANE --- */
  .woocommerce-breadcrumb {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    font-size: 14px;
    padding: 0 12px;
  }

  /* --- MENU NAVIGATION --- */
  .wp-block-navigation-item {
    text-align: center !important;
  }

  /* --- Réinitialisation liens navigation --- */
  .wp-block-navigation-item a {
    font-weight: 400 !important;
    text-transform: capitalize !important;
    font-size: 15px !important;
    padding: 6px 0 !important;
  }

  /* --- Catégories principales --- */
  .wp-block-navigation-item > a[href*="/categorie/jeu"],
  .wp-block-navigation-item > a[href*="/categorie/balade"],
  .wp-block-navigation-item > a[href*="/categorie/epicerie"],
  .wp-block-navigation-item > a[href*="/categorie-produit/maison"],
  .wp-block-navigation-item > a[href*="/categorie/garde-robe"],
  .wp-block-navigation-item > a[href*="/categorie/soins"],
  .wp-block-navigation-item > a[href*="/categorie/le-chat"] {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 16.5px !important;
    margin: 12px 0 6px 0 !important;
    display: block !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }

  /* --- Sous-catégories --- */
  .wp-block-navigation__submenu-container .wp-block-navigation-item a,
  .wp-block-navigation-item.has-child ul li a {
    font-weight: 400 !important;
    text-transform: capitalize !important;
    font-size: 15px !important;
    padding: 4px 0 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
  }

}
@media screen and (max-width: 768px) {
  .cart {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }

  .cart .quantity {
    flex: 0 0 64px;
    height: auto;
  }

  .cart .quantity input.qty {
    height: 48px !important;         /* même hauteur que le bouton */
    padding: 0 !important;
    text-align: center;
    font-size: 16px !important;
    border-radius: 8px !important;
    box-sizing: border-box;
  }

  .single_add_to_cart_button {
    flex: 1;
    padding: 14px 0 !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    text-align: center;
    width: auto !important;
    min-width: 180px;
  }
}
/* Conteneur de la carte produit : assure une structure verticale */
ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  height: 100% !important;
	min-height: 420px; 
}
/* --- IMAGE PRODUIT --- */
.mozza-image-wrapper {
  display: block;
  margin-bottom: 0.15em;
  border-radius: 16px;
  overflow: hidden;
}

.wp-block-post-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin: 0.2rem 0 0.2rem 0;
  word-break: break-word;
  hyphens: auto;
}

/* --- MARQUE : ALIGNÉE PAR HAUTEUR FIXE --- */
.taxonomy-product_brand {
  text-align: center;
  min-height: 0.9em;
  font-size: 0.9em;
  color: #888;
	margin-top: 0 !important;
  margin-bottom: 0.1em;
  display: block;
}

/* --- PRIX : ALIGNÉ AUSSI --- */
.wc-block-components-product-price {
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  min-height: 1.8em;
  margin-bottom: 0.8em;
}

/* --- BOUTON TOUJOURS EN BAS --- */
.custom-button,
ul.products li.product .button,
ul.products li.product .variable-items-wrapper,
ul.products li.product .woof-swatches {
  margin-top: auto;
  align-self: center;
  text-align: center;
}
/* === DÉCENTRER TITRE ET PRIX FICHE PRODUIT === */

/* Titre produit (H1) */
.single-product .product .product_title,
.single-product .wp-block-post-title {
  text-align: left !important;
}

/* Prix */
.single-product .product .summary .price,
.single-product .wp-block-woocommerce-product-price,
.single-product .wp-block-woocommerce-product-price .wc-block-components-product-price {
  text-align: left !important;
  justify-content: flex-start !important;
}
@media screen and (max-width: 768px) {
  body.single-product .wp-block-post-title {
    -webkit-line-clamp: unset !important;
    display: block !important;
    overflow: visible !important;
    max-height: none !important;
    white-space: normal !important;
  }
}
/* --- Accordéons Mozza : Style Global --- */
.mozza-accordion {
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
}

.mozza-accordion details {
  border-bottom: 1px solid #823205;
  margin-bottom: 6px;
  padding-bottom: 6px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Desktop only : rétrécir les détails à 50% */
@media (min-width: 769px) {
  .mozza-accordion details {
    width: 50%;
  }
}

.mozza-accordion summary {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: normal !important;
  font-family: inherit !important;
  list-style: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.mozza-accordion summary::-webkit-details-marker {
  display: none;
}

.mozza-accordion summary .icon {
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
  transition: transform 0.2s ease;
  color: #823205;
}

.mozza-accordion details[open] summary .icon {
  transform: rotate(45deg); /* + devient × */
}

.mozza-accordion .content {
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 6px;
  padding-left: 28px;
  color: #444;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

/* --- Responsive Mobile --- */
@media (max-width: 768px) {
  .mozza-accordion {
    width: 100%;
    padding: 0 15px;
  }

  .mozza-accordion details {
    width: 100% !important;
    padding: 10px 0;
    border-bottom: 1px solid #823205;
  }

  .mozza-accordion summary {
    font-size: 16px !important;
    word-break: break-word;
  }

  .mozza-accordion .content {
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding: 10px 0 0 28px !important;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100% !important;
  }

  .mozza-accordion .content * {
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .mozza-accordion .content ul,
  .mozza-accordion .content li,
  .mozza-accordion .content p {
    margin-bottom: 10px;
  }
}
/* === SÉLECTEUR DE QUANTITÉ STYLE PANIER – VERSION FINALE === */
.wc-block-components-quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #8c7e03;
  border-radius: 999px;
  overflow: hidden;
  height: 42px; /* plus compact */
  background: transparent;
  margin-right: 12px; /* espace avec bouton */
}

/* Champ de quantité – "1" */
.wc-block-components-quantity-selector__input {
  width: 40px;
  height: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: none !important; /* suppression bordure */
  background: transparent !important;
  color: #8c7e03;
  padding: 0;
  margin: 0;
  box-shadow: none !important; /* supprime contour noir éventuel */
  outline: none !important;
  appearance: none;
  -moz-appearance: textfield;
  line-height: 1;
}

/* Boutons – et + */
.wc-block-components-quantity-selector__button {
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #8c7e03;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.wc-block-components-quantity-selector__button:hover:not(:disabled) {
  background: #8c7e03;
  color: white;
}

.wc-block-components-quantity-selector__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  form.cart {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  form.cart .quantity {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto;
  }

  form.cart .quantity input.qty {
    height: 48px !important;
    width: 60px !important;
    padding: 0 !important;
    font-size: 16px !important;
    text-align: center;
    border-radius: 8px !important;
    box-sizing: border-box;
  }

  .single_add_to_cart_button {
    flex: 1;
    padding: 12px 20px !important;
    font-size: 16px !important;
    border-radius: 100px !important;
    min-width: 140px;
    margin: 0 !important;
  }
}

/* === FICHE PRODUIT : bouton en dessous du sélecteur === */
.single-product form.cart {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligné à gauche */
  gap: 10px;
  margin-top: 10px;
}

/* Ajuste largeur pour éviter que le bouton ne soit trop long */
.single-product .single_add_to_cart_button {
  background-color: #8c7e03 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
	  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important; /* 400 = Regular/Normal */

  /* --- Centrage vertical propre --- */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 12px 28px 12px 28px !important; 
  line-height: 1 !important;
  height: auto !important;
  box-sizing: border-box !important;
}


form.cart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

form.cart .quantity {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
form.cart .single_add_to_cart_button {
  padding-top: 10px !important
  padding-bottom: 10px !important;
  line-height: 1.4;
}
form.cart .wc-block-components-quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #8c7e03;
  border-radius: 999px;
  overflow: hidden;
  height: 42px;
  background: transparent;
  margin-bottom: 8px;
}
/* Force bouton en-dessous du sélecteur sur les produits variables */
.single-product form.cart .variations_button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.single-product form.cart.variations_form .variations_button {
  display: flex;!important
  flex-direction: column;!important
  align-items: stretch;!important
  gap: 0px;
  
}

.wc-block-components-quantity-selector__button:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* Réduit l'écart entre le champ quantité et le bouton sur les produits variables */
.single-product form.variations_form .variations_button {
  gap: 2px !important; /* réduit l'espacement entre les éléments */
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
/* Réduction générale du sélecteur quantité */
.wc-block-components-quantity-selector {
  height: 34px !important;
  padding: 0 !important;
  border-radius: 999px;
  border: 1px solid #8c7e03;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

/* Champ "1" */
.wc-block-components-quantity-selector__input {
  width: 32px !important;
  height: 100% !important;
  font-size: 15px;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent;
  color: #8c7e03;
  text-align: center;
  line-height: 1;
}

/* Boutons - et + */
.wc-block-components-quantity-selector__button {
  width: 34px !important;
  height: 34px !important;
  font-size: 15px;
  font-weight: normal;
  background: transparent;
  color: #8c7e03;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

/* Focus propre */
.wc-block-components-quantity-selector__button:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* === Police globale : Barlow === */
body, button, input, select, textarea {
  font-family: 'Barlow', sans-serif !important;
}
h1, h2, h3, h4, h5, h6,
.woocommerce,
.woocommerce div.product,
.woocommerce-page,
.mozza-accordion summary,
.woocommerce-loop-product__title {
  font-family: 'Barlow', sans-serif !important;
}

/* Cache le bloc d’onglet de description WooCommerce */
.woocommerce-tabs {
  display: none !important;
}

/* ===========================
   MOZZA DOG SHOP — STYLE PRODUIT PERSONNALISÉ
   =========================== */

/* === BLOC DESCRIPTION CUSTOM === */
.mozza-custom-description {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 40px 20px;
  background-color: #823205;
  color: #f9f1e7;
  box-sizing: border-box;
  display: flex;
  align-items: center; /* ← centrage vertical des deux colonnes */
  gap: 40px;
  overflow-x: hidden;
}

.mozza-desc-image,
.mozza-desc-text {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mozza-desc-image {
  flex: 0 0 35%;
  max-width: 35%;
  padding: 10px;
  transform: translateX(-50px); /* animation gauche */

  /* Ajout pour centrage vertical image */
  display: flex;
  align-items: center;
  justify-content: center;
}

.mozza-desc-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.mozza-desc-text {
  flex: 1;
  max-width: 55%;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  transform: translateX(50px); /* animation droite */
  display: flex;
  flex-direction: column;
  justify-content: center; /* ← centre vertical même si texte court */
}


/* === Animation déclenchée === */
.mozza-visible .mozza-desc-image,
.mozza-visible .mozza-desc-text {
  opacity: 1;
  transform: translateX(0);
}

/* === Responsive bloc description === */
@media (max-width: 768px) {
  .mozza-custom-description {
    flex-direction: column;
    padding: 20px;
    margin-left: 0;
    width: 100%;
  }

  .mozza-desc-image,
  .mozza-desc-text {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 10px 0;
    transform: translateX(0); /* annule l'effet de slide sur mobile */
    opacity: 1; /* rend visible directement */
    text-align: left;
  }
}

/* ===========================
   VARIATIONS TRANSPARENTES (GETWOOPLUGINS)
   =========================== */

.variations .variable-items-wrapper .variable-item {
  background-color: transparent !important;
  border: 1px solid #8c7e03 !important;
  color: #8c7e03 !important;
  font-weight: 500;
  border-radius: 6px;
  padding: 6px 12px;
  box-shadow: none !important;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

.variations .variable-items-wrapper .variable-item.selected {
  background-color: #8c7e03 !important;
  color: #ffffff !important;
  border-color: #8c7e03 !important;
}

.variations .variable-items-wrapper .variable-item:hover {
  background-color: #8c7e03 !important;
  color: #ffffff !important;
  cursor: pointer;
}

/* On laisse le plugin utiliser ::after/::before si besoin */
.variations .variable-items-wrapper .variable-item::before,
.variations .variable-items-wrapper .variable-item::after {
  display: block;      /* ou laisse vide */
  content: "";         /* ou laisse vide */
}


/* ===========================
   FIX GLOBAL : ANTIDÉCALAGE MOBILE
   =========================== */

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.mozza-custom-description,
.single-product .product,
.woocommerce-product-gallery {
  max-width: 100%;
  width: 100%;
  margin: 0 auto !important;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .woocommerce-product-gallery,
  .single-product .product {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


/* === SUPPRIMER ZOOM SUR MOBILE === */
@media (max-width: 768px) {
  .woocommerce-product-gallery__wrapper img {
    pointer-events: none;
    touch-action: none;
  }

  .woocommerce-product-gallery__trigger {
    display: none !important;
  }
}
/* Bouton "M'inscrire à l'alerte" avec fond #141414 */
button.wc_bis_send_form {
  background-color: #141414 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 10px 24px !important;
  font-weight: normal;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

button.wc_bis_send_form:hover {
  background-color: #2b2b2b !important;
}

/* Espacement entre le prix et la phrase d’alerte */
.wc_bis_form_wrapper {
  display: block;
  margin-top: 10px !important;
}
.single-product .price {
  display: block;
  margin-bottom: 20px !important;
}

.wc_bis_message, 
.wc_bis_form_wrapper {
  display: block;
  margin-top: 10px !important;
}
/* Désactive la majuscule automatique sur le lien "Le Chat" */
.wp-block-navigation .no-cap {
  text-transform: none !important;
}
/* Couleur de fond du sous-menu */
.sub-menu {
  background-color: #8c7e03; 
}

/* Couleur du texte des liens dans le sous-menu */
.sub-menu a {
  color: #e6dcc8
}

/* Couleur au survol */
.sub-menu a:hover {
  background-color: #823205;
  color: #fff;
}.wp-block-navigation__submenu-container {
  background-color: #aa5a14 !important; /* Fond Terracotta */
  border-radius: 12px; /* Optionnel : arrondir les coins */
  padding: 10px 0; /* Optionnel : aérer le contenu */
}

/* Couleur du texte */
.wp-block-navigation__submenu-container a {
  color: #e6dcc8 !important;
}

/* Couleur au survol */
.wp-block-navigation__submenu-container a:hover {
  background-color: #823205 !important;
  color: #ffffff !important;
}
/* Empêche le soulignement en général */
.wp-block-navigation__submenu-container a {
  text-decoration: none;
}

/* Assure qu’il ne réapparaisse pas au survol */
.wp-block-navigation__submenu-container a:hover {
  text-decoration: none;
}
/* Liens de premier niveau dans le menu */
.wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
  text-decoration: none;
}

/* Empêche aussi le soulignement au survol */
.wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content:hover {
  text-decoration: none !important;
}
/* === Conteneur principal */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] {
  background: transparent;
  padding: 60px 0;
}

/* Titre */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] h2 {
  text-align: center;
  font-size: 22px;
  color: #8c5c3e;
  margin-bottom: 40px;
}

/* Grille de cartes */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] ul.wc-block-product-template {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}

/* Carte produit */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] li.wc-block-product {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 20px 30px; /* ← égal haut/bas/gauche/droite */
  background: #fffdf8;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 0 0 calc(50% - 20px);
  box-sizing: border-box;
}

/* Image produit */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] img {
  width: 140px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
	display: block;
  margin: 0 auto;
}

/* Titre */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wp-block-post-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #5a3b26 !important;
  margin-bottom: 10px;
}

/* Prix */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wc-block-grid__product-price {
  font-size: 16px;
  color: #a97458;
  font-weight: 500;
}

/* Cache bouton */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wp-block-button,
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .add_to_cart_button {
  display: none !important;
}

/* === Responsive mobile : 1 colonne et pile verticale */
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] ul.wc-block-product-template {
    flex-direction: column;
  }

  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] li.wc-block-product {
    flex-direction: column;
    flex: 1 1 100%;
    text-align: center;
  }

  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] img {
    width: 100%;
    max-width: 220px;
  }
}
/* Masquer les boutons "Choix des options" dans les ventes croisées du panier */
.wp-block-cart-cross-sells-product__product-add-to-cart {
  display: none !important;
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] li.wc-block-product {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wp-block-post-title,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wc-block-components-product-price {
    text-align: center !important;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  /* Structure produit en colonne */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] li.wc-block-product {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Conteneur du titre */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-block-column,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wp-block-stackable-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Titre */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] h3,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wp-block-post-title,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wc-block-components-product-title {
    text-align: center !important;
    width: 100% !important;
    margin: 10px 0 4px !important;
  }

  /* Prix */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wc-block-components-product-price {
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 8px !important;
  }
}
@media (max-width: 768px) {
  /* Colonne Stackable : forcer centrage complet */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-block-column,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-column-wrapper,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-block-content,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-inner-blocks {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Titre du produit */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wp-block-post-title {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 10px auto !important;
  }

  /* Prix */
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wc-block-components-product-price {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
}
@media (max-width: 768px) {
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-block-column .wp-block-post-title,
  .wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .stk-block-column .wc-block-components-product-price {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: block !important;
  }
}
/* === Style menu mobile Mozza : sous-catégories de même couleur que les catégories === */
@media (max-width: 768px) {
  .wp-block-navigation__responsive-container ul li a {
    color: #823205 !important; /* ou la couleur exacte de tes titres, à ajuster */
    opacity: 1 !important;     /* pour désactiver l'effet de transparence */
    font-weight: normal;       /* ou bold si tu veux unifier le style */
  }

}
@media (max-width: 768px) {
  .wp-block-navigation__responsive-container a {
    text-decoration: none !important;
  }
}

/* === STRUCTURE UNIFORME POUR TITRE, MARQUE, PRIX === */
.wp-block-post-title {
  font-size: 1.24rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  margin: 0.02rem 0 0rem 0 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  min-height: 2.6em !important;
  max-height: 2.6em !important;
}

@media screen and (max-width: 768px) {
  .wp-block-post-title {
    -webkit-line-clamp: 3 !important;
    min-height: 3.9em !important;
    max-height: 3.9em !important;
  }
}

.taxonomy-product_brand {
  font-style: normal !important;
  font-weight: 100 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  margin: 0rem 0 0.1rem 0 !important;
  display: block !important;
  font-size: 0.85rem !important;
  height: 1.4em !important;
  min-height: 1.4em !important;
}

.wp-block-woocommerce-product-price .wc-block-components-product-price {
  font-family: 'Barlow', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 200 !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-align: center !important;
  height: 1.4em !important;
  min-height: 1.4em !important;
  display: flex !important;
  justify-content: center !important;
  margin-top: 0.05rem !important;
}

.woocommerce-price-suffix {
  font-size: inherit !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
  position: static !important;
  font-weight: inherit !important;
  transform: none !important;
  display: inline !important;
}

/* === ALIGNEMENT BLOCS PRODUITS SIMILAIRES === */
.wp-block-woocommerce-product-collection[data-collection*="related"] .wp-block-post-title {
  text-align: center !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  max-height: 2.6em;
  min-height: 2.6em;
  margin: 0.15em auto 0.15em auto;
}

.wp-block-woocommerce-product-collection[data-collection*="related"] .wc-block-grid__product-price {
  text-align: center !important;
  justify-content: center !important;
  display: flex !important;
  margin-top: 0.15em;
  margin-left: auto;
  margin-right: auto;
}

/* === ALIGNEMENT BLOC PRODUITS CROISÉS (À associer avec...) === */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .wc-block-grid__product-price {
  margin-top: 0.2em !important;
  text-align: left !important;
  display: block !important;
  font-size: 1rem !important;
}

/* === FORM PANIER : SÉLECTEUR + BOUTON EMPILÉS === */
form.cart {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0px !important;
}

form.cart.variations_form .variations_button {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0px !important;
  margin-top: 0px !important;
}

form.cart .quantity {
  flex: 0 0 auto !important;
  height: 48px !important;
  display: flex;
  align-items: center;
  padding: 0 !important;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  margin-bottom: 0px !important;
}

form.cart .quantity .qty {
  width: 36px !important;
  height: 100% !important;
  border: none !important;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #8c7e03;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

form.cart .quantity button {
  background: transparent !important;
  border: none !important;
  font-size: 20px;
  color: #8c7e03;
  width: 48px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

form.cart .single_add_to_cart_button {
  flex: 1 1 auto !important;
  min-width: 140px;
  margin-top: 0 !important;
  height: 48px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px !important;
}

@media screen and (max-width: 768px) {
  form.cart {
    flex-direction: column !important;
    align-items: stretch !important;
  }
}
a.wc-block-cart__submit-button.contained {
  background-color: #8c7e03 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  padding: 12px 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1 !important;
  height: auto !important;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
}

a.wc-block-cart__submit-button.contained:hover {
  background-color: #6f6602 !important; /* couleur hover, à ajuster */
  color: #ffffff !important;
}
/* Uniformiser tous les boutons WooCommerce Account */
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content input[type="submit"],
.woocommerce-MyAccount-content a.button {
  background-color: #8c7e03!important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

/* -------------------- */
/* Suppression des fonds blancs */
/* -------------------- */

.woocommerce-MyAccount-content,
.woocommerce-MyAccount-content .woocommerce,
.woocommerce-MyAccount-content *,
.woocommerce-MyAccount-content table,
.woocommerce-MyAccount-content table th,
.woocommerce-MyAccount-content table td {
  background-color: transparent !important;
  box-shadow: none !important;
  border-color: #8c7e03 !important;
}

.wc-block-checkout *,
.wc-block-components-panel *,
.wc-block-components-checkout-step *,
.wc-block-components-order-summary *,
.wc-block-components-totals-item *,
.wc-block-components-panel__content *,
.wc-block-components-checkout-step__content *,
.wc-block-components-sidebar * {
  background-color: transparent !important;
  box-shadow: none !important;
  border-color: #8c7e03 !important;
}

/* Séparateurs express checkout */
.wc-block-express-checkout__divider {
  border-color: #8c7e03 !important;
}

/* Lignes horizontales checkout */
.wc-block-components-divider {
  border-color: #8c7e03 !important;
  background-color: #8c7e03 !important;
  height: 1px !important;
  opacity: 1 !important;
}

/* Badge quantité résumé de commande */
.wc-block-components-order-summary-item__quantity {
  background-color: #8c7e03 !important;
  color: #e8ddc9 !important;
  border-radius: 50% !important;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto;
}

/* Radios olive dans checkout */
.wc-block-components-radio-control__indicator {
  border: 2px solid #8c7e03 !important;
  background-color: transparent !important;
}

.wc-block-components-radio-control__input:checked + .wc-block-components-radio-control__indicator {
  background-color: #8c7e03 !important;
}
/* === BOUTON "AJOUTER AU PANIER" === */
.single_add_to_cart_button {
  background-color: #8c7e03 !important;
  color: #e8ddc9 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 700 !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.single_add_to_cart_button:hover {
  background-color: #5b602a !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* === BOUTON COMMANDER (CHECKOUT) === */
.wc-block-components-checkout-place-order-button {
  background-color: #8c7e03 !important;
  color: #e8ddc9 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.wc-block-components-checkout-place-order-button:hover {
  background-color: #5b602a !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* === BOUTON COUPON === */
.wc-block-components-totals-coupon__button {
  background-color: #8c7e03 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.wc-block-components-totals-coupon__button .wc-block-components-button__text {
  color: #e8ddc9 !important;
}

.wc-block-components-totals-coupon__button:hover {
  background-color: #5b602a !important;
}

.wc-block-components-totals-coupon__button:hover .wc-block-components-button__text {
  color: #ffffff !important;
}

/* === BOUTON GIFT CARD === */
.wc-gift-cards-form__button {
  background-color: #8c7e03 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.wc-gift-cards-form__button .wc-block-components-button__text {
  color: #e8ddc9 !important;
}

.wc-gift-cards-form__button:hover {
  background-color: #5b602a !important;
}

.wc-gift-cards-form__button:hover .wc-block-components-button__text {
  color: #ffffff !important;
}

/* Restaure le style du bouton Commander */

.wc-block-components-checkout-place-order-button {
  background-color: #8c7e03  !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

/*Gift Card*/
.wc-gift-cards-form__button {
  background-color: #8c7e03 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  box-shadow: none !important;
}

.wc-gift-cards-form__button .wc-block-components-button__text {
  color: #e8ddc9 !important;
}

.wc-gift-cards-form__button:hover {
  background-color: #5b602a !important;
}

.wc-gift-cards-form__button:hover .wc-block-components-button__text {
  color: #ffffff !important;
}

.wc-block-components-totals-coupon__button {
  background-color: #8c7e03 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
  box-shadow: none !important;
}

.wc-block-components-totals-coupon__button .wc-block-components-button__text {
  color: #e8ddc9 !important;
}

.wc-block-components-totals-coupon__button:hover {
  background-color: #5b602a !important;
}

.wc-block-components-totals-coupon__button:hover .wc-block-components-button__text {
  color: #ffffff !important;
}
/* Personnalisation du focus sur tous les champs WooCommerce Blocks */

.wc-block-components-text-input input:focus,
.wc-block-components-text-input input:focus-visible,
input[type="text"]:focus,
input[type="string"]:focus,
input[type="text"]:focus-visible,
input[type="string"]:focus-visible {
  outline: 2px solid #5b602a !important;
  box-shadow: none !important;
}
/* --- Uniformisation des boutons WooCommerce --- */

.single_add_to_cart_button,
.wc-block-cart__submit-button .wc-block-components-button__text,
.wc-gift-cards-form__button .wc-block-components-button__text,
.wc-block-components-totals-coupon__button .wc-block-components-button__text {
  font-weight: 700 !important;
}

/* Supprimer le zoom des images classiques au hover sans bloquer l'image secondaire */
.wc-block-grid__product:hover img:not(.mozza-hover-image),
.mozza-image-wrapper img:hover:not(.mozza-hover-image) {
  transform: none !important;
  transition: none !important;
}


/* --- STYLISATION PAGE MON COMPTE --- */

/* Style input type checkout pour la page Mon Compte */

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background-color: transparent !important;
  border: 1px solid #8c7e03 !important;
  padding: 12px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  font-family: inherit !important;
  color: #000 !important;
  box-shadow: none !important;
}

.woocommerce form .form-row input::placeholder,
.woocommerce form .form-row textarea::placeholder {
  color: #666 !important;
  opacity: 1 !important;
}

/* Placeholder */
.woocommerce form .form-row input::placeholder {
  color: #999;
}

/* Boutons identiques au site */
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  background-color: #8c7e03 !important;
  color: #e8ddc9 !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  
  transition: background-color 0.3s ease, color 0.3s ease !important;
  text-decoration: none !important;
  box-shadow: none !important;
  display: inline-block;
}

/* Hover */
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background-color: #5b602a !important;
  color: #fff !important;
}

/* Case à cocher (souvenir) */
.woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 10px;
}

.woocommerce-form__label-for-checkbox input {
  accent-color: #8c7e03;
  width: 20px;
  height: 20px;
}
.wc-block-components-express-payment {
  border: none !important;
  box-shadow: none !important;
}

/* Supprimer les bordures héritées du fieldset */
.wc-block-components-express-payment fieldset {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Supprimer les bordures imposées par Stripe (encore plus costaud) */
.wc-block-components-express-payment > div {
  border: none !important;
  box-shadow: none !important;
}
.mozza-marquee {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #aa5a14; /* fond olive */
  color: #e6dcc8;             /* texte beige */
  padding: 10px 0;
  overflow: hidden;
  z-index: 9999;
  font-weight: normal;
  font-size: 16px;
  font-family: sans-serif;
}

.mozza-marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.wc-block-components-notice-banner.is-success {
  background-color: transparent !important;
  color: #000000 !important; /* texte noir */
  border: 2px solid #5b602a !important; /* vert kaki */
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: normal !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Icône de succès (check) */
.wc-block-components-notice-banner.is-success svg {
  fill: #5b602a !important; /* vert kaki */
  margin-right: 12px;
}

/* Contenu interne */
.wc-block-components-notice-banner__content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Bouton "Voir le panier" transparent, texte kaki */
.wc-block-components-notice-banner__content a.button {
  background: transparent !important;
  border: none !important;
  color: #5b602a !important;
  font-weight: normal !important;
  padding: 0;
  text-decoration: underline;
  font-size: 15px;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.wc-block-components-notice-banner__content a.button:hover {
  text-decoration: none;
  background-color: #e6dcc8 !important; /* brun plus sombre au survol */
}
.wc-block-components-notice-banner.is-success:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* Fixe la largeur du bouton Ajouter au panier pour éviter qu'il s'étire */
.single-product .single_add_to_cart_button {
  width: auto !important;
  max-width: 200px;
}

/* Centrage si besoin */
.single-product .woocommerce-variation-add-to-cart,
.single-product form.cart {
  justify-content: flex-start !important;
  gap: 1rem; /* petit espace entre le bouton et le bouton alerte */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
/* Couleur beige e6dcc8 pour l'icône Instagram */
.wp-social-link-instagram svg path {
  fill: #e6dcc8 !important;
}

/* Supprimer l’arrière-plan vert si présent */
.wp-social-link-instagram {
  background: transparent !important;
  border: none !important;
}

.mozza-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.mozza-image-wrapper img:first-child {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  position: relative;
  transition: opacity 0.3s ease;
}

.mozza-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.mozza-image-wrapper:hover .mozza-hover-image {
  opacity: 1;
}

/* Fix hauteur et ratio de l'image wrapper */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .mozza-image-wrapper {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Image normale : reste en flux */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .mozza-image-wrapper img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Image de hover : en absolue */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .mozza-hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Hover actif */
.wp-block-woocommerce-product-collection[data-collection*="cross-sells"] .mozza-image-wrapper:hover .mozza-hover-image {
  opacity: 1;
}

/* wrapper centré */
.moz-loadmore-wrap{
  display:flex;
  justify-content:center;
  margin:32px 0 56px;
}

/* bouton olive + texte beige, plus joli & accessible */
#moz-loadmore{
  background:#8c7e03;           /* olive */
  color:#eadfc8;                /* beige */
  padding:14px 24px;
  font-size:18px;
  font-weight:700;
  border:0;
  border-radius:999px;
  letter-spacing:.02em;
  box-shadow:none;
  transition:transform .08s ease, filter .2s ease, opacity .2s ease;
}
#moz-loadmore:hover{ filter:brightness(.95); }
#moz-loadmore:active{ transform:translateY(1px); }

/* focus visible (accessibilité) */
#moz-loadmore:focus-visible{
  outline:3px solid #eadfc880;
  outline-offset:2px;
}

/* état disabled */
#moz-loadmore[disabled]{ opacity:.6; cursor:default; }

/* Tous les wrappers possibles des Blocks */
.wc-block-grid__product-image,
.wc-block-product__image,
.wc-block-components-product-image{
  position: relative;
  overflow: hidden;
}

.wc-block-grid__product-image a,
.wc-block-product__image a,
.wc-block-components-product-image a{
  display:block;
  position:relative;
}

/* base + calque hover */
.wc-block-grid__product-image img,
.wc-block-product__image img,
.wc-block-components-product-image img{
  display:block;
  width:100%;
  height:auto;
  transition: opacity .25s ease;
}

.wc-block-grid__product-image img.is-hover,
.wc-block-product__image img.is-hover,
.wc-block-components-product-image img.is-hover{
  position:absolute;
  inset:0;
  opacity:0;
}

/* montrer la 2e image au survol de la carte */
.wc-block-grid__product:hover .wc-block-grid__product-image img.is-hover,
.wc-block-product:hover .wc-block-product__image img.is-hover,
.wc-block-product:hover .wc-block-components-product-image img.is-hover,
.wc-block-grid__product:hover .wc-block-components-product-image img.is-hover{
  opacity:1;
}
@media (max-width: 768px) {
  .wc-block-components-product-button__button,
  .add_to_cart_button {
    white-space: nowrap !important;     /* Empêche le retour à la ligne */
    font-size: clamp(12px, 3.5vw, 16px) !important; /* Taille adaptative */
    line-height: 1.2 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}
@media (max-width: 768px){
  img.mozza-hover-image{ display:none !important; }
}
#wpacu-top-area,
#wpacu-logo-wrap .wpacu-version-sign,
#wpacu-quick-actions,
.wpacu-tabs {
  font-family: inherit !important;
}
.card-wrapper {
  border-bottom: 1px solid #E5E0D6;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
/* Masque le badge Pinterest “Enregistrer” */
a[data-pin-log], .PIN_Container, .pinit-overlay, .pinit-hover, .pinterest, .PIN_Repin {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* Mon Compte > Colonne Actions : empêcher le retour à la ligne sur le bouton */
.woocommerce-MyAccount-content
td.woocommerce-orders-table__cell-notification-actions
a.button.woocommerce-Button.wp-element-button {
  white-space: nowrap !important;   /* pas de saut de ligne */
  display: inline-block;            /* garde le comportement bouton */
  max-width: none !important;       /* évite une contrainte de largeur */
}

/* Si la cellule impose un width trop étroit, on lui donne de l'air */
.woocommerce-MyAccount-content
td.woocommerce-orders-table__cell-notification-actions {
  white-space: nowrap !important;   /* pas de coupure dans la cellule */
  width: auto !important;
  min-width: 120px;                 /* ajuste si besoin (140–160px) */
}

/* Sécurité: neutralise des règles qui tronqueraient le texte */
.woocommerce-MyAccount-content
td.woocommerce-orders-table__cell-notification-actions a.button {
  text-overflow: clip !important;
  overflow: visible !important;
}
/* Bouton MailPoet = style bouton du site */
input.mailpoet_submit[type="submit"] {
  background-color: #8c7e03 !important;
  color: #ffffff !important;
  border: none !important;              /* ignore l’inline style border-color */
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease !important;
}

/* Hover et focus cohérents */
input.mailpoet_submit[type="submit"]:hover {
  background-color: #5b602a !important;
  color: #ffffff !important;
}
input.mailpoet_submit[type="submit"]:focus-visible {
  outline: 3px solid #eadfc880;
  outline-offset: 2px;
}

/* État disabled (au cas où) */
input.mailpoet_submit[type="submit"]:disabled {
  opacity: .6;
  cursor: not-allowed;
}
/* Ne masque que les dates dans le formulaire d’abonnement */
.mailpoet_form time {
  display: none !important;
}
.mozza-accordion details .content{
width:100%;
overflow-x:auto;
-webkit-overflow-scrolling:touch;
}
/* Masquer le bouton "Me prévenir du retour en stock" sur les pages catégorie/boutique */
.archive.tax-product_cat .xoo-wl-action-btn.xoo-wl-open-form-btn.xoo-wl-btn-popup,
.post-type-archive.product .xoo-wl-action-btn.xoo-wl-open-form-btn.xoo-wl-btn-popup {
    display: none !important;
}
/* Style de base: rien */
.variable-item-span { text-decoration: none; }

/* Barrer les items "out" (la classe sera posée par le plugin/JS interne une fois inactifs) */
.variable-item.disabled .variable-item-span,
.variable-item[aria-disabled="true"] .variable-item-span {
  text-decoration: line-through !important;
  opacity: .45 !important;
}

