.product-card-stable {
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.pc-image {
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
}

.pc-title {
  font-weight: 700;
  font-size: 1rem;
}

.pc-desc {
  font-size: 0.95rem;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  color: #555;
}

.pc-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.pc-actions .btn {
  flex: 1;
}
.promo-badge {
  animation:
    promoEnter .4s ease-out,
    promoPulse 1.6s infinite ease-in-out .4s;
}

@keyframes promoEnter {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .promo-badge {
    animation-duration: 2s;
  }
}
@keyframes promoFlash {
  0%, 100% { background: #e53935; }
  50% { background: #ff1744; }
}

.promo-badge {
  animation:
    promoPulse 1.6s infinite,
    promoFlash 2.5s infinite;
}
/* ===============================
   📱 ANIMATION IMAGE PRODUIT (MOBILE)
   =============================== */

.product-img {
  transition: transform .35s ease, opacity .35s ease;
  will-change: transform, opacity;
}

.product-img.anim-next {
  transform: translateX(-20px);
  opacity: 0;
}

.product-img.anim-prev {
  transform: translateX(20px);
  opacity: 0;
}
/* ===============================
   📱 Indicateur multi-images produit (Android)
   =============================== */

.pc-image {
  position: relative;
  overflow: visible !important; /* 🔥 CRUCIAL */
}

/* =====================================
   ● INDICATEURS IMAGES PRODUIT (MOBILE)
   ===================================== */

.pc-image {
  position: relative;
}

/* conteneur points */
.pc-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

/* point */
.pc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

/* point actif */
.pc-dot.active {
  background: #292828;
  transform: scale(1.2);
}
/* =====================================================
   ● INDICATEURS SLIDE PRODUIT – FIX FINAL
   ===================================================== */

.pc-image {
  position: relative;
}

/* conteneur */
.pc-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

/* point inactif */
.pc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(3, 132, 20, 0.4);
  transition: all 0.3s ease;
}

/* ✅ POINT ACTIF (TRÈS VISIBLE) */
.pc-dot.active {
  background: #3e43e8 !important;
  box-shadow: 0 0 6px rgba(94, 91, 91, 0.9);
  transform: scale(1.4);
}
