/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Bebas+Neue&display=swap');

/* CARD */
.product-card {
  background: #141417;
  border-radius: 16px;
  border: 2px solid rgba(255, 77, 77, 0.8); /* violet visible */
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(255, 77, 77, 0.25);
}

/* IMAGE */
.product-image {
  display: block;
  width: 100%;
  height: 180px;
}
.product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

/* RECTANGLE BAS / FOOTER */
.card-footer-panel {
  background: linear-gradient(180deg, #1a1a1c 0%, #0e0e0f 100%);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 14px 16px 12px;
  position: relative;
  color: #fff;
  min-height: 110px;
  box-shadow: inset 0 0 6px rgba(255, 77, 77, 0.25);
}
.card-footer-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: radial-gradient(rgba(255,255,255,0.9) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.card-footer-panel::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: 30%;
  width: 220px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 144, 144, 0.55) 0%, rgba(255, 77, 77, 0.18) 25%, transparent 70%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

/* CONTENT */
.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

/* TITRE */
.product-title {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 4px;
  color: #ffffff;
  text-align: center;
}

/* PRIX */
.product-price {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  font-size: 16px;
  color: #d6d6d6;
  text-align: center;
}
.price-val {
  font-weight: 600;
  color: #ff9090;
  margin-left: 4px;
  font-size: 16px;
  text-shadow: 0 0 6px rgba(255, 144, 144, 0.45);
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

/* ICONES PAIEMENT */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}
.payment-logos img {
  height: 20px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(255, 144, 144, 0.35));
}

/* BOUTON PURCHASE */
.purchase-btn {
  background: linear-gradient(180deg, #ff9090, #ff4d4d);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.25), 0 0 15px rgba(255, 77, 77, 0.15);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.purchase-btn i {
  font-size: 14px;
}
.purchase-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 83, 77, 0.45);
}

/* Container + image */
.product-card {
  position: relative;
  display: inline-block;
  text-align: center;
}

.product-image {
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

/* BOUTON EXPAND */
.btn-expand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg,#ff9090,#ff4d4d);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  box-shadow:0 6px 18px rgba(255, 77, 77, 0.35);
}
.btn-expand:hover {
  background: linear-gradient(90deg,#ffaaaa,#ff6363);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Décalage container */
.product-wrapper .py-5-nav {
  padding-top: 100px;
}
.tm-scope .grid-overlay{ display:none !important; }