/* ==== STRUCTURE GÉNÉRALE ==== */

.pluush-section {
  max-width: 420px;
  margin: 0 auto;
}

/* ==== CONTENEUR ==== */

.pluush-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.3;
  background: #faf6f0;
  border-radius: 24px;
  overflow: hidden;
}

/* ==== ZONES ==== */

.pluush-zone {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  touch-action: auto; /* 🔥 IMPORTANT */
}

.pluush-zone-head {
  top: 0;
  height: 55%;
}

.pluush-zone-body {
  bottom: 0;
  height: 45%;
}

/* ==== TRACK ==== */

.pluush-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* ==== SLIDES ==== */

.pluush-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pluush-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* ==== FLÈCHES ==== */

.pluush-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
}

.pluush-arrow.left { left: 10px; }
.pluush-arrow.right { right: 10px; }

@media (max-width: 768px) {
  .pluush-arrow {
    display: none;
  }
}

/* ==== CTA ==== */

.pluush-cta {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
}

.pluush-price-val {
  font-size: 20px;
  font-weight: bold;
}

.pluush-add-btn {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #ec4899;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.pluush-section {
  position: relative;
  z-index: 50;
}

.pluush-cta {
  position: relative;
  z-index: 1000;
}

.pluush-add-btn {
  position: relative;
  z-index: 1001;
}
