.carousel-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-box{
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.carousel-slide img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-control {
  background-color: #9c222c;
  color: white;
  border: none;
  border-radius: 50%; /* ทำให้เป็นวงกลม */
  padding: 10px;
  width: 40px; /* กำหนดขนาดความกว้าง */
  height: 40px; /* กำหนดขนาดความสูง */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.carousel-navigation {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.carousel-nav-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-nav-btn.active {
  background-color: #333;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(100% / 3);
  }
}
