/** Shopify CDN: Minification failed

Line 18:13 Expected identifier but found whitespace
Line 18:15 Unexpected "{"
Line 18:24 Expected ":"
Line 18:56 Expected ":"
Line 19:16 Expected identifier but found whitespace
Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 19:62 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
... and 6 more hidden warnings

**/
/* Root spacing using theme settings */
.collection-banner {
  margin-top: {{ section.settings.margin_top_mobile }}px;
  margin-bottom: {{ section.settings.margin_bottom_mobile }}px;
}

@media screen and (min-width: 750px) {
  .collection-banner {
    margin-top: {{ section.settings.margin_top_desktop }}px;
    margin-bottom: {{ section.settings.margin_bottom_desktop }}px;
  }
}

/* Banner Wrapper */
.collection-banner {
  position: relative;
  text-align: center;
  color: rgb(var(--color-foreground));
  overflow: hidden;
}

/* Banner Image */
.collection-banner__bg img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Content Overlay */
.collection-banner__content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(var(--color-foreground));
}

/* Collection Title */
.collection-banner__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 40px;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
}

/* Breadcrumbs */
.collection-banner .breadcrumbs__link {
  color: rgb(var(--color-foreground));
  text-decoration: none;
}
