/** Shopify CDN: Minification failed

Line 261:20 Unexpected "{"
Line 261:29 Expected ":"

**/
/* Assets/section-tl-animation.css */

/* --- Main Layout --- */
.tl-anim-wrapper {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  height: auto; 
  overflow: hidden; 
  z-index: 10;
}

/* Container pinned by GSAP */
.tl-anim-pin-container {
  width: 100%;
  height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff;
  margin: 0 auto; 
}

/* --- Content Box --- */
.tl-anim-content-box {
  width: 100%;
  max-width: 1400px; 
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center; 
  align-items: center;
  padding: 0 40px 0 10%; 
  gap: 5%; 
  margin: 0 auto;
  position: relative;
}

/* --- Left Column: Text Steps --- */
.tl-anim-text-col {
  width: 35%; 
  height: 100%;
  position: relative;
  display: block; 
  z-index: 2;
}

/* Alignment Anchor */
.tl-anim-step-wrapper {
  position: absolute;
  top: 18%; 
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  will-change: opacity;
  transform: none; 
  
}



.tl-anim-step-wrapper.active {
  opacity: 1;
  visibility: visible;
}

/* --- Typography --- */
.tl-step-headline {
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 1.7em;
  line-height: 1.4;
  color: #343434;
  margin-bottom: 15px;
}

.tl-step-subcopy {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #343434;
  margin-bottom: 25px;
}

/* Grey Box */
.tl-step-box {
  background-color: #f7f8f8;
  border-radius: 15px;
  padding: 2.5px 20px 0px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tl-box-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.tl-box-text {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #343434;
  line-height: 1.3;
}

.tl-box-text strong {
  font-weight: 700;
}

/* Kicker Link */
.tl-step-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: linear-gradient(90deg, #ff3eb5, #00c2d8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Right Column: Spline --- */
.tl-anim-spline-col {
  width: 60%; 
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.spline-wrapper {
  width: 100%;
  height: 80vh;
  position: relative;
  border-radius: 20px;
}

spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

/* Loader */
.tl-spline-loader {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #fff;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.tl-spline-loader.loaded {
  opacity: 0;
}

/* --- MOBILE RESPONSIVE (Vertical Stack) --- */
@media screen and (max-width: 900px) {
  .tl-anim-pin-container {
    height: 100vh; 
    display: flex;
    flex-direction: column;
  }

  
  
  .tl-anim-content-box {
    flex-direction: column; 
    justify-content: flex-start;
    padding-bottom: 20px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    /* RESET padding for mobile */
    padding: 10px 10px 20px 10px;
    gap: 0;
  }

  /* 1. Spline on Top Half */
  .tl-anim-spline-col {
    width: 100%;
    height: 60vh; 
    order: 2;
  }
  
  .spline-wrapper {
    height: 100%;
    border-radius: 0;
  }

  /* 2. Text on Bottom Half */
  .tl-anim-text-col {
    width: 100%;
    height: 40vh;
    order: 1;
    display: block; 
  }
  
  .tl-anim-step-wrapper {
    top: 50%;
    transform: translateY(-50%); 
    text-align: center; 
    padding: 0 10px;
  }

  .tl-step-headline {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .tl-step-subcopy {
    display: none;
  }
  
  .tl-step-box {
    justify-content: center;
    text-align: left;
    padding: 0px 15px;
    margin-bottom: 20px;
  }
  
  .tl-box-text {
    font-size: 3.5vw; 
  }

  .tl-step-kicker {
  font-size: 13px;

}
  
  /* --- MOBILE SVG FIX: Aspect Ratio Container --- */
  
  /* 1. The Container determines the size/shape */
  #shopify-section-{{ section.id }} .tl-img-container {
    width: 100%;
    /* 5.4 aspect ratio logic: Height will be approx 18.5% of width */
    aspect-ratio: 5.4 / 1; 
    height: auto !important; /* Override inline desktop height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  /* 2. The Image fits inside */
  .tl-step-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain; /* Ensures image is never cropped, just fitted */
  }
}