/* SKELETON LOADING (produits) */
.skeleton {
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  height: 360px;
  position: relative;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.skeleton-info {
  padding: 14px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.skeleton-title {
  height: 14px;
  background: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 70%;
  position: relative;
  overflow: hidden;
}
.skeleton-price {
  height: 12px;
  background: #f0f0f0;
  border-radius: 4px;
  width: 40%;
  position: relative;
  overflow: hidden;
}
.skeleton-title::after, .skeleton-price::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: shimmer 1.4s infinite;
}