/** Shopify CDN: Minification failed

Line 6:2 Unexpected "="

**/
* ============================================
   RICH TEXT SECTION - Enhanced with Poppins
   ============================================ */

.rich-text {
  z-index: 1;
}

.rich-text__wrapper {
  display: flex;
  justify-content: center;
  width: calc(100% - 4rem / var(--font-body-scale));
}

.rich-text:not(.rich-text--full-width) .rich-text__wrapper {
  margin: auto;
  width: calc(100% - 8rem / var(--font-body-scale));
}

.rich-text__blocks {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .rich-text__wrapper {
    width: 100%;
  }

  .rich-text__wrapper--left {
    justify-content: flex-start;
  }

  .rich-text__wrapper--right {
    justify-content: flex-end;
  }

  .rich-text__blocks {
    max-width: 50rem;
  }
}

@media screen and (min-width: 990px) {
  .rich-text__blocks {
    max-width: 78rem;
  }
}

.rich-text__blocks * {
  overflow-wrap: break-word;
}

.rich-text__blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}

.rich-text__blocks > * + * {
  margin-top: 2rem;
}

.rich-text__blocks > * + a {
  margin-top: 3rem;
}

/* ============================================
   HEADINGS - Poppins Font
   ============================================ */

/* All headings in rich-text use Poppins */
.rich-text__heading,
.rich-text__blocks h1,
.rich-text__blocks h2,
.rich-text__blocks h3,
.rich-text__blocks h4,
.rich-text__blocks h5,
.rich-text__blocks h6 {
  font-family: 'Poppins', var(--font-heading-family), var(--font-body-family), sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Specific heading styles */
.rich-text__heading.h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 600;
}

.rich-text__heading.h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
}

.rich-text__heading.h0 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
}

.rich-text__heading.hxl {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
}

.rich-text__heading.hxxl {
  font-size: clamp(4.5rem, 8vw, 5.5rem);
  font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */

.rich-text__buttons {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  font-family: 'Poppins', var(--font-heading-family), var(--font-body-family), sans-serif !important;
  font-weight: 800 !important;
  max-width: 45rem;
  word-break: break-word;
}

.rich-text__buttons--multiple > * {
  flex-grow: 1;
  min-width: 22rem;
}

.rich-text__buttons + .rich-text__buttons {
  margin-top: 1rem;
}

.rich-text__blocks.left .rich-text__buttons {
  justify-content: flex-start;
}

.rich-text__blocks.right .rich-text__buttons {
  justify-content: flex-end;
}

/* ============================================
   TEXT CONTENT
   ============================================ */

/* Body text uses theme default */
.rich-text__text {
  font-family: var(--font-body-family);
  
  line-height: 1.6;
}

/* Caption styles */
.rich-text__caption {
  font-family: var(--font-body-family);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rich-text__caption.subtitle {
  
  text-transform: none;
  letter-spacing: normal;
}

.rich-text__caption--small {
  font-size: 0.875rem;
}

.rich-text__caption--medium {
  font-size: 1rem;
}

.rich-text__caption--large {
  font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media screen and (max-width: 749px) {
  .rich-text__heading.h0,
  .rich-text__heading.hxl,
  .rich-text__heading.hxxl {
    font-weight: 600; /* Slightly lighter on mobile */
  }
  
  .rich-text__buttons--multiple > * {
    min-width: 100%;
  }
}






