.soto-carousel-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 60px;
  position: relative;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.soto-track-wrap {
  overflow: hidden;
  width: 100%;
}

.soto-track {
  display: flex;
  align-items: center;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.soto-slide {
  flex: 0 0 260px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0;
  opacity: 0.45;
  transform: scale(0.78);
  transition: transform 0.45s ease, opacity 0.45s ease;
  pointer-events: none;
}

.soto-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.soto-slide__image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 320px;
}

.soto-slide__image-wrap img {
  max-height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.soto-slide__cart {
  margin-top: 24px;
}

/* Arrow buttons */
.soto-btn-prev,
.soto-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 10;
  width: 30px;
  height: 30px;
  background: #A49678;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.soto-btn-prev:hover,
.soto-btn-next:hover {
  background: #8a7d65;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.soto-btn-prev { left: 0; }
.soto-btn-next { right: 0; }

/* Dots */
.soto-pagination {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.soto-pagination .soto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  padding: 0;
}

.soto-pagination .soto-dot.is-active {
  background: #000;
  transform: scale(1.25);
}

/* Mobile */
@media (max-width: 768px) {
  .soto-slide {
    flex: 0 0 45vw;
    width: 45vw;
    max-width: 150px;
  }
	.soto-slide.is-active {
		transform: scale(1.2)
	}

  .soto-slide__image-wrap {
    min-height: 200px;
  }

  .soto-slide__image-wrap img {
    max-height: 200px;
  }

  .soto-btn-prev,
  .soto-btn-next {
    display: none !important;
  }

  .soto-pagination {
    display: flex;
  }
}