/** Shopify CDN: Minification failed

Line 30:24 Unexpected "{"
Line 30:33 Expected ":"
Line 30:40 Unexpected "{"
Line 37:28 Unexpected "{"
Line 37:37 Expected ":"
Line 37:44 Unexpected "{"
Line 38:18 Expected identifier but found whitespace
Line 38:20 Unexpected "{"
Line 38:29 Expected ":"
Line 38:55 Expected ":"
... and 20 more hidden warnings

**/


/* CSS from section stylesheet tags */
.promo-banner {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.section-custom-liquid-{{ section.id }} {
    padding-top: calc({{ section.settings.padding_top }}px * 0.75);
    padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.75);
    position: relative;
  }

  @media (min-width: 750px) {
    .section-custom-liquid-{{ section.id }} {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  .section-custom-liquid-{{ section.id }} .image-box {
    position: relative;
  }

  .section-custom-liquid-{{ section.id }} .image-box img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
    display: block;
  }

  .section-custom-liquid-{{ section.id }} .floating-box {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #f4ffb4 0%, #d3ffce 100%);
    padding: 2.5rem;
    border-radius: 24px;
    max-width: 320px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    z-index: 3;
  }

  .section-custom-liquid-{{ section.id }} .floating-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
  }

  .section-custom-liquid-{{ section.id }} .floating-box p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
  }

  .section-custom-liquid-{{ section.id }} .floating-box .button {
    background: #1a1a1a;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 0 #00000033;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
  }

  .section-custom-liquid-{{ section.id }} .floating-box .button:hover {
    background: #333;
  }

  @media (max-width: 749px) {
    .section-custom-liquid-{{ section.id }} .floating-box {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      margin-top: -40px;
    }
  }