/* ==== GLOBAL LAYOUT ==== */
body {
  background-color: #0e0017 !important;
  color: #ffffff;
}

/* ==== STOCK STATUS ==== */
.stock-status span {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 0.5rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 5px rgba(255,255,255,0.1);
  transition: background 0.3s, box-shadow 0.3s;
  position: relative;
  backdrop-filter: blur(4px);
}

.stock-status span::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.stock-status .text-danger {
  color: #ff4d6d !important;
}
.stock-status .text-danger::before {
  background-color: #ff4d6d !important;
}

.stock-status .text-success {
  color: #68ffb5 !important;
}
.stock-status .text-success::before {
  background-color: #68ffb5 !important;
}

.stock-status .text-warning {
  color: #ffc864 !important;
}
.stock-status .text-warning::before {
  background-color: #ffc864 !important;
}

/* ==== PRICES ==== */
.price {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

/* ==== MODAL BACKGROUND ==== */
.modal-content {
  background: url('https://i.postimg.cc/BvZvzsFz/Nigga-Box-12-3.png') center center / cover no-repeat,
              linear-gradient(145deg, #2d023a, #1b001f);
  border-radius: 1rem;
  border: none;
  color: white;
  box-shadow: 0 0 30px rgba(191, 64, 255, 0.5);
  backdrop-filter: blur(6px);
  background-blend-mode: overlay;
  animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==== MODAL TITLE ==== */
.modal-title {
  width: 100%;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #ff00cc, #3333ff);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: gradient-glow 3s infinite ease-in-out;
}

@keyframes gradient-glow {
  0% { box-shadow: 0 0 6px #ff00cc; }
  50% { box-shadow: 0 0 12px #3333ff; }
  100% { box-shadow: 0 0 6px #ff00cc; }
}

/* ==== MODAL PRODUCT CARD ==== */
.modal-product-card {
  background: linear-gradient(145deg, rgba(60, 0, 90, 0.2), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 12px rgba(160, 0, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 16px rgba(180, 50, 255, 0.6);
}

/* ==== MODAL CARD TITLE ==== */
.modal .product-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==== DISCORD BUTTON GLOW STYLE ==== */
.btn.btn-primary {
  background: linear-gradient(135deg, #9f00ff, #6a00ff);
  border: none;
  box-shadow: 0 0 10px rgba(191, 64, 255, 0.4);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 64, 255, 0.6);
}

/* ==== STOCK STATUS CLEAN PRO ==== */
.stock-status {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.stock-status span {
  display: inline-block;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 0 6px rgba(255,255,255,0.05);
}

.stock-status .text-success {
  color: #00d687;
  background: rgba(0, 214, 135, 0.15);
  border-color: rgba(0, 214, 135, 0.3);
  box-shadow: 0 0 6px rgba(0, 214, 135, 0.2);
}

.stock-status .text-warning {
  color: #3faaff;
  background: rgba(63, 170, 255, 0.15);
  border-color: rgba(63, 170, 255, 0.3);
  box-shadow: 0 0 6px rgba(63, 170, 255, 0.2);
}

.stock-status .text-danger {
  color: #ff4d6d;
  background: rgba(255, 77, 109, 0.15);
  border-color: rgba(255, 77, 109, 0.3);
  box-shadow: 0 0 6px rgba(255, 77, 109, 0.2);
}


/* ==== PRODUCT REFLECT EFFECT ==== */
.product-card-reflect {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.product-card-reflect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 2;
  filter: blur(1px);
  opacity: 0;
  transition: left 0.5s ease-out, opacity 0.2s ease;
  border-radius: inherit;
}

.product-card-reflect:hover::before {
  left: 120%;
  opacity: 1;
}
/* --- Hover Extra Info (Bloc sous la carte) --- */
.hover-extra-info {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
  margin-top: -4px;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;

  /* 🎨 Nouveau background glassmorphism */
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.6), rgba(10, 10, 20, 0.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.02),
    0 0 12px rgba(140, 80, 255, 0.15);
}

.product-card-reflect:hover .hover-extra-info {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}

/* --- Prix Glow / Gradient --- */
.price-glow {
  font-size: 1.1rem;
  color: transparent;
  background: linear-gradient(90deg, #7e47ff, #fffffe);
  -webkit-background-clip: text;
  background-clip: text;
  animation: glow-fade 4s ease-in-out infinite;
}

@keyframes glow-fade {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(255, 204, 51, 0));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(255, 51, 194, 0));
  }
}

/* --- Stock amélioré --- */
.group-stock {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #cfcfcf;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.03);
}

.group-stock.out-of-stock {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.08);
  border-color: rgba(255, 77, 77, 0.2);
  box-shadow: 0 0 6px rgba(255, 77, 77, 0.25);
}

.group-stock.infinite-stock {
  color: #6df9ff;
  background: rgba(109, 249, 255, 0.1);
  border-color: rgba(109, 249, 255, 0.25);
  box-shadow: 0 0 6px rgba(109, 249, 255, 0.2);
}

.group-stock.hidden-stock {
  color: #cccccc;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  font-style: italic;
}

/* --- Hover Lift effet doux sur la carte --- */
.product-card-reflect {
  transition: all 0.3s ease-in-out;
}
.product-card-reflect:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}
.group-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
}
/* Effet d’arrondis dynamiques */
.product-card-reflect {
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-radius 0.3s ease;
}
.product-card-reflect:hover {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.product-img {
  border-radius: inherit;
  transition: border-radius 0.3s ease;
}

/* Hover extra info */
.hover-extra-info {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
  margin-top: -4px;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.6), rgba(10, 10, 20, 0.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 0 12px rgba(140, 80, 255, 0.15);
}
.product-card-reflect:hover .hover-extra-info {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
}
/* fgehuguhgug */

.gradient-underline {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.gradient-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #a97aff, #ffffff, #a97aff);
  border-radius: 50px;
  transition: width 0.5s ease;
  box-shadow: 0 0 4px rgba(169, 122, 255, 0.5);
}

.product-card-reflect:hover .gradient-underline::after {
  width: 100%;
}


.product-card-reflect:hover .gradient-underline::after {
  transform: scaleX(1);
  opacity: 1;
}

.product-card-reflect:hover .gradient-underline {
  filter: drop-shadow(0 0 4px rgba(185, 131, 255, 0.4));
}



.product-card-reflect:hover .gradient-underline {
  filter: drop-shadow(0 0 5px rgba(162, 102, 255, 0.4));
}


/* Apparition fluide au hover */
.product-card-reflect:hover .gradient-underline::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Glow sur le texte au hover */
.product-card-reflect:hover .gradient-underline {
  filter: drop-shadow(0 0 5px rgba(144, 113, 255, 0.5));
}


/* Stock visuel */
.group-stock {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #cfcfcf;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.03);
}
.group-stock.out-of-stock {
  color: #ff4d4d;
  background: rgba(255, 77, 77, 0.08);
  border-color: rgba(255, 77, 77, 0.2);
  box-shadow: 0 0 6px rgba(255, 77, 77, 0.25);
}
.group-stock.infinite-stock {
  color: #6df9ff;
  background: rgba(109, 249, 255, 0.1);
  border-color: rgba(109, 249, 255, 0.25);
  box-shadow: 0 0 6px rgba(109, 249, 255, 0.2);
}
.group-stock.hidden-stock {
  color: #cccccc;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  font-style: italic;
}
/* Valeurs par défaut (repos) */
.product-card-reflect {
  border-radius: 12px;
  transition: border-radius 0.3s ease;
  overflow: hidden;
}

/* Hover : on accentue uniquement les coins du bas */
.product-card-reflect:hover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.product-card-reflect img {
  border-radius: 12px;
  transition: border-radius 0.3s ease;
}

.product-card-reflect:hover img {
  border-radius: 0px;
}
/* Hover : on accentue uniquement les coins du bas */
.product-card-reflect:hover {
  box-shadow:
    0 0 15px rgba(140, 80, 255, 0.2),
    0 0 30px rgba(140, 80, 255, 0.1),
    0 0 50px rgba(140, 80, 255, 0.05);
}
/* UIHZEFUIHUIGUIOGHEZ */
/* --- Soulignement subtil et doux pour h1 --- */
h1 {
  position: relative;
  display: inline-block;
}

h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #c4b5fd); /* violet clair doux */
  border-radius: 2px;
  opacity: 0.6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

h1:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* --- Sous-titre (p italique) --- */
p.italic {
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* --- Soulignement doux sous h2, moins large --- */
h2 {
  position: relative;
  padding-bottom: 5px;
  cursor: default;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #a78bfa; /* violet clair */
  border-radius: 2px;
  opacity: 0.7;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}

h2:hover::after {
  background-color: #8b5cf6; /* violet un peu plus foncé au hover */
  opacity: 1;
}
.testimonial {
  width: 280px;
  background: rgba(90, 79, 255, 0.85); /* violet semi-transparent */
  color: #fff8d7;
  border-radius: 16px;
  padding: 24px 24px 26px 24px;
  margin: 16px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  position: relative;
}
.testimonial {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer; /* pour montrer que c'est interactif */
}

.testimonial:hover,
.testimonial:focus {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(131, 111, 255, 0.5);
  background: rgba(131, 111, 255, 0.25);
  border-color: #6a53ff;
  outline: none;
}
.variant-card {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.variant-card:hover {
  background: rgba(124, 58, 237, 0.2);
  transform: scale(1.02);
}
.variant-card.active {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.3);
}
.price {
  font-size: 1.1rem;
}
.old-price {
  font-size: 0.9rem;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.group-stock {
  margin-left: auto; /* pousse vers la droite */
}
/* Glow moderne et discret */
.glow-red {
  box-shadow: 0 0 6px rgba(255, 80, 80, 0.6), 0 0 12px rgba(255, 80, 80, 0.4);
}
.glow-green {
  box-shadow: 0 0 6px rgba(100, 220, 100, 0.6), 0 0 12px rgba(100, 220, 100, 0.4);
}

/* Badge premium, pill, glass et gradient - TOP LEFT */
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2), 0 1px 3px rgba(0,0,0,0.3);
}

/* Badge OUT OF STOCK - red with red glow */
.badge-out {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.85), rgba(192, 57, 43, 0.85));
  box-shadow: 
    inset 0 0 2px rgba(255,255,255,0.2), 
    0 1px 3px rgba(0,0,0,0.3),
    0 0 15px rgba(231, 76, 60, 0.7);  /* Red glow effect */
}

/* Badge IN STOCK - green with green glow + STRONG pulse animation */
.badge-in {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.85), rgba(24, 106, 59, 0.85));
  animation: pulse-green 2s ease-in-out infinite;  /* Faster pulse - 2s instead of 2.5s */
}

/* Enhanced pulse animation for IN STOCK badge */
@keyframes pulse-green {
  0%, 100% {
    box-shadow: 
      inset 0 0 2px rgba(255,255,255,0.2), 
      0 1px 3px rgba(0,0,0,0.3),
      0 0 12px rgba(39, 174, 96, 0.5);  /* Weaker glow at rest */
    transform: scale(1);
  }
  50% {
    box-shadow: 
      inset 0 0 4px rgba(255,255,255,0.4), 
      0 2px 6px rgba(0,0,0,0.4),
      0 0 35px rgba(39, 174, 96, 1),      /* Much stronger glow */
      0 0 50px rgba(39, 174, 96, 0.6);    /* Extra outer glow */
    transform: scale(1.05);  /* Slight size increase */
  }
}

/* Image désaturée si stock=0 */
.grayscale-img img {
  filter: grayscale(100%);
}
.discord-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-top: 25px;
  transition: transform 0.4s ease;
}

.discord-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(114,137,218,0.25), rgba(114,137,218,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(114,137,218,0.7), 0 0 30px rgba(114,137,218,0.2);
  transition: transform 0.4s, box-shadow 0.4s;
}

.discord-button img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(114,137,218,0.8));
  transition: filter 0.4s;
}

.discord-link span {
  margin-top: 10px;
  font-size: 1em;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.discord-link:hover .discord-button {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(114,137,218,1), 0 0 40px rgba(114,137,218,0.4);
}

.discord-link:hover img {
  filter: drop-shadow(0 0 10px rgba(114,137,218,1));
}
.why-choose-hero {
  margin-top: 100px; /* ou plus, par ex. 150px */
  padding: 80px 20px;
}
.trust-badge {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #800080, #ff00ff);
  border-radius: 30px;
  color: white;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 15px;  /* réduire l’écart avec le sous-titre */
  box-shadow: 0 0 20px #800080;
}

.subtitle {
  font-size: 1.3em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 45px;
  display: inline-block;
  position: relative;
}
/* Container */
.why-choose-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 160px 20px 80px; /* plus bas sur la page */
}

/* Main content block */
.why-choose-hero .content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid;
  border-image: linear-gradient(45deg, #800080, #ff00ff) 1;
  border-radius: 25px;
  padding: 50px;
  max-width: 1100px;
  text-align: center;
  box-shadow: 0 0 40px rgba(128,0,128,0.4);
  transition: box-shadow 0.5s;
}

/* Title badge */
.trust-badge {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #800080, #ff00ff);
  border-radius: 30px;
  color: white;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 15px;
  box-shadow: 0 0 20px #800080;
}

/* Subtitle */
.subtitle {
  font-size: 1.3em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 45px;
  display: inline-block;
  position: relative;
  cursor: default;
}

/* Hover underline */
.subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #800080, #ff00ff);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.subtitle:hover::after {
  transform: scaleX(1);
}

/* Features grid */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-bottom: 30px;
}

/* Single feature card */
.feature {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 25px;
  width: 260px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.feature:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 25px rgba(255,0,255,0.6);
}

/* Icon in feature */
.icon {
  font-size: 2.2em;
  color: #ff00ff;
  margin-bottom: 12px;
  animation: pulse 2.5s infinite;
}

/* Title text */
.title {
  font-size: 1.15em;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Description text */
.feature p {
  font-size: 0.96em;
  color: rgba(255,255,255,0.88);
  line-height: 1.5em;
}

/* Discord link block */
.discord-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-top: 25px;
  transition: transform 0.4s ease;
}

.discord-link img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(114, 137, 218, 0.15);
  padding: 10px;
  box-shadow: 0 0 18px rgba(114, 137, 218, 0.8);
  transition: transform 0.4s, box-shadow 0.4s;
}

.discord-link span {
  margin-top: 10px;
  font-size: 1em;
  color: rgba(255,255,255,0.9);
}

.discord-link:hover img {
  transform: scale(1.15);
  box-shadow: 0 0 28px rgba(114, 137, 218, 1);
}

.discord-link:hover {
  transform: translateY(-5px);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); text-shadow: 0 0 5px #800080; }
  50% { transform: scale(1.1); text-shadow: 0 0 15px #ff00ff; }
  100% { transform: scale(1); text-shadow: 0 0 5px #800080; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* Classes to trigger animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: pulse 2.5s infinite;
}

.animate-tilt:hover {
  transform: rotateX(2deg) rotateY(2deg) scale(1.05);
}
.testimonial {
  width: 280px;
  background: #2e1a47; /* violet foncé */
  color: white;
  border-radius: 10px;
  padding: 20px;
  margin: 16px auto;
  font-family: sans-serif;
  box-shadow: none !important;
  transition: none !important;
  transform: none !important;
  cursor: default !important;
}

.testimonial:hover {
  background: #2e1a47 !important;
  box-shadow: none !important;
  transform: none !important;
}
.product-card {
  position: relative;
  width: 320px;
  height: 490px;
  flex-shrink: 0;
  border-radius: 20px;
  /* plus de overflow hidden */
  overflow: visible; 
  background-image: url('https://i.postimg.cc/fLbBjgSF/Nouveau-projet-11.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* le masque reste dans le card */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

/* image libre, pas coupée */
.overlay-image {
  position: absolute;
  bottom: 70px;
  left: 50%;
  width: 120%;
  height: auto;
  transform: translateX(-50%) scale(1.7);
  object-fit: contain;
  z-index: 2;

  filter: saturate(0) contrast(1.2) drop-shadow(0 0 18px rgba(0,0,0,0.8));
  transition: filter 0.35s ease, transform 0.25s ease;
}

.product-card:hover .overlay-image {
  filter: saturate(1) contrast(1.1) drop-shadow(0 0 20px rgba(255, 105, 105, 0.6));
  transform: translateX(-50%) scale(1.6);
}
.variants .description {
  position: relative;
  padding: 15px;
  color: white; /* texte blanc pour contraste */
  z-index: 1;
}

/* Fond noir flou */
.variants .description::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* noir semi-transparent */
  filter: blur(6px); /* flou */
  z-index: -1; /* derrière le texte */
  border-radius: 8px;
}

/* Soulignement violet sous chaque phrase */
.variants .description p {
  border-bottom: 2px solid violet; /* violet */
  padding-bottom: 4px;
  margin-bottom: 10px;
  display: inline-block; /* ligne uniquement sous le texte */
}
.variant-title, /* si la classe est variant-title */
.variant-title h2, /* ou si c’est un h2 dedans */
.variants .title, /* ta classe initiale */
.variant-header {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #9b59b6 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 12px !important;
  border-bottom: 3px solid #9b59b6 !important;
  padding-bottom: 6px !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}