/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

/* HEADER */
header .barre {
  background-color: #ffffff;
  text-align: center;
  padding: 20px;
}

header .barre img {
  max-width: 150px;
}

/* EXPLORE SECTION */
.explore {
  position: relative;
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.explore img {
  width: 100%;
  height: auto;
  display: block;
}

.explore h1,
.explore button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.explore h1 {
  top: 20%;
  font-size: 2rem;
  font-weight: bold;
}

.explore button {
  top: 60%;
  background-color: #acacac;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 1rem;
  cursor: pointer;
}

.explore button a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.explore button:hover {
  background-color: #cc0000;
}

/* BESTSELLING SECTION */
.bestselling {
  padding: 40px 20px;
  text-align: center;
}

.bestselling h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.bestselling img {
  width: 250px;
  height: auto;
  margin: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bestselling h3 {
  margin-top: 10px;
  font-size: 1.1rem;
}

.bestselling h4 {
  color: #e60000;
  font-weight: bold;
  margin-bottom: 20px;
}

/* COMMAND SECTION */
.command {
  position: relative;
  margin-top: 50px;
  text-align: center;
}

.command img {
  width: 100%;
  height: auto;
  display: block;
}

.command h1,
.command button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.command h1 {
  top: 30%;
  font-size: 2rem;
}

.command button {
  top: 60%;
  background-color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 1rem;
  cursor: pointer;
}

.command button a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
}

.command button:hover {
  background-color: #1f1717;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bestselling img {
    width: 100%;
    max-width: 300px;
  }

  .explore h1,
  .command h1 {
    font-size: 1.5rem;
  }

  .explore button,
  .command button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
.carousel {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.product {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.product img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.product h4 {
  color: #8b82e0;
  font-weight: bold;
}