/** Shopify CDN: Minification failed

Line 506:16 Unexpected "{"
Line 506:25 Expected ":"
Line 511:16 Unexpected "{"
Line 511:25 Expected ":"
Line 512:16 Unexpected "{"
Line 512:25 Expected ":"
Line 513:16 Unexpected "{"
Line 513:25 Expected ":"
Line 518:16 Unexpected "{"
Line 518:25 Expected ":"
... and 8 more hidden warnings

**/
/* ============================
   HERO SWIPER — LAYOUT
   (Updated: supports custom content positioning + button offsets)
   ============================ */

.hero-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #050505;
  color: #fff;
}

.hero-swiper__wrap {
  height: var(--desk-h);
}

@media (max-width: 767px) {
  .hero-swiper__wrap {
    height: var(--mob-h);
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  height: 100%;
}

/* Slide background image */
.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Modern gradient overlay */
.img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

/* ============================
   TEXT AREA (LATEST HERO STYLE)
   ============================ */

/* Default content container: absolute full inset so valign helpers work */
.slider-info {
  position: absolute;
  inset: 0;                 /* full-cover by default */
  display: flex;
  padding-inline: clamp(16px, 5vw, 80px);
  z-index: 2;
  box-sizing: border-box;
  pointer-events: none;     /* allow clicks through except where text/buttons enable pointer-events */
}

/* vertical align helpers (used when using alignment mode) */
.valign-top    { align-items: flex-start; }
.valign-center { align-items: center; }
.valign-bottom { align-items: flex-end; }

/* text container */
.slider-text {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(32px, 6vh, 80px);
  pointer-events: auto;     /* allow interaction with content inside the overlay */
  overflow: visible;        /* ensure moved buttons are visible */
}

/* horizontal align */
.text-left  { text-align: left;  margin-left: 0; margin-right: auto; }
.text-right { text-align: right; margin-left: auto; margin-right: 0; }
.text-center { text-align: center; }

/* Heading — modern big hero */
.slide-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.1;
  z-index: 3;
}

/* Subheading — softer body */
.slide-sub {
  margin: 0 0 20px;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
  opacity: 0.9;
  z-index: 3;
}

/* Make mobile a bit tighter */
@media (max-width: 767px) {
  .slider-text {
    max-width: 90%;
    padding-block: 24px;
  }

  .slide-title {
    font-size: 24px;
  }

  .slide-sub {
    font-size: 13px;
  }

  .text-left,
  .text-right {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================
   CUSTOM POSITIONING MODE
   - .slider-info.custom-pos : Liquid will set inline top: <value> and --mobile-top
   - .pct-mode : percent mode uses translateY(-50%) to center on the given %
   ============================ */

/* When using custom positioning, override inset and allow top to be set inline */
.slider-info.custom-pos {
  position: absolute;
  left: 0;
  right: 0;
  /* top is expected to be provided inline by Liquid: style="top: 120px; --mobile-top: 60px;" */
  bottom: auto;
  inset: auto 0 auto 0;     /* keep left & right but remove top/bottom */
  display: flex;
  z-index: 2;
  pointer-events: none;     /* inner .slider-text will restore pointer-events */
  box-sizing: border-box;
}

/* Percent-mode: center the block at the provided percentage (e.g. top:50% => centred) */
.slider-info.custom-pos.pct-mode {
  transform: translateY(-50%);
}

/* Mobile override: use the inline --mobile-top variable for mobile top positioning */
@media (max-width: 767px) {
  .slider-info.custom-pos {
    top: var(--mobile-top);
  }
  .slider-info.custom-pos.pct-mode {
    /* keep translateY(-50%) so percent remains centred */
    transform: translateY(-50%);
  }
}

/* ============================
   BUTTON STYLES (MODERN)
   ============================ */

.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s ease;
  letter-spacing: 0.04em;
  padding: 0 24px;
  text-transform: uppercase;
  position: relative;
  border: 0;
  outline: none;
  white-space: nowrap;
  z-index: 4;               /* above overlay and text */
  pointer-events: auto;     /* allow clicks */
  /* button offset defaults controlled by CSS vars set inline by Liquid */
  transform: translateY(var(--btn-offset-desktop, 0px));
  will-change: transform;
}

/* Primary — pill + subtle glow */
.btn-style1 {
  background: linear-gradient(135deg, #111111, #333333);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.btn-style1:hover {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  color: #111111;
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}

/* Outline — glassy style */
.btn-style2 {
  background: rgba(0,0,0,0.25);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}

.btn-style2:hover {
  background: rgba(255,255,255,0.95);
  color: #111111;
  border-color: rgba(255,255,255,1);
}

/* Sizes */
.small {
  font-size: 12px;
  height: 34px;
  padding-inline: 18px;
}

.medium {
  font-size: 13px;
  height: 40px;
  padding-inline: 22px;
}

.large {
  font-size: 14px;
  height: 46px;
  padding-inline: 28px;
}

/* Mobile size control via CSS variable from Liquid */
@media (max-width: 767px) {
  .hero-swiper .slide-btn {
    transform: translateY(calc(var(--btn-offset-mobile, var(--btn-offset-desktop, 0px)) * var(--btn-mobile-scale, 1)));
    transform-origin: center;
    /* ensure scale from earlier optional rules still applies if used */
  }
}

/* Optional: subtle hover lift (preserve combined transforms carefully) */
.slide-btn:hover {
  /* On hover we apply a small lift; we must re-apply translateY by combining calc if mobile rules used.
     Keep simple: use translateY for offsets + separate hover translate by translateY(-2px) on top is tricky,
     but small visual lift is acceptable with transform translate only when no offset—retain a slight scale instead. */
  transform-origin: center;
  /* If there's an offset present, browsers will apply the :hover transform overriding previous transform.
     Avoid overriding offset — prefer scale for hover if offset exists. */
  /* We'll combine translateY from var + scale using two-step transform where needed via inline variables is complex;
     to keep behavior predictable, use scale for hover (non-destructive to translateY already applied above). */
  scale: 1.02;
}

/* ============================
   NAVIGATION (MODERN MINIMAL)
   ============================ */

.swiper-prev,
.swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,0.35);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.swiper-prev { left: 16px; }
.swiper-next { right: 16px; }

.swiper-prev:hover,
.swiper-next:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 480px) {
  .swiper-prev,
  .swiper-next {
    width: 30px;
    height: 30px;
    font-size: 18px;
    opacity: 0.8;
  }
}

/* Pagination bullets — modern dots */
.swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  opacity: 1;
  transition: all .2s ease;
}

.swiper-pagination-bullet-active {
  width: 18px;
  background: #ffffff;
}

/* ============================
   MAKE ENTIRE SLIDE CLICKABLE
   ============================ */

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  z-index: 1; /* below text and buttons */
}

/* ============================
   MOBILE: HIDE TITLE / SUBTITLE / BUTTON
   (controlled from section attributes)
   ============================ */

@media (max-width: 767px) {
  /* Hide title on mobile when enabled */
  .hero-swiper[data-hide-title-mobile="1"] .slide-title {
    display: none;
  }

  /* Hide subtitle on mobile when enabled */
  .hero-swiper[data-hide-subtitle-mobile="1"] .slide-sub {
    display: none;
  }

  /* Hide button on mobile when enabled */
  .hero-swiper[data-hide-button-mobile="1"] .slide-btn {
    display: none;
  }
}
/* ==================================================
   TABLET FIX (768px – 1024px)
   Prevent image & content overlap
================================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Slider height for tablets */
  .hero-swiper {
    height: 420px;
  }

  .hero-swiper .swiper-slide {
    height: 420px;
  }

  /* Image handling */
  .hero-swiper .slide-image,
  .hero-swiper .slide-bg {
    height: 100%;
  }

  .hero-swiper .slide-bg {
    object-fit: cover;
    object-position: center;
  }

  /* Content positioning reset */
  .hero-swiper .slider-info {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    padding: 0 40px;
  }

  /* Disable custom offsets on tablet */
  .hero-swiper .slider-info.custom-pos {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Text width control */
  .hero-swiper .slider-text {
    max-width: 600px !important;
  }

  /* Button spacing fix */
  .hero-swiper .slide-btn-wrap {
    margin-top: 14px;
  }
}
/* ==================================================
   TABLET SAFE FIX (768px – 1024px)
   ADD-ON ONLY — existing code untouched
================================================== */

@media (min-width: 768px) and (max-width: 1024px) {

  /* Use wrap as single height source */
  .hero-swiper__wrap {
    height: 420px;
  }

  .hero-swiper,
  .hero-swiper .swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    height: 100%;
  }

  /* Image stays visible */
  .hero-swiper .slide-image {
    position: relative;
    height: 100%;
  }

  .hero-swiper .slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* NORMALIZE content positioning (no overlap) */
  .hero-swiper .slider-info {
    top: 0;
    bottom: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
  }

  /* Disable custom top shifts on tablet only */
  .hero-swiper .slider-info.custom-pos,
  .hero-swiper .slider-info.custom-pos.pct-mode {
    top: 0;
    transform: none;
  }

  /* Text width safety */
  .hero-swiper .slider-text {
    max-width: 620px;
  }

  /* Button spacing */
  .hero-swiper .slide-btn-wrap {
    margin-top: 16px;
  }
}
/* ==================================================
   HERO SLIDER — TABLET HEIGHT RESPONSIVE FIX
   768px – 1024px
   Prevent image & content overlap
================================================== */
@media (min-width: 768px) and (max-width: 1024px){

  /* Slider wrapper height */
  #hero-swiper-{{ section.id }} .hero-swiper__wrap{
    height: 440px;   /* tablet ideal height */
  }

  /* Each slide takes full height */
  #hero-swiper-{{ section.id }} .swiper,
  #hero-swiper-{{ section.id }} .swiper-slide,
  #hero-swiper-{{ section.id }} .slide-image{
    height: 100%;
  }

  /* Image auto-adjusts to container */
  #hero-swiper-{{ section.id }} .slide-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;        /* no stretch */
    object-position: center;  /* no crop weirdness */
    display: block;
  }

  /* Reset any custom offsets to avoid overlap */
  #hero-swiper-{{ section.id }} .slider-info{
    inset: 0;
    padding: 0 48px;
    align-items: center;
    justify-content: center;
  }

  /* Custom positioning safety */
  #hero-swiper-{{ section.id }} .slider-info.custom-pos{
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Text width balanced for tablet */
  #hero-swiper-{{ section.id }} .slider-text{
    max-width: 560px;
  }

  /* Button spacing safety */
  #hero-swiper-{{ section.id }} .slide-btn-wrap{
    margin-top: 16px;
  }
}
/* ==================================================
   FINAL OVERRIDE — FORCE TABLET = MOBILE
   This OVERRIDES all previous tablet rules
================================================== */
@media (min-width: 768px) and (max-width: 1024px){

  /* 🔒 Use MOBILE height everywhere */
  .hero-swiper__wrap{
    height: var(--mob-h) !important;
  }

  .hero-swiper,
  .hero-swiper .swiper,
  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide,
  .hero-swiper .slide-image{
    height: 100% !important;
  }

  /* ✅ Image behaves EXACTLY like mobile */
  .hero-swiper .slide-bg{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

  /* 🚫 Kill ALL custom positioning on tablet */
  .hero-swiper .slider-info,
  .hero-swiper .slider-info.custom-pos,
  .hero-swiper .slider-info.custom-pos.pct-mode{
    inset: 0 !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* 📱 Mobile text sizing */
  .hero-swiper .slider-text{
    max-width: 90% !important;
    padding-block: 24px !important;
  }

  .hero-swiper .slide-title{
    font-size: 24px !important;
  }

  .hero-swiper .slide-sub{
    font-size: 13px !important;
  }

  /* Button behaves like mobile */
  .hero-swiper .slide-btn{
    transform: translateY(
      calc(var(--btn-offset-mobile, var(--btn-offset-desktop, 0px)) * var(--btn-mobile-scale, 1))
    ) !important;
  }
}


/* ============================
   NOTES:
   - .slider-info (default) uses valign classes and fills the slide.
   - .slider-info.custom-pos expects inline `top:` for desktop and `--mobile-top:` for mobile.
   - .slider-info.custom-pos.pct-mode will center at the provided percent (50% = centre).
   - Buttons offsets via --btn-offset-desktop and --btn-offset-mobile (set by Liquid).
   ============================ */
