.product-media .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* --- Protection anti-vol images --- */
img {
    pointer-events: none;       /* empêche clic, drag */
    user-select: none;          /* empêche sélection */
    -webkit-user-drag: none;    /* empêche glissé-déposé */
    -webkit-touch-callout: none; /* empêche long press sur mobile */
}
.site-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 6px 0;
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(6px);
    color: #dedede;
    font-size: 12px;
    z-index: 9999;
}

/* ======================================
   LOCK SCROLL PAGE QUAND CHECKOUT OUVERT
   ====================================== */

body.checkout-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none; /* mobile */
}

/* ======================================
   VERROUILLAGE SCROLL — CHECKOUT ACTIF
   ====================================== */

html.checkout-open,
body.checkout-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}
