/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 19:26 Unexpected "{"
Line 20:8 Expected identifier but found whitespace
Line 20:10 Unexpected "{"
Line 20:19 Expected ":"
Line 20:51 Expected ":"
Line 21:11 Expected identifier but found whitespace
Line 21:13 Unexpected "{"
Line 21:22 Expected ":"
... and 38 more hidden warnings

**/


/* CSS from section stylesheet tags */
.multi-3-{{ section.id }} {
  --gap: {{ section.settings.gap | default: 12 }}px; /* tighter for 3-up on phones */
  --radius: {{ section.settings.image_radius | default: 8 }}px;
  --pad-top: {{ section.settings.pad_top | default: 16 }}px;
  --pad-bot: {{ section.settings.pad_bottom | default: 16 }}px;
  --title-size: {{ section.settings.title_size | default: 38 }}px;
  --subtext-size: {{ section.settings.subtext_size | default: 16 }}px;
}

.multi-3-{{ section.id }} {
  padding-top: var(--pad-top);
  padding-bottom: var(--pad-bot);
}

.multi-3-{{ section.id }} .multi-3-grid {
  display: grid;
  gap: var(--gap);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px; /* slim sides so 3-up fits */
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* ALWAYS 3 columns */
}

.multi-3-{{ section.id }} .multi-3-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.multi-3-{{ section.id }} .multi-3-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform .25s ease;
}

.multi-3-{{ section.id }} .multi-3-item:hover .multi-3-media img {
  transform: scale(1.02);
}

.multi-3-{{ section.id }} .multi-3-text {
  text-align: center;
  margin-top: 10px;
}

/* Title */
.multi-3-{{ section.id }} .multi-3-title {
  font-size: clamp(28px, 3.2vw, var(--title-size));
  line-height: 1.25;
  font-weight: 800;
  margin: 10px 0 6px 0;
}
.multi-3-{{ section.id }} .multi-3-title * {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}

/* Subtext */
.multi-3-{{ section.id }} .multi-3-subtext {
  font-size: var(--subtext-size);
  line-height: 1.5;
  color: #444;
  margin: 0 auto;
  max-width: 95%;
}

.multi-3-{{ section.id }} .multi-3-subtext a { text-decoration: underline; }

/* No media queries that change column count — stays 3-up at all widths */
.featured-collection-carousel-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.featured-collection-carousel-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.featured-carousel {
  margin-bottom: 1rem;
}

.featured-carousel .flickity-button {
  display: none;
}
@media (min-width: 768px) {
  .featured-carousel .flickity-button {
    display: block;
  }
}

.flickity-viewport {
  overflow: visible !important;
}
.flickity-slider {
  display: flex;
  align-items: stretch;
}
.featured-carousel .product-card {
  width: 70vw;
  max-width: 260px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .featured-carousel .product-card {
    width: 240px;
  }
}
.single-collection-feature {
  width: 100%;
  padding-top: 32px;
  margin: 0;
}
.single-collection-feature-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}
.single-collection-feature-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1334 / 507;
  overflow: hidden;
  text-align: center;
}
.single-collection-feature-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.single-collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
}
.single-collection-subheading {
  font-family: 'Libre Franklin', sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 8px;
}
.single-collection-heading {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 16px;
}
.single-collection-button {
  display: inline-block;
  padding: 14px 24px;
  background: white;
  color: black;
  border: 1px solid black;
  font-weight: 600;
  font-style: normal;
  border-radius: 0;
  text-decoration: none;
  font-size: 1.4rem;
}
.split-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.split-collection-grid-item {
  flex: 1 1 calc(36% - 24px);
  position: relative;
  text-align: center;
  overflow: hidden;
  aspect-ratio: 1 / 1; /* square blocks */
}

.split-collection-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .split-collection-grid-item {
    flex: 1 1 100%;
    aspect-ratio: 1 / 1;
  }
}