/** Shopify CDN: Minification failed

Line 64:0 Unexpected "<"
Line 141:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.portrait-carousel-wrapper {
  position: relative;
  background: #f6cbdf;
  padding: 2rem 0;
  overflow: hidden;
}

.portrait-carousel {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 2rem;
  scroll-snap-type: x mandatory;
}

.carousel-card {
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 260px;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.carousel-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-arrow {
  background: #f6cbdf;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-arrow.left {
  left: 10px;
}
.carousel-arrow.right {
  right: 10px;
}
<style>
.rounded-slider-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #fff;
}

.rounded-slider-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.rounded-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.rounded-slide {
  flex: 0 0 auto;
  width: 220px;
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.rounded-slide:hover {
  transform: translateY(-5px);
}

.rounded-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.rounded-slide h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111;
}

.rounded-slide p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.rounded-slide a {
  text-decoration: none;
  color: inherit;
}

.rounded-slide a:hover h4 {
  color: #d42a7e;
}

.rounded-slider::-webkit-scrollbar {
  display: none;
}
.rounded-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
</style>