/** Shopify CDN: Minification failed

Line 34:34 Unexpected "{"
Line 34:46 Expected ":"
Line 34:49 Unexpected ","

**/
/* ============================================================
   LE PRODUCT PAGE â€” GALLERY & VIDEO ENHANCEMENTS
   Add to: assets/component-product-video.css
   Load in: sections/main-product.liquid (top of file)
   ============================================================ */


/* ------------------------------------------------------------
   1. THUMBNAIL STRIP â€” MOVE FROM BELOW TO RIGHT OF HERO
      Applies on desktop (750px+) when layout is thumbnail
      or thumbnail_slider
   ------------------------------------------------------------ */

@media screen and (min-width: 750px) {

  /* The media gallery wraps hero slider + thumbnail slider.
     We make it a row so thumbnails sit beside the hero. */
  .product__media-gallery,
  media-gallery {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  /* Hero slider takes up the bulk of the left column */
  media-gallery > #GalleryViewer-{{ section_id }},
  .product__media-gallery > slider-component:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  /* Thumbnail strip becomes a vertical column on the right */
  .thumbnail-slider {
    display: flex !important;
    flex-direction: column;
    width: 72px;
    flex-shrink: 0;
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 8px;
    margin-left: 8px;
    /* Override the default horizontal slider behaviour */
    overflow: visible !important;
  }

  /* The thumbnail list becomes vertical */
  .thumbnail-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 520px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    /* Override horizontal slider transforms */
    transform: none !important;
    scroll-snap-type: none !important;
  }

  .thumbnail-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  /* Each thumbnail item â€” full width of the strip */
  .thumbnail-list__item {
    width: 100% !important;
    flex-shrink: 0;
  }

  /* Thumbnail button itself */
  .thumbnail {
    width: 56px !important;
    height: 56px !important;
    display: block;
  }

  .thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 3px;
  }

  /* Active thumbnail indicator â€” left border instead of bottom */
  .thumbnail[aria-current="true"],
  .thumbnail:has(+ * [aria-current="true"]) {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
    border-radius: 3px;
  }

  /* Prev/next buttons for the thumbnail strip â€” stack vertically */
  .thumbnail-slider .slider-button--prev,
  .thumbnail-slider .slider-button--next {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 4px 0;
  }

  /* Rotate the caret icons to point up/down */
  .thumbnail-slider .slider-button--prev .icon-caret {
    transform: rotate(90deg);
  }
  .thumbnail-slider .slider-button--next .icon-caret {
    transform: rotate(-90deg);
  }

  /* Ensure the main gallery image area fills its space */
  .product__media-list {
    width: 100%;
  }

  /* Keep the thumbnail slider hidden on mobile â€” it's a swipe gallery */
  .thumbnail-slider.small-hide {
    display: none !important;
  }
}

@media screen and (max-width: 749px) {
  /* On mobile â€” thumbnail strip stays hidden, swipe gesture is native */
  .thumbnail-slider {
    display: none !important;
  }
}


/* ------------------------------------------------------------
   2. PRODUCT VIDEO EMBED BLOCK
   ------------------------------------------------------------ */

.product-video-embed {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

.product-video-embed__heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgb(var(--color-foreground));
}

/* 16:9 responsive container â€” zero layout shift, no JS required */
.product-video-embed__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--media-radius, 0.4rem);
  background: #000;
}

.product-video-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile â€” full width naturally, just ensure no side overflow */
@media screen and (max-width: 749px) {
  .product-video-embed {
    margin-top: 2rem;
  }
}


/* ------------------------------------------------------------
   3. PRODUCT KEY FEATURES SECTION (below two-column layout)
      Metafield-driven editorial block
   ------------------------------------------------------------ */

.product-key-features {
  padding: 5rem 0;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.product-key-features__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 5rem;
}

.product-key-features__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-key-features__eyebrow {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(var(--color-foreground), 0.5);
  margin-bottom: 1rem;
}

.product-key-features__title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.product-key-features__rule {
  height: 1px;
  background: rgba(var(--color-foreground), 0.12);
  margin-bottom: 2.4rem;
}

.product-key-features__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-key-features__item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.product-key-features__item:first-child {
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.product-key-features__item-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.product-key-features__item-body {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgb(var(--color-foreground), 0.7);
}

.product-key-features__image-wrap {
  position: sticky;
  top: 10rem;
}

.product-key-features__image {
  width: 100%;
  border-radius: var(--media-radius, 0.4rem);
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Mobile â€” stack vertically, image first */
@media screen and (max-width: 749px) {
  .product-key-features__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }

  .product-key-features__image-wrap {
    position: static;
    order: -1; /* image above text on mobile */
  }

  .product-key-features__title {
    font-size: 2.2rem;
  }
}