* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  background: none;
  font-family: "Outfit", sans-serif;
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/parralax-vignes.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

/* En-tête */
.parallax-header {
  text-align: center;
  padding: 3rem 2rem;
}

.parallax-header h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Catalogue */
.catalogue {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 4rem 2rem;
  background: transparent;
}

.product {
  background: rgba(255, 255, 255, 0.1); /* ✅ Cadre blanc transparent */
  border: 1px solid rgba(255, 255, 255, 0.3); /* ✅ Contour blanc fin */
  border-radius: 16px;
  width: 260px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
}

.product img {
  max-height: 180px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product p {
  font-size: 0.95rem;
  color: #f3f3f3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.product button {
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background: #1e120d;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product button:hover {
  background: #cfa250;
  color: black;
}

/* Panier */
.panier {
  background: rgba(255, 255, 255, 0.08); /* ✅ Légère transparence */
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 480px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.panier h2 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.panier ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.panier li {
  font-size: 1rem;
  padding: 0.4rem 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.btn-remove {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #ff7c7c;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.btn-remove:hover {
  transform: scale(1.2);
}

.btn-commander {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
  font-weight: bold;
  background: #cfa250;
  color: #1e120d;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-commander:hover {
  background: #1e120d;
  color: #fff;
}

/* Footer */
.parallax-footer {
  text-align: center;
  padding: 2rem;
  color: #fff;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .catalogue {
    flex-direction: column;
    align-items: center;
  }

  .product {
    width: 90%;
  }

  .panier {
    width: 90%;
  }

  .parallax-header h1 {
    font-size: 2.2rem;
  }
}
/* Bouton Retour */
.btn-retour {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 0.6rem 1rem;
  background: #cfa250; /* Couleur de fond normale */
  color: #1e120d; /* Texte foncé */
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  z-index: 1000;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-retour:hover {
  background: #1e120d; /* Fond foncé au hover */
  color: #ffffff; /* Texte blanc */
}
