/* .bt-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.bt-carousel-container {
  overflow: hidden;
  width: 100%;
}

.bt-carousel {
  display: flex;
  gap: 8px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.bt-carousel-item {
  flex: 0 0 auto;
  box-sizing: border-box;
}

.bt-carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}



@media only screen and (max-width: 1060px) {
  .bt-carousel-item .btn-refillable {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
  }
} */
.body-type-carousel .d-flex {
  width: 100%;
  align-items: center;
  flex-wrap: nowrap;
}

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

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

.bt-carousel-items .btn-refillable {
  left: 50%;
  transform: translateX(-50%);
}

.bt-carousel-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  padding: 5px;
  transition: all 0.3s ease;
}

.bt-carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.bt-carousel-controls {
  display: flex;
  justify-content: center;
}

.bt-carousel-btn {
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.bt-carousel-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}