body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #111;
}
header {
  background: #000;
  padding: 80px;
  text-align: center;
  background-image: url(/20ans/images/firstfloor.webp);
  -webkit-background-size: cover;
  /* pour anciens Chrome et Safari */
  background-size: cover;
  background-position: center center;
}
header img {
  height: 150px;
}
.hero {
  background: linear-gradient(135deg, #000, #333);
  color: white;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 15px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.hero p {
  opacity: 0.8;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px;
}
.ref {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  color: #999;
}
.image img {
  width: 100%;
  height: auto;
}
.fancybox__caption {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.selection {
  text-align: center;
  margin: 40px 0 20px;
}
.selection h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.product {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.product:hover .image img {
  transform: scale(1.1);
}
.product .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #e60023;
  color: white;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 2;
}
.product .image {
  height: 200px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.product .image.no-image {
  background: linear-gradient(135deg, #ddd, #bbb);
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}
.product .content {
  padding: 15px;
}
.product .content h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.product .content .price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product .content .price .old {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}
.product .content .price .new {
  font-weight: 800;
  font-size: 1.2rem;
  color: #e60023;
}
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.8rem;
  color: #777;
}
/*# sourceMappingURL=styles.css.map */