/** Shopify CDN: Minification failed

Line 119:2 Unexpected "}"

**/
.seam-recommender {
  padding: 40px 40px;
}
.seam-recommender__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.seam-recommender__text {
  flex: 0 0 280px;
  color: #fff;
}
.seam-recommender__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.seam-recommender__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}
.seam-recommender__cards {
  display: flex;
  gap: 12px;
  flex: 1;
  height: 480px;
}
.seam-recommender__card {
  position: relative;
  flex: 1;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #222;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}
.seam-recommender__card:hover {
  transform: scale(1.02);
}
.seam-recommender__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.seam-recommender__card-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
.seam-recommender__card-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 6px 10px;
  position: relative;
  z-index: 1;
  width: fit-content;
}
@media (max-width: 768px) {
  .seam-recommender {
    padding: 40px 20px;
  }
  .seam-recommender__inner {
    flex-direction: column;
    gap: 24px;
  }
  .seam-recommender__text {
    flex: none;
    width: 100%;
  }
  .seam-recommender__cards {
    width: 100%;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .seam-recommender__cards::-webkit-scrollbar {
    display: none;
  }
  .seam-recommender__card {
    flex: 0 0 70vw;
    height: 120vw;
    scroll-snap-align: start;
    aspect-ratio: unset;
  }
}

  }
}
