/** Shopify CDN: Minification failed

Line 44:0 All "@import" rules must come first

**/
/* ============================================
   HERO SLIDER - 4MB.973 Style
   Shopify Dawn 2.0 Compatible
   v3 - Split Layout + Extended Options
   ============================================ */

   /* ============================================
   FORCE FULL WIDTH FOREGROUND IMAGE
   ============================================ */

.hero-slider__foreground,
.hero-slider__foreground--right,
.hero-slider__foreground--left,
.hero-slider__foreground--center {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  display: block;
}

.hero-slider__foreground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fix mobile width issue */
@media screen and (max-width: 990px) {
  .hero-slider__foreground,
  .hero-slider__foreground--right,
  .hero-slider__foreground--left {
    width: 100% !important;
    opacity: 1;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script:wght@700&family=Oswald:wght@400;700&family=Anton&family=Great+Vibes&family=Barlow+Condensed:wght@400;700;900&family=Playfair+Display:wght@700;900&family=Montserrat:wght@400;700;900&display=swap');

/* ============================================
   SECTION WRAPPER
   ============================================ */
.hero-slider-wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
}

.hero-slider-section {
  position: relative;
  width: 100%;
  height: var(--slide-height, 600px);
  overflow: hidden;
  background: #0a0a0a;
}

/* ============================================
   SLIDE TRACK & SLIDES
   ============================================ */
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed, 700ms) ease;
  will-change: opacity;
}

.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Slide Transitions */
.hero-slider__track[data-transition="slide"] .hero-slider__slide {
  transform: translateX(100%);
  transition: transform var(--transition-speed, 700ms) cubic-bezier(0.77, 0, 0.175, 1), opacity 0ms;
  opacity: 1;
}
.hero-slider__track[data-transition="slide"] .hero-slider__slide.is-active {
  transform: translateX(0);
  z-index: 2;
}

.hero-slider__track[data-transition="zoom"] .hero-slider__slide {
  transform: scale(1.06);
  transition: opacity var(--transition-speed, 700ms) ease, transform var(--transition-speed, 700ms) ease;
}
.hero-slider__track[data-transition="zoom"] .hero-slider__slide.is-active {
  transform: scale(1);
}

/* ============================================
   SLIDE LAYOUT MODES
   ============================================ */

/* --- FULL BACKGROUND (default) --- */
.hero-slider__slide--layout-fullbg {
  /* background set inline, content floats above */
}

/* --- SPLIT LAYOUT --- */
.hero-slider__slide--layout-split {
  display: flex;
  flex-direction: row;
  background: var(--split-bg, #0a0a0a) !important;
}

/* Split: left text panel */
.hero-slider__split-text {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex: 0 0 var(--split-text-width, 50%);
  max-width: var(--split-text-width, 50%);
  padding: 60px var(--split-gap, 40px) 60px 40px;
  height: 100%;
}

/* Split: right image panel */
.hero-slider__split-image {
  position: relative;
  flex: 1 1 auto;
  height: 100%;
  overflow: hidden;
}

.hero-slider__split-image img {
  width: 100%;
  height: 100%;
  object-fit: var(--split-img-fit, cover);
  object-position: var(--split-img-position, center center);
  display: block;
}

/* Image-left split: reverse order */
.hero-slider__slide--split-image-left .hero-slider__split-text {
  order: 2;
  padding: 60px 40px 60px var(--split-gap, 40px);
}
.hero-slider__slide--split-image-left .hero-slider__split-image {
  order: 1;
}

/* Decorative divider between split panels */
.hero-slider__split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--split-divider-width, 3px);
  background: var(--split-divider-color, rgba(255,255,255,0.15));
  z-index: 4;
  left: var(--split-text-width, 50%);
  transform: translateX(-50%);
}

.hero-slider__slide--split-image-left .hero-slider__split-divider {
  left: auto;
  right: var(--split-text-width, 50%);
}

/* Angled divider variant */
.hero-slider__split-divider--angled {
  width: 60px;
  background: var(--split-bg, #0a0a0a);
  clip-path: polygon(30px 0%, 100% 0%, 30px 100%, 0% 100%);
  z-index: 5;
}

/* ============================================
   FOREGROUND IMAGE (floating over content)
   ============================================ */
.hero-slider__foreground {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-slider__foreground--right {
  right: 0;
  top: 0;
  bottom: 0;
  width: var(--fg-width, 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-slider__foreground--left {
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--fg-width, 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-slider__foreground--center {
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: var(--fg-width, 40%);
}

.hero-slider__foreground img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* Foreground image with fade-up entrance */
.hero-slider__slide.is-active .hero-slider__foreground img {
  animation: fgSlideUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.15s;
  opacity: 0;
}

@keyframes fgSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   OVERLAY & TEXTURE
   ============================================ */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Gradient overlay variants */
.hero-slider__overlay--gradient-left {
  background: linear-gradient(90deg, var(--overlay-color-start, rgba(0,0,0,0.85)) 0%, var(--overlay-color-end, rgba(0,0,0,0.1)) 60%, transparent 100%);
  opacity: 1 !important;
  background-color: transparent !important;
}

.hero-slider__overlay--gradient-right {
  background: linear-gradient(270deg, var(--overlay-color-start, rgba(0,0,0,0.85)) 0%, var(--overlay-color-end, rgba(0,0,0,0.1)) 60%, transparent 100%);
  opacity: 1 !important;
  background-color: transparent !important;
}

.hero-slider__overlay--gradient-center {
  background: radial-gradient(ellipse at center, transparent 30%, var(--overlay-color-start, rgba(0,0,0,0.8)) 100%);
  opacity: 1 !important;
  background-color: transparent !important;
}

.hero-slider__overlay--gradient-bottom {
  background: linear-gradient(0deg, var(--overlay-color-start, rgba(0,0,0,0.9)) 0%, transparent 60%);
  opacity: 1 !important;
  background-color: transparent !important;
}

.hero-slider__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ============================================
   CONTAINER & CONTENT
   ============================================ */
.hero-slider__container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.page-width.hero-slider__container {
  max-width: 1400px;
  margin: 0 auto;
}

.hero-slider__content--top    { margin-top: 0; align-self: flex-start; padding-top: 60px; }
.hero-slider__content--middle { align-self: center; }
.hero-slider__content--bottom { align-self: flex-end; padding-bottom: 60px; }

.hero-slider__content--left   { text-align: left; margin-right: auto; }
.hero-slider__content--center { text-align: center; margin: 0 auto; }
.hero-slider__content--right  { text-align: right; margin-left: auto; }

/* ============================================
   BADGE / STAMP
   ============================================ */
.hero-slider__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--badge-size, 80px);
  height: var(--badge-size, 80px);
  border-radius: 50%;
  border: 2px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  padding: 8px;
  margin-bottom: 20px;
  animation: badgeSpin 12s linear infinite;
  position: relative;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-slider__badge--no-spin {
  animation: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.hero-slider__eyebrow {
  margin: 0 0 16px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-10px);
  animation: slideInDown 0.6s ease forwards 0.1s;
}

.hero-slider__heading {
  margin: 0 0 8px;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.2s;
}

.hero-slider__subheading {
  margin: 0 0 20px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(15px);
  animation: slideInUp 0.6s ease forwards 0.4s;
}

.hero-slider__body {
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(10px);
  animation: slideInUp 0.6s ease forwards 0.5s;
}

/* Highlight span inside heading */
.hero-slider__heading-highlight {
  position: relative;
  display: inline-block;
}

.hero-slider__heading-highlight--underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: var(--highlight-thickness, 4px);
  background: var(--highlight-color, currentColor);
}

.hero-slider__heading-highlight--outline {
  -webkit-text-stroke: var(--outline-width, 2px) var(--outline-color, currentColor);
  color: transparent;
}

/* Divider line between heading and subheading */
.hero-slider__divider {
  width: var(--divider-width, 60px);
  height: var(--divider-height, 2px);
  background: var(--divider-color, currentColor);
  margin: 12px 0 20px;
  opacity: 0;
  animation: slideInUp 0.6s ease forwards 0.35s;
}

.hero-slider__content--center .hero-slider__divider {
  margin-left: auto;
  margin-right: auto;
}

/* Reset animations on inactive slides */
.hero-slider__slide:not(.is-active) .hero-slider__eyebrow,
.hero-slider__slide:not(.is-active) .hero-slider__heading,
.hero-slider__slide:not(.is-active) .hero-slider__subheading,
.hero-slider__slide:not(.is-active) .hero-slider__body,
.hero-slider__slide:not(.is-active) .hero-slider__buttons,
.hero-slider__slide:not(.is-active) .hero-slider__divider {
  animation: none;
  opacity: 0;
  transform: translateY(10px);
}

.hero-slider__slide:not(.is-active) .hero-slider__foreground img {
  animation: none;
  opacity: 0;
}

@keyframes slideInUp   { to { opacity: 1; transform: translateY(0); } }
@keyframes slideInDown { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   BUTTONS
   ============================================ */
.hero-slider__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: slideInUp 0.6s ease forwards 0.65s;
}

.hero-slider__buttons--left   { justify-content: flex-start; }
.hero-slider__buttons--center { justify-content: center; }
.hero-slider__buttons--right  { justify-content: flex-end; }

.hero-slider__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-slider__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-slider__btn:hover::before { opacity: 0.1; }
.hero-slider__btn--primary:hover { transform: translateX(4px); }
.hero-slider__btn--secondary:hover { background-color: rgba(255,255,255,0.1) !important; }

/* Icon button */
.hero-slider__btn--icon-only {
  width: 52px;
  height: 52px;
  padding: 0 !important;
  justify-content: center;
  border-radius: 50% !important;
}

/* ============================================
   VIDEO PLAY BUTTON (for video bg slides)
   ============================================ */
.hero-slider__play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  margin-bottom: 32px;
  opacity: 0;
  animation: slideInUp 0.6s ease forwards 0.55s;
}

.hero-slider__play-btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}

.hero-slider__play-btn:hover .hero-slider__play-btn-circle {
  transform: scale(1.1);
  background: rgba(255,255,255,0.15);
}

.hero-slider__play-btn-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   BACKGROUND VIDEO
   ============================================ */
.hero-slider__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   SIDE TEXT (Vertical)
   ============================================ */
.hero-slider__side-text {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
  z-index: 4;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s ease forwards 0.8s;
}

.hero-slider__side-text--right {
  right: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.hero-slider__side-text--left {
  left: 20px;
  transform: translateY(-50%);
}

.hero-slider__side-text::after {
  content: '';
  width: 1px;
  height: 40px;
  background: currentColor;
  opacity: 0.5;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.hero-slider__scroll-indicator {
  position: absolute;
  bottom: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}

.hero-slider__scroll-indicator--center { left: 50%; transform: translateX(-50%); }
.hero-slider__scroll-indicator--left   { left: 40px; }

.hero-slider__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.hero-slider__scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollBob 1.8s ease infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100%      { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

.hero-slider__scroll-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   COUNTER / SLIDE NUMBER
   ============================================ */
.hero-slider__counter {
  position: absolute;
  z-index: 10;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider__counter--bottom-left  { bottom: 24px; left: 40px; }
.hero-slider__counter--bottom-right { bottom: 24px; right: 40px; }

.hero-slider__counter-current {
  font-size: 2em;
  line-height: 1;
}

.hero-slider__counter-sep {
  opacity: 0.4;
  font-size: 0.8em;
}

.hero-slider__counter-total {
  opacity: 0.4;
  font-size: 0.9em;
}

/* ============================================
   NAVIGATION ARROWS
   ============================================ */
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 0;
}

.hero-slider__arrow--prev { left: 20px; }
.hero-slider__arrow--next { right: 20px; }

.hero-slider__arrow:hover { transform: translateY(-50%) scale(1.1); }

/* Arrow style variants */
.hero-slider__arrow--style-circle {
  border-radius: 50%;
  border: 2px solid currentColor !important;
}

.hero-slider__arrow--style-square {
  border-radius: 0;
  border: 2px solid currentColor !important;
}

.hero-slider__arrow--style-minimal {
  background: transparent !important;
  width: 40px;
  height: 40px;
}

/* ============================================
   DOT INDICATORS
   ============================================ */
.hero-slider__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Dot style: default circles */
.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--dot-color, rgba(255,255,255,0.4));
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider__dot.is-active {
  background: var(--dot-active, #ffffff);
  width: 24px;
  border-radius: 4px;
}

/* Dot style: lines */
.hero-slider__dots--style-lines .hero-slider__dot {
  width: 24px;
  height: 2px;
  border-radius: 1px;
}

.hero-slider__dots--style-lines .hero-slider__dot.is-active {
  width: 48px;
  border-radius: 1px;
}

/* Dot style: numbered */
.hero-slider__dots--style-numbers .hero-slider__dot {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dot-color, rgba(255,255,255,0.4));
  padding: 4px 6px;
}

.hero-slider__dots--style-numbers .hero-slider__dot.is-active {
  width: auto;
  color: var(--dot-active, #ffffff);
  background: transparent;
  border-bottom: 2px solid currentColor;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10;
  transition: none;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media screen and (max-width: 990px) {
  .hero-slider-section {
    height: calc(var(--slide-height, 600px) * 0.8);
  }

  .hero-slider__container {
    padding: 0 24px;
  }

  .hero-slider__heading {
    font-size: clamp(48px, 12vw, 120px) !important;
  }

  .hero-slider__side-text--right { right: 8px; }

  /* Split: stack on tablet */
  .hero-slider__slide--layout-split {
    flex-direction: column;
    height: auto;
    min-height: 100%;
  }

  .hero-slider__split-text,
  .hero-slider__slide--split-image-left .hero-slider__split-text {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 40px 24px;
    order: 2;
  }

  .hero-slider__split-image,
  .hero-slider__slide--split-image-left .hero-slider__split-image {
    flex: 0 0 240px;
    height: 240px;
    width: 100%;
    order: 1;
  }

  .hero-slider__split-divider { display: none; }

  .hero-slider__foreground--right,
  .hero-slider__foreground--left {
    width: 50%;
    opacity: 0.5;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media screen and (max-width: 749px) {
  .hero-slider-section {
    height: var(--slide-height-mobile, 500px);
  }

  .hero-slider__container {
    padding: 0 20px;
  }

  .hero-slider__content--left,
  .hero-slider__content--center,
  .hero-slider__content--right {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
  }

  .hero-slider__heading    { font-size: clamp(40px, 16vw, 90px) !important; }
  .hero-slider__subheading { font-size: clamp(20px, 6vw, 36px) !important; }
  .hero-slider__body       { font-size: 14px !important; }

  .hero-slider__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-slider__btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .hero-slider__side-text   { display: none; }
  .hero-slider__scroll-indicator { display: none; }
  .hero-slider__counter--bottom-left,
  .hero-slider__counter--bottom-right { display: none; }

  .hero-slider__arrow       { width: 36px; height: 36px; }
  .hero-slider__arrow--prev { left: 8px; }
  .hero-slider__arrow--next { right: 8px; }
  .hero-slider__dots        { bottom: 16px; }

  .hero-slider__split-image {
    flex: 0 0 180px;
    height: 180px;
  }

}
