.scroll-snap-wrapper {
  position: relative;
}

.scroll-snap-wrapper::before,
.scroll-snap-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  pointer-events: none;
  z-index: 1;
}

/*
.scroll-snap-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.scroll-snap-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
*/

.smol-scroll-snap {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.smol-scroll-snap > * {
  width: min(45ch, 60vw);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.smol-card-component {
  --img-ratio: 1/1;

  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 0 0.5rem hsl(0 0% 0% / 0.07%);
  border-radius: 0.5rem;
}

.smol-card-component > img {
  aspect-ratio: var(--img-ratio);
  object-fit: cover;
  width: 100%;
}

.smol-card-component > img:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.smol-card-component > img:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
  margin-top: auto;
}

.smol-card-component > :not(img) {
  margin-left: 1rem;
  margin-right: 1rem;

  text-wrap: pretty;
}

.smol-card-component > :not(img):first-child {
  margin-top: 1rem;
}

.smol-card-component > :last-of-type:not(img, h2, h3, h4) {
  margin-bottom: 1rem;
}

.smol-card-component > :not(h2, h3, h4) {
  font-size: 0.9rem;
}

.smol-card-component > a {
  align-self: start;
}


.smol-card-component .prices {
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  line-height: 1.35;
}
.smol-card-component .prices .original-price {
  font-weight: 400;
}
.smol-card-component .checkout {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none !important;
	
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
	display: inline-block;
	margin-top: 20px;
}
.smol-card-component .title {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.smol-card-component .sort-by {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}