.etsy-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(135deg, #f1d09a, #fff8e6);
  padding: 0 0 2rem; /* Adjusted top/bottom only for side buttons */
  border-radius: 12px;
  overflow: hidden;
}

.etsy-carousel h2 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5rem;
  text-align: center;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative; /* Needed for absolute buttons */
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
  width: 100%;
}

.carousel-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding: 0.5rem;
  user-select: none;
}

.carousel-item img {
  width: 100%;
  border-radius: 2px;
  display: block;
}

.carousel-item h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0.3rem 0;
}

.carousel-item p {
  font-size: 0.9rem;
  color: #444;
  margin: 0 0 0.5rem 0;
}

.price {
  font-weight: bold;
  color: #333;
}

/* Rectangular vertical side buttons */
.carousel-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: rgba(51, 51, 51, 0.3);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(51, 51, 51, 0.6);
}

.carousel-btn.prev {
  left: 0;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.carousel-btn.next {
  right: 0;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .carousel-item
