/* =========================================================
   CMU – Boutons FILTRER / TRIER PAR (boutique + catégories)
   ========================================================= */

/* Conteneur des boutons (desktop + tablette) */
body.archive.post-type-archive-product .cmu-shop-controls,
body.tax-product_cat .cmu-shop-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;          /* espace entre les 2 boutons (desktop) */
  padding: 1.6rem 0 1rem;
  width: 100%;
}

/* Ajustements mobile */
@media (max-width: 47.99em) {
  body.archive.post-type-archive-product .cmu-shop-controls,
  body.tax-product_cat .cmu-shop-controls {
    padding: 1.2rem 1.4rem 0.8rem;
    gap: 1.4rem;
  }
}

/* Base commune des boutons FILTRER / TRIER */
body.archive.post-type-archive-product .cmu-shop__btn .elementor-button,
body.tax-product_cat .cmu-shop__btn .elementor-button {
  font-family: "Montserrat", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;

  padding: 0.9rem 2.4rem !important;
  border-radius: 0 !important;       /* rectangulaire, comme sur staging */
  border-width: 0.2rem !important;
  border-style: solid !important;

  box-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  transition: all 0.18s ease !important;
}

/* Version FILTRER – cuivre plein */
body.archive.post-type-archive-product .cmu-shop__btn--filter .elementor-button,
body.tax-product_cat .cmu-shop__btn--filter .elementor-button {
  background-color: #C07C4A !important;
  border-color: #C07C4A !important;
  color: #FAF8F6 !important;
}

body.archive.post-type-archive-product .cmu-shop__btn--filter .elementor-button:hover,
body.tax-product_cat .cmu-shop__btn--filter .elementor-button:hover {
  background-color: #A06234 !important;
  border-color: #A06234 !important;
}

/* Version TRIER PAR – contour cuivre */
body.archive.post-type-archive-product .cmu-shop__btn--sort .elementor-button,
body.tax-product_cat .cmu-shop__btn--sort .elementor-button {
  background-color: transparent !important;
  border-color: #C07C4A !important;
  color: #C07C4A !important;
}

body.archive.post-type-archive-product .cmu-shop__btn--sort .elementor-button:hover,
body.tax-product_cat .cmu-shop__btn--sort .elementor-button:hover {
  background-color: #C07C4A !important;
  color: #FAF8F6 !important;
}