.select-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
  flex-wrap: wrap; /* permet de repasser en colonne sur petit écran */
  animation: fadeInZoom 0.8s ease both;
  max-width: 900px;
}


.plans-container {
  background: #0a0a0a;
  color: #fff;
  padding: 20px 0 40px; /* 🔹 réduit aussi le padding global */
  text-align: center;
}
  @keyframes fadeInZoom {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
  }


.pack-image {
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  border: 2px solid #ff2aa8;
  box-shadow: 0 0 25px rgba(255, 42, 168, 0.3);
  object-fit: cover;
  flex: 1 1 360px;
}

.select-card {
  position: relative;
  flex: 1 1 360px;
  max-width: 420px;
  background: radial-gradient(circle at center, #1a1a1a 70%, #2a002a 100%);
  border: 2px solid #ff2aa8;
  border-radius: 16px;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 42, 168, 0.6);
}

  .select-card::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(90deg, #ff2aa8, #ff69b4, #ff2aa8);
    border-radius: 18px;
    z-index: -1;
    animation: borderFlow 6s linear infinite;
    background-size: 300% 300%;
    opacity: 0.6;
  }

  @keyframes borderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .select-card h1 {
    font-size: 1.8rem;
    color: #ff2aa8;
    margin-bottom: 15px;
  }

.plan-desc {
  color: #fff !important;
  font-size: 1.15rem !important;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

  .promo-input {
    width: 80%;
    max-width: 260px;
    padding: 10px;
    border: 1px solid #ff2aa8;
    border-radius: 8px;
    background: #2a2a2a;
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }


@media (max-width: 768px) {
  .select-wrapper {
    flex-direction: column; /* ✅ image au-dessus sur mobile */
    gap: 25px;
  }
}

.notice-small {
  font-size: 0.7rem;
  opacity: 0.85;
}