/* ==========================
   RESET
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background: url('assets/banniere.png') no-repeat center center/cover;
    background-attachment: fixed;
    margin: 0;
}

/* ==========================
   HEADER & NAVIGATION
========================== */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 22px;
    transition: transform 0.3s ease;
}
.logo:hover { transform: scale(1.05); }
.logo img { height: 40px; margin-right: 8px; }

.white { color: white; }
.blue { color: #d300f1; }

nav a {
    position: relative;
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 700;
    padding: 8px 0;
    transition: color 0.3s ease;
}
nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #d300f1;
    border-radius: 2px;
    transition: width 0.4s ease;
}
nav a:hover::after { width: 100%; }
nav a:hover { color: #d300f1; }

/* ==========================
   SECTIONS
========================== */
section { padding: 40px; }

/* ==========================
   HERO
========================== */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}
.hero .content { max-width: 600px; }
.hero h1 { font-size: 48px; margin-bottom: 20px; }
.hero h1 span { color: #d300f1; }
.hero p { font-size: 18px; margin-bottom: 30px; line-height: 1.6; }

/* ==========================
   BOUTONS
========================== */
button, .btn, .btn-discord, .nav-btn, .btn-play {
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}
button, .btn, .btn-discord, .nav-btn { color: #d300f1; border: 2px solid #d300f1; }
button span, .btn span, .btn-discord span, .nav-btn span, .btn-play span { position: relative; z-index: 1; }

.btn-play {
    padding: 12px 30px;
    color: #fff;
    border: 2px solid #d300f1;
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
}
.btn-play::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgb(211, 0, 241, 0.24);
    transform: rotate(45deg) scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}
.btn-play:hover::before { transform: rotate(45deg) scale(1); }
.btn-play:hover { 
    color: #d300f1;
    border-color: #d300f1;
    box-shadow: 0 0 18px #d300f1, 0 0 25px #650072 inset;
    transform: scale(1.05);
}

/* ==========================
   ENTREPRISES
========================== */
.entreprises-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.entreprises-section h1 {
    display: inline-block;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 32px;
}
.entreprises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}
.card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #00000096;
    text-align: left;
    transition: transform 0.3s;
}
.card:hover { transform: scale(1.03); box-shadow: 0 0 15px #00000096; }
.card img { width: 100%; height: 150px; object-fit: cover; }
.card .info { padding: 15px; }
.dispo { display: inline-block; padding: 5px 10px; border-radius: 5px; font-size: 12px; margin-bottom: 10px; }
.dispo-ok { background: #00ff99; color: black; }
.dispo-no { background: #ff3333; color: white; }

.entreprises-header h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
}
.entreprises-header h1 img {
  height: 1.4em;
  width: auto;
}

/* ==========================
   PANNEAU SERVEUR
========================== */
.server-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    width: 240px;
    font-family: 'Montserrat', sans-serif;
}
.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: gray;
}
.status-dot.online { background-color: #4CAF50; animation: blink 2s infinite; }
.status-dot.offline { background-color: red; }
@keyframes blink { 0%,50%,100% { opacity: 1; } 25%,75% { opacity: 0; } }
.server-status { display: flex; align-items: center; font-weight: bold; margin-bottom: 8px; }
.player-count { font-size: 14px; margin-bottom: 12px; }

/* ==========================
   MUSIQUE
========================== */
.music-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
}
#volume-icon { font-size: 28px; cursor: pointer; transition: transform 0.2s; }
#volume-icon:hover { transform: scale(1.2); }
#volume-slider {
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.music-control:hover #volume-slider { opacity: 1; width: 120px; }
#volume-slider::-webkit-slider-thumb,
#volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d300f1;
    cursor: pointer;
}

/* ==========================
   BARRE DE RECHERCHE
========================== */
.entreprises-header {
    display: flex;
    flex-direction: column; /* Pour mettre le titre au-dessus et la barre en dessous */
    align-items: center; /* Centre horizontalement */
    text-align: center;
    gap: 15px; /* espace entre le h1 et la barre */
}

.search-bar {
    width: 100%;
    display: flex;
    justify-content: center; /* Centre l'input */
}

.search-bar input {
    width: 300px; /* largeur de la barre */
    max-width: 80%; /* responsive */
    padding: 10px 40px 10px 15px;
    border-radius: 25px;
    border: 1px solid #ffffff;
    outline: none;
    font-size: 16px;
    color: #ffffff;
    background-color: #000000;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    border-color: #d300f1;
    box-shadow: 0 0 8px rgba(211, 0, 241, 0.4);
}

.search-bar .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 18px;
    color: #750085;
}

/* ==========================
   MENUS (Desktop & Mobile)
========================== */
.mobile-only-menu { display: none; }

@media (max-width: 600px) {
  .desktop-menu { display: none; }
  .mobile-only-menu {
    display: flex; 
    justify-content: center;
    gap: 10px;
  }
  .mobile-only-menu a {
    padding: 8px 12px;
    background: #750085;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 10px;
  }
  .mobile-only-menu a:hover { background: #750085; }
  .hero .btn-discord {
    display: block;
    margin: 20px auto; 
    text-align: center;
    max-width: 200px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
  }
}
/* ==========================
   MEDIA QUERIES
========================== */
@media (max-width: 1024px) {
    body { background: url('assets/banniere-mobile.png') no-repeat center center/cover; background-attachment: scroll; }
    header { padding: 10px 20px; flex-direction: column; align-items: flex-start; }
    nav a { margin-left: 10px; padding: 6px 10px; font-size: 14px; }
    .hero h1 { font-size: 36px; } .hero p { font-size: 16px; }
    section { padding: 20px; }
    .entreprises-section h1 { font-size: 28px; padding: 8px 16px; }
    .card img { height: 120px; }
    .server-panel { width: 200px; padding: 12px 16px; bottom: 15px; right: 10px; }
    .btn-play, .btn, .btn-discord { padding: 10px 16px; font-size: 14px; }
}
@media (max-width: 600px) {
    header { flex-direction: column; align-items: center; }
    nav a { margin-left: 0; margin-top: 8px; }
    .hero h1 { font-size: 28px; text-align: center; }
    .hero p { font-size: 14px; text-align: center; }
    .entreprises-grid { grid-template-columns: 1fr; gap: 15px; }
    .server-panel { width: 180px; padding: 10px 12px; bottom: 10px; right: 10px; font-size: 12px; }
    .btn-play, .btn, .btn-discord { padding: 8px 12px; font-size: 12px; }
    .card img { height: 100px; }
}
    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    /* Fenêtre popup */
    .popup {
      background: #00000096;
      color: white;
      padding: 35px;
      border-radius: 15px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.562);
      animation: fadeIn 0.3s ease;
    }

    .popup h2 {
      margin-bottom: 20px;
      font-size: 20px;
      color: #d300f1;
    }

    .popup p {
      margin-bottom: 25px;
      font-size: 16px;
    }

    /* Boutons */
    .popup-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .popup button {
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.2s;
    }

    .popup .btn-yes {
      background: #4dff82bd;
      color: white;
    }

    .popup .btn-yes:hover {
      background: #1ae847a6;
    }

    .popup .btn-no {
      background: #ff4d4da4;
      color: rgb(255, 255, 255);
    }

    .popup .btn-no:hover {
      background: #cc0000a8;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
/* ==========================
   VARIABLES
========================== */
:root {
  --violet: #d300f1;
  --bg-dark: rgba(0, 0, 0, 0.65);
  --bg-card: rgba(0, 0, 0, 0.55);
  --border-glow: rgba(211, 0, 241, 0.5);
}

/* ==========================
   SHOP GRID
========================== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ==========================
   SHOP ITEM CARD
========================== */
.shop-item {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid transparent;
  backdrop-filter: blur(6px);

  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* juste commencer en haut */
  align-items: stretch; 
}


.shop-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(211,0,241,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.shop-item:hover {
  transform: scale(1.04);
  box-shadow: 0 0 25px var(--border-glow);
  border-color: var(--violet);
}


.shop-item:hover::before {
  opacity: 1;
}
/* ==========================
   ITEM IMAGE (EMOJI / ICON)
========================== */
.shop-item-image {
  font-size: 48px;
  text-align: center;
  margin-bottom: 15px;
}

/* ==========================
   ITEM CONTENT
========================== */
.shop-item-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
  color: white;
}

.shop-item-description {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* ==========================
   PRICE
========================== */
.shop-item-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 15px;
}

.shop-item-price-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--violet);
}

.shop-item-price-currency {
  font-size: 14px;
  opacity: 0.7;
}

/* ==========================
   FEATURES
========================== */
.shop-item-features h4 {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--violet);
}
.shop-item-features {
  flex-grow: 1; /* prend tout l’espace restant */
}

.shop-item-features ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.shop-item-features li {
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* ==========================
   BUTTONS (STYLE IDENTIQUE À TON SITE)
========================== */
.btn {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid var(--violet);
  background: rgba(0,0,0,0.25);
  color: white;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(211, 0, 241, 0.25);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.btn span,
.btn {
  position: relative;
  z-index: 1;
}

.btn:hover::before {
  transform: rotate(45deg) scale(1);
}

.btn:hover {
  color: var(--violet);
  box-shadow: 0 0 18px var(--violet), 0 0 25px #650072 inset;
  transform: scale(1.05);
}

/* Variantes */
.btn-primary {
  border-color: var(--violet);
}

.btn-accent {
  border-color: #ffffff;
}

/* ==========================
   CTA SECTION
========================== */
.cta-section {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.cta-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-description {
  opacity: 0.85;
  margin-bottom: 20px;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
  .shop-item {
    padding: 20px;
  }

  .shop-item-title {
    font-size: 20px;
  }

  .shop-item-price-value {
    font-size: 22px;
  }
}
.about-shop {
  margin-top: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.about-card {
  background: rgba(0,0,0,0.55);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(211, 0, 241, 0.25);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(211, 0, 241, 0.4);
}

.about-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.about-card h3 {
  margin-bottom: 10px;
}
/* ===== CTA DISCORD (VERSION VIOLETTE & TRANSPARENTE) ===== */
.shop-cta {
  max-width: 900px;
  margin: 5rem auto;
  padding: 3rem;
  text-align: center;

  background: rgba(0, 0, 0, 0.55); /* uniforme avec autres cards */
  border-radius: 16px;
  border: 1px solid rgba(211, 0, 241, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(211, 0, 241, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(211, 0, 241, 0.45);
}

.shop-cta h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.shop-cta p {
  font-size: 1.05rem;
  color: #f1e6ff;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.shop-cta .btn-discord {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  border: 2px solid var(--violet);
  border-radius: 10px;
  background: rgba(0,0,0,0.25);
  box-shadow: 0 0 18px var(--violet), inset 0 0 25px #650072;
  transition: all 0.35s ease;
}

.shop-cta .btn-discord:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px var(--violet), inset 0 0 35px #650072;
}

.shop-item {
  position: relative;
}

.shop-item.featured {
  border: 2px solid #d300f1;
  box-shadow: 0 0 35px rgba(211, 0, 241, 0.45);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d300f1;
  color: black;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}

/* ===== À PROPOS DE LA BOUTIQUE ===== */
/* ===== À PROPOS DE LA BOUTIQUE (PREMIUM) ===== */
.shop-about {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 3rem;

  background: rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  border: 1px solid rgba(211, 0, 241, 0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(211, 0, 241, 0.35);
  position: relative; /* important pour le ::before */
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.shop-about h2 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.shop-about ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.shop-about li {
  background: rgba(0,0,0,0.55);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(211, 0, 241, 0.25);
  box-shadow: inset 0 0 20px rgba(211, 0, 241, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-about li:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(211, 0, 241, 0.4), inset 0 0 30px rgba(211, 0, 241, 0.2);
}

.shop-about li span {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .shop-about,
  .shop-cta {
    margin: 3rem 1rem;
    padding: 2.2rem 1.5rem;
  }

  .shop-cta h2 {
    font-size: 1.9rem;
  }
}

footer {
  margin-top: 5rem;
  padding: 30px 20px;
  background: var(--bg-card);
  border-top: 1px solid rgba(211,0,241,0.25);
  text-align: center;
  color: white;
  box-shadow: 0 -2px 15px rgba(211,0,241,0.2);
}

footer p {
  font-size: 0.95rem;
  font-weight: 500;
}
.shop-search {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.shop-search input {
  width: 300px;
  max-width: 80%;
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #ffffff50;
  outline: none;
  font-size: 16px;
  color: white;
  background-color: rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

.shop-search input:focus {
  border-color: #d300f1;
  box-shadow: 0 0 10px rgba(211,0,241,0.5);
}
.shop-about li {
  background: rgba(0,0,0,0.55);
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(211, 0, 241, 0.25);
  box-shadow: inset 0 0 20px rgba(211, 0, 241, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* nécessaire pour ::before */
  overflow: hidden;
  cursor: pointer;
}

/* pseudo-élément pour l’effet lumineux violet */
.shop-about li::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(211, 0, 241, 0.25);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

/* enfants au-dessus de l’effet */
.shop-about li * {
  position: relative;
  z-index: 1;
}

/* hover */
.shop-about li:hover::before {
  transform: rotate(45deg) scale(1);
}

.shop-about li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 30px rgba(211, 0, 241, 0.4), inset 0 0 30px rgba(211, 0, 241, 0.2);
  border-color: #d300f1;
}
/* ==========================
   PAYMENT LIST / CRYPTO LIST
========================== */
.shop-payment {
  background: rgba(0,0,0,0.55);
  border-radius: 16px;
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto;
  border: 1px solid rgba(211,0,241,0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(211,0,241,0.35);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-payment:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(211,0,241,0.45);
}

.shop-payment h2 {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}

.shop-payment p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f1e6ff;
  opacity: 0.9;
}

/* LISTES DE PAIEMENT */
.payment-list, .crypto-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-list li, .crypto-list li {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(211,0,241,0.25);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-list li::before, .crypto-list li::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(211,0,241,0.25);
  transform: rotate(45deg) scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
}

.payment-list li * , .crypto-list li * {
  position: relative;
  z-index: 1;
}

.payment-list li:hover, .crypto-list li:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(211,0,241,0.45), inset 0 0 25px rgba(211,0,241,0.2);
  border-color: #d300f1;
}

.payment-list li:hover::before, .crypto-list li:hover::before {
  transform: rotate(45deg) scale(1);
}
.payment-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-item {
  position: relative;
  background: rgba(0,0,0,0.55);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(211,0,241,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}

.payment-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(211,0,241,0.4), inset 0 0 20px rgba(211,0,241,0.2);
  border-color: #d300f1;
}

/* Badge style identique aux shop-item */
.payment-item .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d300f1;
  color: black;
  font-weight: 900;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-item:hover .badge {
  transform: scale(1.05);
  box-shadow: 0 0 12px #d300f1, inset 0 0 15px #650072;
}
