/** Shopify CDN: Minification failed

Line 92:8 Expected identifier but found whitespace
Line 92:10 Unexpected "{"
Line 92:19 Expected ":"
Line 92:44 Expected ":"
Line 93:9 Expected identifier but found whitespace
Line 93:11 Unexpected "{"
Line 93:20 Expected ":"
Line 93:45 Expected ":"
Line 100:9 Expected identifier but found whitespace
Line 100:11 Unexpected "{"
... and 14 more hidden warnings

**/
.rb-section {
  background: #fff;
  color: #111;
}

.rb-container {
  width: 100%;
  max-width: var(--page-width, 1200px);
  margin-inline: auto;
  padding-inline: var(--page-margin, 20px);
  padding-block: var(--rb-section-padding, 72px);
}

.rb-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin: 0 0 16px;
}

.rb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.rb-btn:hover {
  transform: translateY(-2px);
}

.rb-btn-primary {
  background: #111;
  color: #fff;
}

.rb-btn-secondary {
  background: #f4f4f4;
  color: #111;
}

.rb-media img {
  width: 100%;
  height: var(--rb-image-height, auto);
  aspect-ratio: var(--rb-aspect-ratio, auto);
  object-fit: cover;
  display: block;
  border-radius: var(--rb-radius, 28px);
}

.rb-section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.rb-section-head h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
}

.rb-body {
  font-size: 18px;
  line-height: 1.55;
  color: #333;
}

.rb-accessory .rb-accessory-image {
  width: {{ section.settings.image_size }}px;
  height: {{ section.settings.image_size }}px;
  object-fit: cover;
  border-radius: 20px;
}

.rb-mood-card .rb-mood-image {
  width: 100%;
  height: {{ section.settings.image_height }}px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 749px) {
  .rb-mood-card .rb-mood-image {
    height: {{ section.settings.mobile_image_height }}px;
  }

  .rb-accessory .rb-accessory-image {
    width: {{ section.settings.mobile_image_size }}px;
    height: {{ section.settings.mobile_image_size }}px;
  }

  .rb-container {
    padding-inline: var(--page-margin, 16px);
    padding-block: var(--rb-mobile-section-padding, 48px);
  }

  .rb-btn {
    width: 100%;
  }

  .rb-body {
    font-size: 16px;
  }
}