:where([class^="ri-"])::before {
content: "\f3c2";
}
body {
font-family: 'Inter', sans-serif;
}
.hero-bg {
background-image: url('https://readdy.ai/api/search-image?query=modern%20luxury%20bedroom%20in%20classic%20Haussmann%20apartment%20with%20high%20ceilings%2C%20ornate%20moldings%20and%20contemporary%20minimalist%20furniture%2C%20premium%20mattress%20in%20elegant%20Parisian%20interior%2C%20marble%20fireplace%20with%20modern%20art%2C%20herringbone%20parquet%20floors%2C%20large%20french%20windows%20with%20natural%20light%2C%20sophisticated%20blend%20of%20classical%20architecture%20and%20modern%20design%2C%20cinematic%20photography%20with%20refined%20ambiance&width=1920&height=600&seq=hero4&orientation=landscape');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.overlay {
background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.3) 65%, rgba(255, 255, 255, 0) 80%);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}


.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 75%;
  height: 220px;
  object-fit: cover;
	margin: auto;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  margin: 0 0 10px 0;
    font-size: 20px;
    text-transform: uppercase;
  	color: rgb(17 24 39);
}

.description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-info,
.product-meta {
  font-size: 13px;
  color: #666;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.price {
  font-size: 14px;
  font-weight: bold;
  color: midnightblue;
  margin-top: 10px;
}
/* POP-UP des images */

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  position: relative;
  margin: 5% auto;
  width: 90%;
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}

.gallerypop {
  height: 605px;

}

.gallerypop img {
  display: none;
  max-height: 600px;
  width: auto;
  border-radius: 8px;
}

.gallerypop img.active {
  display: block;
  margin: auto;
}

.controls {
  margin-top: 15px;
}

.controls button {
  padding: 8px 15px;
  margin: 0 10px;
  cursor: pointer;
}