:root {
  --primary-color: #222;     /* Couleur principale du logo */
  --secondary-color: #f9c13c;   /* Couleur de fond légère */
  --text-color: #333;
  --header-bg: #0056b3;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

.welcome-banner {
  background-color: #222;
  text-align: center;
  padding: 10px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.welcome-banner h2 {
  margin: 0;
  font-size: 24px;
  color:#fff;
}

.welcome-banner p {
  margin-top: 8px;
  font-size: 16px;
  color: #fff;
}


.banner {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 10px;
}


header {
  background-color: #f9f9f9;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  color: white;
  font-size: 1.5em;
  position: relative;
  z-index: 1;
}

color: #fff;
  padding: 20px;
  text-align: center;
}

.container {
  display: flex;
  min-height: 200vh;
}

.products {
  display: flex;
  gap: 10px;
  justify-content: center;
 margin: 0 auto;
  padding: 10px 0;
  max-width: 1200px;
}

.card {
  flex: 0 0 auto;
  width: 160px;
  background-color: var(--secondary-color);
  border: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  scroll-snap-align: start;
}


.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px var(--primary-color);
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.card button {
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.card button:hover {
  background-color: #000;
}

.cart {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 200px;
  background-color: #000;
  color: #fff;
  border: 4px solid#f9c13c;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.info-barre {
  background-color: #000;
  color: #fff;
  padding: 25px;
  text-align: center;
  font-size: 1.8rem;
  border-top: 4px solid #f9c13c;
  border-bottom: 4px solid #f9c13c;
}


.slogan {
  color: #111;
  font-size: 1.8rem;
  margin-top: 10px;
  font-weight: 500;
}


.nos-produits-section {
  padding: 60px 30px;
  background-color: #f9c13c;
}

.produits-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.produits-image {
  width: 300px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.produits-texte {
  max-width: 500px;
  color: #222;
}

.produits-texte h2 {
  margin-top: 0;
  font-size: 2em;
}

.specifications {
  padding-left: 20px;
  margin-top: 15px;
  list-style-type: disc;
  color: #222;
  font-size: 1em;
  line-height: 1.6;
}


