/** Shopify CDN: Minification failed

Line 127:59 Expected "]" to go with "["

**/
/**
 * Freedom Hero Section Styles
 * Full-width hero banner with auto-sliding images
 * Desktop: 3 images visible, Mobile: 1 image visible
 */

/* Full-bleed wrapper - normal on desktop */
.freedom-hero-bleed {
  overflow: hidden;
}

.freedom-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.freedom-hero__swiper {
  width: 100%;
  height: clamp(500px, 54vw, 720px);
  overflow: hidden;
}

/* Full screen: hero fills the viewport */
.freedom-hero__swiper--full_screen {
  height: 100vh;
  min-height: 400px;
}

.freedom-hero__swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.freedom-hero__slide {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide link - fills the slide when a URL is set in theme editor */
.freedom-hero__slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.freedom-hero__slide-link .freedom-hero__image {
  position: relative;
  z-index: 0;
}

.freedom-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Desktop: show desktop image, hide mobile */
.freedom-hero__image--desktop {
  display: block;
}

.freedom-hero__image--mobile {
  display: none;
}

/* Mobile: show mobile image if available, otherwise desktop */
@media all and (max-width: 989px) {
  /* All slides full width on mobile */
  .freedom-hero .freedom-hero__slide-wrapper,
  .freedom-hero .freedom-hero__slide-wrapper--full {
    width: 100%;
  }

  .freedom-hero__swiper {
    height: clamp(450px, 120vw, 700px);
  }

  .freedom-hero__swiper--full_screen {
    height: 100vh;
    min-height: 360px;
  }

  /* Use contain on mobile to reduce aggressive cropping (standard height only) */
  .freedom-hero__image {
    object-fit: contain;
  }

  /* Full screen: keep cover so slide fills viewport */
  .freedom-hero--full_screen .freedom-hero__image {
    object-fit: cover;
  }

  .freedom-hero__image--desktop {
    display: none;
  }

  .freedom-hero__image--mobile {
    display: block;
  }

  /* If no mobile image, show desktop image */
  .freedom-hero__slide:has(.freedom-hero__image--mobile[src=""]) .freedom-hero__image--desktop,
  .freedom-hero__slide:not(:has(.freedom-hero__image--mobile)) .freedom-hero__image--desktop {
    display: block;
  }

  .freedom-hero__slide:has(.freedom-hero__image--mobile[src!=""]) .freedom-hero__image--desktop {
    display: none;
  }
}

/* Hide default Swiper UI elements */
.freedom-hero .swiper-pagination,
.freedom-hero .swiper-button-next,
.freedom-hero .swiper-button-prev,
.freedom-hero .swiper-scrollbar {
  display: none !important;
}

/* Custom navigation arrows */
.freedom-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.freedom-hero__nav:hover {
  color: #fff;
}

.freedom-hero__nav--prev {
  left: 20px;
}

.freedom-hero__nav--next {
  right: 20px;
}

.freedom-hero__nav svg {
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

@media all and (max-width: 989px) {
  .freedom-hero__nav {
    padding: 10px;
  }
  .freedom-hero__nav--prev {
    left: 8px;
  }
  .freedom-hero__nav--next {
    right: 8px;
  }
  .freedom-hero__nav svg {
    width: 14px;
    height: 26px;
  }
}

/* Ensure slides maintain fixed height */
.freedom-hero .swiper-slide {
  height: 100%;
  display: flex;
  align-items: stretch;
}

/* Variable slide width (desktop): used with Swiper slidesPerView: 'auto' */
.freedom-hero .freedom-hero__slide-wrapper {
  width: 33.333%;
  box-sizing: border-box;
}

.freedom-hero .freedom-hero__slide-wrapper--full {
  width: 100%;
}

/* CTA buttons */
.freedom-hero__ctas {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 20px 16px 36px;
  z-index: 2;
  pointer-events: none;
}

.freedom-hero__ctas .freedom-hero__cta {
  pointer-events: auto;
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: #000;
  font-family: 'Pretendard', Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.freedom-hero__ctas .freedom-hero__cta:hover {
  background: #000;
  color: #fff;
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
}

/* Placeholder styling */
.freedom-hero__placeholder {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  color: #666;
  padding: 40px 20px;
  text-align: center;
}

.freedom-hero__placeholder p {
  font-family: Pretendard, Arial, sans-serif;
  font-size: 14px;
  margin: 0;
}

/* Full-bleed wrapper for mobile - breaks out of page-width container */
@media (max-width: 989px) {
  .freedom-hero-bleed {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
  }
  
  .freedom-hero-bleed .freedom-hero,
  .freedom-hero-bleed .swiper,
  .freedom-hero-bleed .swiper-wrapper,
  .freedom-hero-bleed .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .freedom-hero-bleed img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Remove page-width padding inside hero section */
  .section-hero-freedom .page-width,
  .section-hero-freedom .page-width--narrow,
  .section-hero-freedom .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: none !important;
  }

  .freedom-hero__ctas {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 16px 12px 28px;
  }

  .freedom-hero__ctas .freedom-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    font-size: 11px;
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
  }
}
