/* ============================================================
   ✨ BANDE TEMPLATE — PREMIUM BAND (Halo + Champagne)
   (version corrigée : même logique que .showcase-text)
============================================================ */

.premium-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  isolation: isolate;

  background:
    /* Halo clair top */
    radial-gradient(
      1200px 520px at 50% -12%,
      rgba(255,255,255,0.26),
      transparent 65%
    ),
    /* Halo doré bas */
    radial-gradient(
      900px 420px at 50% 112%,
      rgba(230,214,158,0.30),
      transparent 72%
    ),
    /* Halo rosé gauche */
    radial-gradient(
      circle at 18% 32%,
      rgba(255,218,226,0.20),
      transparent 60%
    ),
    /* Halo beige droite */
    radial-gradient(
      circle at 82% 72%,
      rgba(220,200,185,0.24),
      transparent 68%
    ),
    /* Fond brun nacré profond */
    linear-gradient(
      180deg,
      #3b2415 0%,
      #361c0d 55%,
      #3b2415 100%
    );
}

/* ❌ GOLD LINES SUPPRIMÉES
   (on retire complètement ::before et ::after)
*/
.premium-band::before,
.premium-band::after {
  content: none;
}
