.pw-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 15px 0;
}
.pw-carousel {
  display: flex;
  gap: 15px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.pw-carousel::-webkit-scrollbar {
  display: none;
}
.pw-carousel-item {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
.pw-carousel-item:hover {
  transform: translateY(-5px);
}
.pw-prev,
.pw-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease;
}
.pw-prev:hover,
.pw-next:hover {
  background: #25d366;
}
.pw-prev {
  left: 5px;
}
.pw-next {
  right: 5px;
}
