/* ==============================
   Bouton “Filtrer” (archives shop + cat)
   ============================== */

body.woocommerce-shop .filter-toggle,
body.post-type-archive-product .filter-toggle,
body.tax-product_cat .filter-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--primary);
  border-left-width: 4px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.25;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: color .25s ease, border-color .25s ease, transform .1s ease;
}

/* Supprimer pseudo-soulignage thème */
.filter-toggle span:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: unset !Important;
}

/* Film de remplissage */
body.woocommerce-shop .filter-toggle::before,
body.post-type-archive-product .filter-toggle::before,
body.tax-product_cat .filter-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
  z-index: 0;
}

/* Texte au-dessus */
body.woocommerce-shop .filter-toggle > *,
body.post-type-archive-product .filter-toggle > *,
body.tax-product_cat .filter-toggle > * { position: relative; z-index: 1; }

/* États */
body.woocommerce-shop .filter-toggle:hover,
body.post-type-archive-product .filter-toggle:hover,
body.tax-product_cat .filter-toggle:hover,
body.woocommerce-shop .filter-toggle:focus-visible,
body.post-type-archive-product .filter-toggle:focus-visible,
body.tax-product_cat .filter-toggle:focus-visible {
  color: #fff;
  border-color: var(--primary);
  outline: none;
}
body.woocommerce-shop .filter-toggle:hover::before,
body.post-type-archive-product .filter-toggle:hover::before,
body.tax-product_cat .filter-toggle:hover::before,
body.woocommerce-shop .filter-toggle:focus-visible::before,
body.post-type-archive-product .filter-toggle:focus-visible::before,
body.tax-product_cat .filter-toggle:focus-visible::before { transform: scaleX(1); }

body.woocommerce-shop .filter-toggle:active,
body.post-type-archive-product .filter-toggle:active,
body.tax-product_cat .filter-toggle:active { transform: translateY(1px); }

body.woocommerce-shop .filter-toggle.is-active,
body.post-type-archive-product .filter-toggle.is-active,
body.tax-product_cat .filter-toggle.is-active { color:#fff; }
body.woocommerce-shop .filter-toggle.is-active::before,
body.post-type-archive-product .filter-toggle.is-active::before,
body.tax-product_cat .filter-toggle.is-active::before { transform: scaleX(1); }

body.woocommerce-shop .filter-toggle i,
body.woocommerce-shop .filter-toggle svg { width:16px; height:16px; flex:0 0 auto; }

@media (max-width: 480px){
  body.woocommerce-shop .filter-toggle { padding: 8px 12px; }
}

/* Boutons dans la sidebar (état choisi/hover) */
.bodoni_widget_layered_nav ul.woocommerce-widget-layered-nav-list li.chosen .bodoni-button-type,
.bodoni_widget_layered_nav ul.woocommerce-widget-layered-nav-list li .bodoni-button-type:hover {
  color: #ffffff;
  text-decoration: none;
}
