<style>
/* === GRID PRODUITS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  padding: 10px 5px 40px;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 18px 18px 20px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.55);
  background: rgba(255,255,255,0.08);
}

.product-img-wrapper {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.product-img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: #ccc;
  min-height: 40px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 18px;
  margin-bottom: 12px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-size: 15px;
}

.promo-price {
  color: #00ff99;
  font-weight: 700;
}

.normal-price {
  color: #fff;
  font-weight: 600;
}
</style>
