/** Shopify CDN: Minification failed

Line 64:10 Expected identifier but found whitespace
Line 64:12 Unexpected "{"
Line 64:21 Expected ":"
Line 84:21 Expected identifier but found whitespace
Line 84:23 Unexpected "{"
Line 84:32 Expected ":"
Line 85:10 Expected identifier but found whitespace
Line 85:12 Unexpected "{"
Line 85:21 Expected ":"

**/
.banner-section {
    width: 100%;
    margin: 0;
  }

  .banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .banner-image--mobile {
    display: none;
  }

  .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 2rem;
  }

  .banner-content--left {
    justify-content: flex-start;
    text-align: left;
  }

  .banner-content--center {
    justify-content: center;
    text-align: center;
  }

  .banner-content--right {
    justify-content: flex-end;
    text-align: right;
  }

  .banner-text {
    max-width: 600px;
    color: {{ section.settings.text_color | default: '#ffffff' }};
  }

  .banner-heading {
    font-size: 3rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

  .banner-subheading {
    font-size: 1.25rem;
    margin: 0 0 2rem 0;
    line-height: 1.4;
    opacity: 0.9;
  }

  .banner-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: {{ section.settings.button_color | default: '#000000' }};
    color: {{ section.settings.button_text_color | default: '#ffffff' }};
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .banner-button:hover {
    opacity: 0.8;
    transform: translateY(-2px);
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .banner-image--desktop {
      display: none;
    }

    .banner-image--mobile {
      display: block;
    }

    .banner-content {
      padding: 1.5rem;
    }

    .banner-heading {
      font-size: 2rem;
    }

    .banner-subheading {
      font-size: 1rem;
    }

    .banner-text {
      max-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .banner-content {
      padding: 1rem;
    }

    .banner-heading {
      font-size: 1.75rem;
    }
  }