body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:#ffffff; /* BLANC PROPRE */
  color:#111;
}

/* HEADER */
.main-header{
  text-align:center;
  padding:50px 20px 30px;
  border-bottom:1px solid #eee;
}

.logo{
  max-width:190px;
  display:block;
  margin:0 auto;
}

.subtitle{
  margin-top:15px;
  font-family:'Playfair Display',serif;
  color:#a77a7a;
  letter-spacing:2px;
}

/* MENU */
.categories-menu{
  margin-top:25px;
  display:flex;
  justify-content:center;
  gap:35px;
}

.categories-menu a{
  text-decoration:none;
  color:#7a5f5f;
  font-weight:500;
}

.categories-menu a:hover{
  color:#000;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:50px;
  max-width:1200px;
  margin:70px auto;
  padding:0 40px;
}

.item-link{
  text-decoration:none;
  color:inherit;
}

.item-link img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:16px;
  transition:0.4s;
}

.item-link:hover img{
  transform:scale(1.05);
}

.item-link h3,
.item-link p{
  text-align:center;
}

/* CONTACT BAS */
.contact{
  text-align:center;
  padding:60px 20px;
  background:#f9f9f9;
}

.contact-links{
  margin-top:15px;
  display:flex;
  justify-content:center;
  gap:25px;
}

.contact-links a{
  text-decoration:none;
  color:#a77a7a;
  font-weight:500;
}

/* PRODUCT PAGE ZARA */
.product-layout{
  display:flex;
  gap:80px;
  max-width:1200px;
  margin:80px auto;
  padding:0 40px;
  align-items:flex-start;
}

.main-image{
  width:100%;
  max-width:450px;
  height:600px;
  object-fit:cover;
  border-radius:20px;
}

.thumbnails{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.thumb{
  width:80px;
  height:110px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;
  opacity:0.7;
}

.active-thumb{
  border:2px solid #a77a7a;
  opacity:1;
}

.product-info{
  max-width:500px;
}

.product-name{
  font-family:'Playfair Display',serif;
  font-size:30px;
}

.product-description{
  margin-top:20px;
  line-height:1.8;
}

.order-info{
  margin-top:20px;
  color:#a77a7a;
  font-weight:500;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:white;
  font-size:22px;
  padding:15px;
  border-radius:50%;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .product-layout{
    flex-direction:column;
    align-items:center;
  }

  .main-image{
    height:500px;
  }
}

footer{
  text-align:center;
  padding:40px;
  font-size:12px;
  color:#999;
  border-top:1px solid #eee;
}
/* TITRE PRODUITS CENTRÉ */
.collection h2{
  text-align:center;
  font-family:'Playfair Display',serif;
  font-size:28px;
  margin-top:60px;
}

/* CONTACT ICONS */
.contact-icons{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:25px;
}

.contact-icons img{
  width:28px;
  height:28px;
  transition:0.3s;
}

.contact-icons img:hover{
  transform:scale(1.15);
}
/* BOUTON RETOUR */
.back-button {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 40px;
}

.back-button a {
  text-decoration: none;
  color: #a77a7a;
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.back-button a:hover {
  color: #000;
}

/* Flèche SVG */
.back-button .arrow {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  transition: transform 0.3s;
}

/* Animation au hover : la flèche glisse légèrement vers la gauche */
.back-button a:hover .arrow {
  transform: translateX(-5px);
}
