/** Shopify CDN: Minification failed

Line 327:16 Expected identifier but found whitespace
Line 327:18 Unexpected "{"
Line 327:27 Expected ":"
Line 327:54 Expected ":"

**/
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 750px;
    height: 100%;
  }

  .hero-banner-section .slick-slider,
  .hero-banner-section .slick-list,
  .hero-banner-section .slick-track {
    height: 100%;
  }

  /* ── Slide ── */
  .hero-slide {
    position: relative;
    min-height: var(--hero-min-height-desktop);
    display: flex !important;
    align-items: center;
    overflow: hidden;
  }

  .hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-slide__overlay {
    position: absolute;
    inset: 0;
    background-color: var(--hero-overlay);
    opacity: var(--hero-overlay-opacity);
    pointer-events: none;
  }

  /* ── Content wrapper — full width, used to position content to right ── */
  .hero-slide__content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    /* Desktop: push content to right half */
    justify-content: space-between;
    align-items: end;
    padding: 60px 40px;
  }

  /* Left alignment override */
  /* .hero-slide__content-wrap--left   { justify-content: flex-start; }
  .hero-slide__content-wrap--center { justify-content: center; }
  .hero-slide__content-wrap--right  { justify-content: flex-end; } */

  /* ── Content box — constrained to ~45% on desktop ── */
  .hero-slide__content {
    width: 100%;
    max-width: 480px;
    color: var(--hero-text-color);
  }

  /* Text alignment follows block setting */
  .hero-slide__content--left   { text-align: left; }
  .hero-slide__content--center { text-align: center; }
  .hero-slide__content--right  { text-align: right; }

  .hero-slide__eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.85;
  }

  .hero-slide__heading {
    font-family: var(--font-heading-family);
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--white);
  }

  .hero-slide__subheading {
    margin: 0;
    font-family: var(--font-heading-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--white);
    max-width: 75%;
    width: 100%;
  }

  .hero-slide__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }

  .hero-slide__content--center .hero-slide__buttons { justify-content: center; }
  .hero-slide__content--right  .hero-slide__buttons { justify-content: flex-end; }

  /* ── Buttons ── */
  .hero-btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: 'AcuminCustom', sans-serif;
    font-variation-settings: 'wght' 700, 'wdth' 85;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
  }

  .hero-btn:hover { opacity: 0.85; transform: translateY(-1px); }



  /* ── Slick Dots ── */
  .hero-banner-section .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
  }

  .hero-banner-section .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .hero-banner-section .slick-dots li.slick-active button {
    background: #fff;
    transform: scale(1.25);
  }

  /* ── Slick Arrows ── */
  .hero-banner-section .slick-prev,
  .hero-banner-section .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    background: rgba(0,0,0,0.35);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .hero-banner-section .slick-prev { left: 16px; }
  .hero-banner-section .slick-next { right: 16px; }
  .hero-banner-section .slick-prev:hover,
  .hero-banner-section .slick-next:hover { background: rgba(0,0,0,0.6); }

  .hero-banner-section .slick-prev::before,
  .hero-banner-section .slick-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .hero-banner-section .slick-prev::before { transform: rotate(-135deg) translate(-2px, 2px); }
  .hero-banner-section .slick-next::before { transform: rotate(45deg) translate(-2px, 2px); }

  /* Hide arrows/dots if only 1 slide */
  .hero-banner-section.single-slide .slick-prev,
  .hero-banner-section.single-slide .slick-next,
  .hero-banner-section.single-slide .slick-dots { display: none !important; }

  /* ── Mobile ── */
  .hero-slide__bg--mobile { display: none; }

  .hero-slide__bg.hero-slide__bg--mobile{
    display: none;
  }

  .hero-slide__content.right{
    display: block
  }

  .hero-slide__content.right .hero-slide__subheading{
    display: block;
  }

  .hero-slide__content .hero-slide__subheading{
    display: none;
  }

  @media (max-width: 991px){
    .hero-slide__content.right{
        display: none;
    }

    .hero-slide__bg.hero-slide__bg--desktop{
        display: none;
    }

    .hero-slide__bg.hero-slide__bg--mobile{
        display: block;
    }

    .hero-slide__content .hero-slide__subheading{
        display: block;
    }
    .hero-banner-section{
      max-height: 685px;
      min-height: 685px;
    }
      .hero-slide {
    min-height: 685px;
  }

    .hero-banner-section .slick-slider,
    .hero-banner-section .slick-list,
    .hero-banner-section .slick-track {
      height: 100%;
      min-height: 685px;
    }
  }

  @media (max-width: 749px) {
    /* On mobile: image is full height behind, content overlays bottom */
    .hero-slide {
      align-items: flex-end; /* pins content-wrap to bottom */
    }

    .hero-slide__bg--desktop { display: none; }
    .hero-slide__bg--mobile  { display: block; }

    /* Strong bottom gradient so text is always readable */
    /* .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.55) 40%,
        rgba(0,0,0,0.0)  75%
      );
      pointer-events: none;
      z-index: 1;
    } */

    /* On mobile: content always left-aligned, full width, no right-push */
    .hero-slide__content-wrap,
    .hero-slide__content-wrap--left,
    .hero-slide__content-wrap--center,
    .hero-slide__content-wrap--right {
      justify-content: flex-start !important;
      padding: 0 20px 52px;
    }

    .hero-slide__content {
      max-width: 100% !important;
      text-align: left !important;
    }

    .hero-slide__content--left,
    .hero-slide__content--center,
    .hero-slide__content--right {
      text-align: left !important;
    }

    .hero-slide__buttons {
      justify-content: flex-start !important;
    }

    .hero-slide__heading {
      font-size: clamp(32px, 10vw, 52px) !important;
    }

    .hero-slide__subheading { font-size: 14px; }

    .hero-banner-section .slick-prev,
    .hero-banner-section .slick-next { display: none !important; }
  }

  @media (min-width: 750px) {
    .hero-slide__heading {
      font-size: {{ section.settings.heading_size }}px;
    }
  }