/* =============================================================
   Salott-IT — V4  Boutique & Fiche produit (finition additive)
   N'enlève rien, ne modifie aucun HTML. Chargé sur boutique + produit.
   ============================================================= */

/* 1) Badge promo : pastille premium avec reflet animé (au lieu du badge plat) */
.product-img-wrap .badge-discount {
  background: linear-gradient(135deg, var(--sale-red, #E63946), #b91c1c) !important;
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 4px 12px rgba(230,57,70,.35);
  overflow: hidden;
}
.product-img-wrap .badge-discount::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
  animation: shopShine 3.2s ease-in-out infinite;
}
@keyframes shopShine { 0% { left: -120%; } 55%, 100% { left: 160%; } }

/* 2) Badge "stock faible" injecté par shop-ui.js sur les cartes boutique
      (utilise la donnée réelle data-stock) */
.product-img-wrap .stock-urgency {
  position: absolute; left: 8px; bottom: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(245,158,11,.96); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 9px; border-radius: 20px;
  box-shadow: 0 3px 10px rgba(245,158,11,.4);
  animation: stockPulse 1.8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.product-img-wrap .stock-urgency i { font-size: .7rem; }
@keyframes stockPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* 3) Fiche produit : zoom doux de l'image principale au survol (desktop) */
@media (hover: hover) and (min-width: 769px) {
  .product-gallery .main-image-wrap { overflow: hidden; }
  .product-gallery .main-image-wrap img { transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
  .product-gallery .main-image-wrap:hover img { transform: scale(1.18); }
}

/* 4) Fiche produit : CTA "Ajouter au panier" qui reste visible au scroll (mobile) */
@media (max-width: 768px) {
  .product-form .btn-panier {
    position: sticky;
    bottom: 12px;
    z-index: 20;
    box-shadow: 0 8px 24px rgba(255,107,53,.4);
  }
}

/* 5) Économie produit : mise en avant en pastille verte (dopamine "bonne affaire") */
.product-price-section .price-savings {
  display: inline-block;
  background: rgba(16,185,129,.12);
  color: #0f7a4f;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .product-img-wrap .badge-discount::after,
  .product-img-wrap .stock-urgency { animation: none !important; }
  .product-gallery .main-image-wrap:hover img { transform: none !important; }
}
