/* ==========================================================
   Cards system (Woo FSE) — v2 simplifiée
   - TERM wrapper : clic étendu ONLY, pas d'effet visuel
   - PRODUCT cards : hover/overlay/zoom uniquement sur elles
   ========================================================== */

/* Base */
.card{
  position: relative;
}

/* Cursor */
.card.is-clickable{ cursor: pointer; }

/* ==========================================================
   TERM card : AUCUN EFFET VISUEL
   ========================================================== */
.card--term{
  /* pas de transition/hover global */
  transition: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Désactive complètement un éventuel overlay sur term */
.card--term::before{
  content: none !important;
}

/* ==========================================================
   PRODUCT cards : effets premium (uniquement)
   ========================================================== */

.card--product{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.card--product:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* Bordure un peu plus contrastée au hover */
.card--product.has-border-color:hover{
  border-color: rgba(0,0,0,.14) !important;
}

/* Overlay global unifié PRODUCT (au-dessus de tout, très léger) */
.card--product::before{
  content:"";
  position:absolute;
  inset:0;
  background: color-mix(
    in srgb,
    var(--wp--preset--color--main) 6%,
    transparent
  );
  opacity:0;
  transition: opacity .18s ease;
  pointer-events:none;
  z-index: 10;
}
.card--product:hover::before{ opacity:1; }

/* Neutralise tout overlay image potentiels (anciens essais) */
.card .wp-block-uagb-image__figure::after,
.card figure::after{
  content: none !important;
  opacity: 0 !important;
}

/* Zoom image PRODUCT */
.card--product .wp-block-uagb-image__figure,
.card--product figure{
  overflow: hidden;
}

.card--product img{
  transition: transform .25s ease;
  transform-origin: center;
}

.card--product:hover img{
  transform: scale(1.05);
}

/* ==========================================================
   Cover link : UNIQUEMENT PRODUITS
   ========================================================== */
.card__cover-link{
  position:absolute;
  inset:0;
  display:block;
  z-index: 20;
}

.card--term .card__cover-link{
  display:none;
}

/* Interactifs au-dessus */
.card a,
.card button,
.card .wp-block-button__link{
  position: relative;
  z-index: 30;
}
