/** Shopify CDN: Minification failed

Line 144:15 Unexpected "{"
Line 144:24 Expected ":"
Line 150:15 Unexpected "{"
Line 150:24 Expected ":"
Line 154:15 Unexpected "{"
Line 154:24 Expected ":"
Line 155:15 Unexpected "{"
Line 155:24 Expected ":"
Line 159:15 Unexpected "{"
Line 159:24 Expected ":"
... and 4 more hidden warnings

**/
.section-shop-the-look {
  overflow: visible;
}

.section-shop-the-look .image-overlay__over.text-overlay--products {
  position: static !important;
  background: none;
  padding: 0;
}

.section-shop-the-look .text-overlay__layout,
.section-shop-the-look .text-overlay__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem 4rem;
  position: relative;
  z-index: 2;
}

.section-shop-the-look .text-overlay__text {
  flex: 0 1 50%;
  max-width: 540px;
  margin-top: 0;
  padding-top: 0.5rem;
  padding-right: 2rem;
  line-height: 1.3;
  transform: none;
  z-index: 3;
}

.section-shop-the-look .text-overlay__featured-collection,
.section-shop-the-look .text-overlay__single-product {
  flex: 0 1 45%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.section-shop-the-look .text-overlay__featured-collection img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4.1;
  object-fit: cover; 
  object-position: center;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
  background: rgb(var(--body-bg-color));
  overflow: hidden;
  display: block;
  backface-visibility: hidden;
}


.section-shop-the-look .product-block {
  padding: 16px;
  border: 1px solid rgb(var(--body-text-color) / 0.15);
  background-color: rgb(var(--body-bg-color));
  color: rgb(var(--body-text-color));
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section-shop-the-look .slideshow-nav__btn {
  background: rgb(var(--body-bg-color));
  border-radius: var(--btn-border-radius);
}
.section-shop-the-look .slideshow-nav__btn:hover {
  opacity: 1;
}
.section-shop-the-look .slideshow-nav__btn[name=next] {
  margin-inline-start: 8px;
}
.section-shop-the-look .slideshow-nav__btn svg {
  stroke: rgb(var(--body-text-color));
  stroke-width: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .section-shop-the-look .text-overlay__layout,
  .section-shop-the-look .text-overlay__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .section-shop-the-look .text-overlay__text {
    flex: none;
    max-width: 100%;
    padding-right: 0;
  }

  .section-shop-the-look .text-overlay__featured-collection,
  .section-shop-the-look .text-overlay__single-product {
    flex: none;
    max-width: 90%;
    margin: 0 auto;
    justify-content: center;
  }

  .section-shop-the-look .text-overlay__featured-collection img {
    max-width: 90%;
    transform: none;
  }
}

@media (min-width: 1200px) {
  .section-shop-the-look .text-overlay__layout,
  .section-shop-the-look .text-overlay__inner {
    gap: 6rem;
  }
  .section-shop-the-look .text-overlay__featured-collection img {
    max-width: 540px;
  }
}

@media screen and (min-width: 1600px) {
  #section-id-{{ section.id }} .text-overlay__layout {
    max-width: 1800px;
    margin: 0 auto;
    align-items: center;
  }

  #section-id-{{ section.id }} .text-overlay__text {
    flex: 0 0 40%;
  }

  #section-id-{{ section.id }} .text-overlay__featured-collection,
  #section-id-{{ section.id }} .text-overlay__single-product {
    flex: 0 0 60%;
  }

  #section-id-{{ section.id }} .text-overlay__featured-collection img,
  #section-id-{{ section.id }} .text-overlay__single-product img {
    width: 100%;
    height: auto;
    max-width: none;
  }

  #section-id-{{ section.id }} .text-overlay__text {
    padding-right: 3rem;
  }
}

/* === Balanced, viewport-based scaling for desktop === */

/* Normal desktop: 992–1399px */
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .section-shop-the-look .text-overlay__layout,
  .section-shop-the-look .text-overlay__inner {
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }

  .section-shop-the-look .text-overlay__text {
    flex: 0 0 48%;
    padding-right: 2rem;
  }

  .section-shop-the-look .text-overlay__featured-collection,
  .section-shop-the-look .text-overlay__single-product {
    flex: 0 0 52%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Viewport-based height makes the poster feel consistent */
  .section-shop-the-look .text-overlay__featured-collection img,
  .section-shop-the-look .text-overlay__single-product img {
    height: 60vh;         
    width: auto;
    max-height: 700px;    
    object-fit: contain;
    transform: none;
  }
}

/* Large desktop: 1400–1799px */
@media screen and (min-width: 1400px) and (max-width: 1799px) {
  .section-shop-the-look .text-overlay__layout,
  .section-shop-the-look .text-overlay__inner {
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    max-width: 1600px;
    margin: 0 auto;
  }

  .section-shop-the-look .text-overlay__text {
    flex: 0 0 42%;
    padding-right: 3rem;
  }

  .section-shop-the-look .text-overlay__featured-collection,
  .section-shop-the-look .text-overlay__single-product {
    flex: 0 0 58%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section-shop-the-look .text-overlay__featured-collection img,
  .section-shop-the-look .text-overlay__single-product img {
    height: 65vh;
    width: auto;
    max-height: 780px;
  }
}

/* Ultra-wide: 1800 px+ */
@media screen and (min-width: 1800px) {
  .section-shop-the-look .text-overlay__layout,
  .section-shop-the-look .text-overlay__inner {
    align-items: center;
    justify-content: space-between;
    gap: 7rem;
    max-width: 1850px;
    margin: 0 auto;
  }

  .section-shop-the-look .text-overlay__text {
    flex: 0 0 40%;
    padding-right: 4rem;
  }

  .section-shop-the-look .text-overlay__featured-collection,
  .section-shop-the-look .text-overlay__single-product {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; 
  }

  .section-shop-the-look .text-overlay__featured-collection img,
  .section-shop-the-look .text-overlay__single-product img {
    width: 31vw;           
    max-width: 700px;     
    min-width: 580px;      
    height: auto;
    object-fit: contain;  
    transform: none;
  }
}

/* --- Final cleanup: preserve rounded corners + remove top white line --- */
.section-shop-the-look .text-overlay__featured-collection img,
.section-shop-the-look .text-overlay__single-product img {
  display: block;
  transform: none !important;
  margin-top: 0;
  border-radius: 20px;               
  background: transparent !important; 
  object-fit: cover;                 
}

/* Ensure wrapper doesn't clip rounded corners or shadow */
.section-shop-the-look .text-overlay__featured-collection,
.section-shop-the-look .text-overlay__single-product {
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;      
}

/* Tiny subpixel fix for faint gap on some browsers */
.section-shop-the-look .text-overlay__featured-collection img {
  position: relative;
  top: -1px;                 
}




