/** Shopify CDN: Minification failed

Line 208:14 Unexpected "{"
Line 208:23 Expected ":"
Line 209:14 Unexpected "{"
Line 209:23 Expected ":"
Line 276:14 Unexpected "{"
Line 276:23 Expected ":"
Line 277:14 Unexpected "{"
Line 277:23 Expected ":"
Line 278:14 Unexpected "{"
Line 278:23 Expected ":"
... and 6 more hidden warnings

**/
.static-3d-showcase {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  margin: 0;
  /* width: 100vw;      */      /* MOD: avoid subtle horizontal bleed from 100vw */
  width: 100%;                  /* MOD */
  max-width: none;
  padding: 0;
}

.s3ds-header {
  text-align: center;
  margin: 4rem auto 2rem;
  max-width: 1200px;
  padding-inline: 1rem;
}
.s3ds-title {
  margin: 0 0 .5rem;
  font-size: clamp(24px, 2.4vw, 36px);
  color: #011461;
  font-family: 'EarlSans-Regular', system-ui, sans-serif;
}
.s3ds-intro {
  margin: 0 auto 1.5rem;
  max-width: 68ch;
  color: #011461;
  opacity: .9;
  font-family: 'EarlSans-Regular', system-ui, sans-serif;
}

/* ===== Desktop list ===== */
.s3ds-list {
  display: grid;
  /* width: 100vw; */            /* MOD */
  width: 100%;                   /* MOD */
  gap: 0;
}

.s3ds-item {
  display: grid;
  grid-template-columns: 50% 50%;
  position: relative;
  min-height: 60vw;
}
.s3ds-item.s3ds--right .s3ds-media { order: 2; }
.s3ds-item.s3ds--right .s3ds-content { order: 1; }

.s3ds-content {
  color: #011461;
  max-width: 50%;
  margin-inline: auto;
  z-index: 2;
  align-content: center;
  text-align: left;
}
.s3ds-subtitle {
  margin: 1rem 0 .5rem;
  font-size: 42px;
  line-height: 1.1;
  font-family: 'EarlSans-Regular', system-ui, sans-serif;
  color: #011461;
}
.s3ds-text {
  margin: .5rem 0 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'EarlSans-Regular', system-ui, sans-serif;
}

/* Chip / Glass badge (same as animated) */
.subheading-glass {
  padding: 0.5rem 2rem;
  margin-bottom: 0;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #011461;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.glass-background-3d {
  background: rgba(255, 255, 255, 0.25);
  border-image: linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(255,255,255,0)) 1;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

/* ===== MEDIA HALF (independent MAIN + OVERLAY) ===== */
.s3ds-media {
  position: relative;
  width: 100%;
  /* height: 100vh; */           /* MOD: child taller than parent created overflow */
  height: 100%;                  /* MOD: fill the row’s height (min-height:100vh) */
  overflow: visible;
  --main-fit: cover;
  --main-shift: 0%;              /* shift image horizontally inside its half */
  --ov-size: 25rem;
  --ov-x: 10%;
  --ov-y: -10%;
}

/* MAIN */
.s3ds-main {
  position: absolute;
  inset: 0;
}
.s3ds-main-img {
  position: absolute;
  top: 50%;
  width: 100%;
  object-position: center;
}

.s3ds--right .s3ds-media .s3ds-main .s3ds-main-img{
  left: 0rem;
  transform: translate(calc(-6% + var(--main-shift)), -50%);
  width: 80vw;
}
.s3ds--left .s3ds-media .s3ds-main .s3ds-main-img{
  left: 1rem;
  transform: translate(calc(-25% + var(--main-shift)), -50%);
  width: 60vw;
}

/* OVERLAY (independent size/pos + side) */
.s3ds-overlay {
  position: absolute;
  /* width: 20vw; */             /* MOD: coupling to vw made badge grow/shrink with screen */
  width: var(--ov-size);         /* MOD: respect per-block size slider (rem or clamp) */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%) translate(var(--ov-x), var(--ov-y)); /* MOD: stable XY offset */
}
.s3ds-overlay--left  { left: 55%; right: auto; top:36%;}
.s3ds-media > .s3ds-overlay--right {
  right: 64%;
  top: 24%;
  left: auto;
}
.s3ds-item[data-index="2"] .s3ds-overlay--right {
  right: 85%;
  top: 40%;
  left: auto;
}

/* ===== Very large screens — balance layout ===== */
@media (min-width: 2559px) {
  .s3ds-item { min-height: 40vh; }
  .s3ds-overlay { width: var(--ov-size); }
  .s3ds-list { margin-bottom: 0; }
  .s3ds-content { max-width: 40vw; padding-inline: 8vw; }

  .s3ds-media > .s3ds-overlay--right { right: 70%; top: 23%; left: auto; }
  .s3ds-main-img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
  .s3ds-overlay--left { left: 70%; right: auto; top: 25%; }
  .s3ds-item[data-index="2"] .s3ds-overlay--right { right: 70%; top: 25%; left: auto; }

  .s3ds--left .s3ds-media .s3ds-main .s3ds-main-img {
    width: 80%;
    transform: translate(calc(25% + var(--main-shift)), -50%);
    left: 0rem;
  }
  .s3ds--right .s3ds-media .s3ds-main .s3ds-main-img {
    left: 0rem;
    transform: translate(calc(0% + var(--main-shift)), -50%);
    width: 80%;
  }
}

/* ============================
   MOBILE/Tablet slider (<= 999px)
   ============================ */
.s3ds-mobile-wrapper { display: none; }

@media (max-width: 999px) {

  /* Toggle desktop/mobile containers */
  #static-3d-{{ section.id }} .s3ds-list { display: none; }
  #static-3d-{{ section.id }} .s3ds-mobile-wrapper { display: block; overflow: hidden; }

  .static-3d-showcase { padding-inline: 1rem; }

  .mobile-slide-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    max-width: 30rem;
    margin-inline: auto;
  }

  .image-wrapper { position: relative; }
  .image-wrapper img {
    display: block;
    width: 20rem;
    height: auto;
    object-fit: cover;
    place-self: center;
    margin-top: 6rem;
  }

  .slide-heading-glass {
    position: absolute;
    top: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #011461;
    text-transform: uppercase;
    place-self: center;
  }

  .slide-text-glass { padding-top: 0.5rem; }
  .slide-text-glass h2 {
    font-size: 32px;
    font-weight: 700;
    color: #011461;
    margin: 0 0 0.5rem;
  }
  .slide-text-glass p {
    font-size: 16px;
    color: #011461;
    line-height: 1.5;
    margin: 0;
    font-family: 'EarlSans-Regular';
    margin-bottom: 2rem;
  }

  /* Slick dots */
  .s3ds-dots { margin-top: 1rem; text-align: center; padding: 0; }
  .s3ds-dots ul {
    padding: 0; margin: 0 auto;
    display: inline-flex; list-style: none; gap: 0.5rem;
  }
  .s3ds-dots li button {
    width: 10px; height: 12px; background: #fff !important; opacity: 0.4;
    border-radius: 50%; border: none; font-size: 0;
  }
  .s3ds-dots .slick-active button { opacity: 1; background: #011461 !important; }

  /* Slider width consistency */
  #static-3d-{{ section.id }} .s3ds-mobile-slider { max-width: 100%; }
  #static-3d-{{ section.id }} .slick-list { max-width: 100% !important; }
  #static-3d-{{ section.id }} .slick-track {
    display: flex !important;
    transform: translate3d(0, 0, 0);
    gap: 1rem;
  }
}

/* ============================
   Tablet narrow two-up (769px–999px)
   ============================ */
@media (min-width: 769px) and (max-width: 999px) {
  /* Let Slick control widths; avoid fixed max-width + centering that breaks two-up */
  #static-3d-{{ section.id }} .mobile-slide-card {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 1.25rem; /* slightly tighter padding so 2-up feels airy */
  }

  /* Create a nice gutter between slides */
  #static-3d-{{ section.id }} .slick-slide { padding: 0 8px; }
  #static-3d-{{ section.id }} .slick-list { margin: 0 -8px; }
}
