#boards {
  background-color: var(--bg-light); /* pastel bleu clair #f4f4f4 */
  padding: 40px 10px;
}

#wetsuits {
  background-color: var(--bg-red-light); /* pastel jaune pâle */
  padding: 40px 10px;
}

#skates {
  background-color: var(--bg-blue-light); /* bleu pastel encore plus doux */
  padding: 40px 10px;
}

#drone {
  background-color: rgba(0, 0, 0, 0.414); /* noir pastel  */
  padding: 40px 10px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.gear-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gear-carousel::-webkit-scrollbar {
  display: none;
}

.gear-item {
  flex: 0 0 80%;
  width: 80%;
  scroll-snap-align: center;
  text-align: center;
  margin: 0 5%;
}

.gear-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.gear-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.gear-item h3 {
  margin: 10px 0 5px;
}

.gear-item p {
  font-size: 0.9rem;
  color: #555;
}

.arrow {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  color: #333;
}

.arrow.left {
  margin-right: 10px;
}

.arrow.right {
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .gear-item {
    flex: 0 0 200px;
    max-width: 200px;
    margin: 15px;
  }

}

.contact-section {
  background-color: var(--yellow-smooth);
  padding: 15px 10px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
#btn-contact a {
  display: inline-block;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  color: #053545;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

#btn-contact a:hover {
  background-color: #ff9393;
  color: white;
  transform: translateY(-2px);
}
