/** Shopify CDN: Minification failed

Line 38:8 Expected identifier but found whitespace
Line 38:10 Unexpected "{"
Line 38:19 Expected ":"
Line 75:13 Expected identifier but found whitespace
Line 75:15 Unexpected "{"
Line 75:24 Expected ":"
Line 76:16 Expected identifier but found whitespace
Line 76:18 Unexpected "{"
Line 76:27 Expected ":"
Line 76:53 Expected ":"
... and 3 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:curated-collections (INDEX:22) */
.curated-collection {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.cc-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.cc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  margin: 0 0 10px;
}
.cc-heading {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  margin: 0 0 28px;
  line-height: 1.3;
}
.cc-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 1024px) {
  .cc-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .cc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .cc-grid { grid-template-columns: repeat(2, 1fr); }
}
.cc-item {
  display: block;
}
.cc-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  background: {{ section.settings.card_bg_color }};
  border-radius: {{ section.settings.card_radius }}px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cc-card:hover {
  transform: translateY(-2px);
}
.cc-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
  display: block;
}
.cc-img--placeholder {
  opacity: 0.3;
}
.cc-footer {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 16px;
}
.cc-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: {{ section.settings.accent_color }};
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity 0.15s ease;
}
.cc-cta:hover {
  opacity: 0.7;
}
.cc-breadcrumb {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  margin: 4px 0 0;
}
/* END_SECTION:curated-collections */