/** Shopify CDN: Minification failed

Line 35:10 Expected ":"

**/


.smallcase-section {
  padding: 40px 50px;
}

.smallcase-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}

.smallcase-subheading {
  text-align: center;
  max-width: 720px;
  margin: 12px auto 40px;
  color: #666;
}

/* Slider container */
.smallcase-slider {
  position: relative;
}

/* Track */
.smallcase-cards-wrapper {
  display: flex;
  gap: 24px;
  overflow auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0;
}

/* Hide scrollbar */
.smallcase-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Card */
.smallcase-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover animation */
@media (hover: hover) {
  .smallcase-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  }
}

/* Desktop: 3 cards */
@media (min-width: 769px) {
  .smallcase-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

/* Mobile: 1 card + peek */
@media (max-width: 768px) {
  .smallcase-card {
    flex: 0 0 85%;
  }
}

/* Arrows */
.smallcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  font-size: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: none;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.smallcase-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.smallcase-arrow.prev {
  left: -24px;
}

.smallcase-arrow.next {
  right: -24px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .smallcase-section {
    padding: 40px 0;
  }

  .smallcase-cards-wrapper {
    gap: 16px;
  }

  .smallcase-arrow {
    display: none;
  }
}

.smallcase-cta {
  text-align: center;
  margin-top: 40px;
}
