/** Shopify CDN: Minification failed

Line 493:0 Unexpected "}"

**/
/* ==========================================================================
   luxury-product.css
   Style épuré inspiré des fiches produit Prada : image en pleine colonne,
   dots verticaux overlay, sélecteur de taille en dropdown, liens plats.
   ========================================================================== */

:root {
  --lp-black: #000000;
  --lp-white: #ffffff;
  --lp-grey-line: #e5e5e5;
  --lp-grey-text: #767676;
  --lp-font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --lp-max-width: 1400px;
  --lp-sticky-offset: 24px;
  --lp-mobile-bar-height: 76px;
}

* { box-sizing: border-box; }

.lp-wrapper {
  font-family: var(--lp-font);
  color: var(--lp-black);
  max-width: var(--lp-max-width);
  margin: 0 auto;
  padding: 0 40px 80px 0;
  position: relative;
}

/* ---------- Breadcrumb ---------- */
.lp-breadcrumb {
  font-size: 12px;
  color: var(--lp-grey-text);
  padding: 20px 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-breadcrumb a { color: var(--lp-grey-text); text-decoration: none; }
.lp-breadcrumb a:hover { text-decoration: underline; }
.lp-breadcrumb-current { color: var(--lp-black); }

/* ---------- Grid layout ---------- */
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* ---------- Gallery ---------- */
.lp-gallery {
  position: relative;
}

/* IMPORTANT : le track doit avoir une largeur/hauteur définies pour que
   les images (display:block, width:100%) se calent correctement.
   C'est ce qui manquait et causait le rendu "grande case grise vide". */
.lp-main-image-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lp-main-image-track::-webkit-scrollbar { display: none; }

.lp-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.lp-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: var(--lp-grey-line);
  cursor: zoom-in;
  line-height: 0;
}

.lp-main-image {
  display: block;
  width: 100%;
  height: auto;
  /* Ratio portrait standard mode ; ajuste 3/4 selon tes visuels produit */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.lp-zoom-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lp-grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--lp-black);
  pointer-events: none;
}

/* ---------- Dots overlay verticaux (façon Prada) ---------- */
.lp-dots {
  position: absolute;
  left: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--lp-black);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease;
}
.lp-dot.is-active { background: var(--lp-black); }

/* ---------- Overlay de zoom plein écran ---------- */
.lp-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--lp-white);
  z-index: 100;
  opacity: 0;
  transition: opacity .2s ease;
}
.lp-zoom-overlay.is-visible {
  display: block;
  opacity: 1;
}
.lp-zoom-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--lp-grey-line);
  background: var(--lp-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lp-zoom-track {
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.lp-zoom-track::-webkit-scrollbar { display: none; }
.lp-zoom-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  touch-action: pinch-zoom pan-x pan-y;
  overflow: auto;
}
.lp-zoom-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-out;
}
.lp-zoom-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--lp-grey-text);
  background: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border-radius: 10px;
}

/* ---------- Info column ---------- */
.lp-info-sticky {
  position: sticky;
  top: var(--lp-sticky-offset);
}

.lp-title {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 6px;
  letter-spacing: 0.2px;
}
.lp-price {
  font-size: 16px;
  margin: 0 0 28px;
  color: var(--lp-black);
}

.lp-option-block { margin-bottom: 24px; }
.lp-option-label { font-size: 13px; color: var(--lp-grey-text); display: inline-block; margin-bottom: 10px; }
.lp-current-color { color: var(--lp-black); font-weight: 500; }

.lp-swatches { display: flex; gap: 10px; }
.lp-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--lp-grey-line);
  cursor: pointer;
  background: #fff;
  position: relative;
}
.lp-swatch::after {
  content: "";
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--swatch-color, #ccc);
}
.lp-swatch.is-active { border-color: var(--lp-black); }

/* ---------- Sélecteur de taille : dropdown + Find your size ---------- */
.lp-size-row {
  display: flex;
  gap: 12px;
}
.lp-select-wrap {
  position: relative;
  flex: 1;
}
.lp-size-select {
  width: 100%;
  height: 48px;
  padding: 0 32px 0 14px;
  border: 1px solid var(--lp-grey-line);
  background: var(--lp-white);
  font-size: 13px;
  color: var(--lp-black);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.lp-select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-40%);
  pointer-events: none;
  font-size: 14px;
  color: var(--lp-grey-text);
}
.lp-find-size-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  background: none;
  border: 1px solid var(--lp-grey-line);
  padding: 0 14px;
  font-size: 12px;
  color: var(--lp-black);
  cursor: pointer;
}
.lp-find-size-icon { font-size: 13px; }

.lp-model-info { font-size: 11px; color: var(--lp-grey-text); margin-top: 10px; }

/* ---------- CTA principal + liens plats ---------- */
.lp-form { margin-bottom: 4px; }
.lp-add-to-bag {
  width: 100%;
  background: var(--lp-black);
  color: var(--lp-white);
  border: none;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity .15s ease;
}
.lp-add-to-bag:hover { opacity: 0.85; }
.lp-add-to-bag.is-disabled { opacity: 0.45; }

.lp-links-list {
  display: flex;
  flex-direction: column;
  margin: 18px 0 28px;
}
.lp-plain-link {
  text-align: left;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 13px;
  color: var(--lp-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  width: fit-content;
}
.lp-plain-link:hover { opacity: 0.7; }

/* ---------- Accordions ---------- */
.lp-accordions { border-top: 1px solid var(--lp-grey-line); }
.lp-accordion { border-bottom: 1px solid var(--lp-grey-line); }
.lp-accordion-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none;
  padding: 16px 0;
  font-size: 13px;
  letter-spacing: 0.2px;
  cursor: pointer;
  color: var(--lp-black);
}
.lp-accordion-icon { font-size: 16px; font-weight: 300; transition: transform .2s ease; }
.lp-accordion[data-open="true"] .lp-accordion-icon { transform: rotate(45deg); }

.lp-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}
.lp-accordion[data-open="true"] .lp-accordion-panel { max-height: 800px; padding-bottom: 18px; }
.lp-details-list { margin: 10px 0; padding-left: 18px; }
.lp-product-code { color: var(--lp-grey-text); font-size: 11px; margin-top: 10px; }

/* ---------- Mobile sticky bar ---------- */
.lp-mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--lp-mobile-bar-height);
  background: var(--lp-white);
  border-top: 1px solid var(--lp-grey-line);
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 40;
  transform: translateY(100%);
  transition: transform .25s ease;
}
.lp-mobile-bar.is-visible { transform: translateY(0); }
.lp-mobile-bar-price { display: flex; flex-direction: column; }
.lp-mobile-title { font-size: 12px; color: var(--lp-grey-text); }
.lp-mobile-price { font-size: 14px; font-weight: 500; }
.lp-mobile-cta {
  background: var(--lp-black);
  color: var(--lp-white);
  border: none;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .lp-wrapper { padding: 0 0 20px; }
  .lp-breadcrumb { padding: 8px 16px; }

  .lp-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lp-info { padding: 10px 16px 16px; }

  .lp-gallery {
    position: sticky;
  top: 0;
  z-index: 1;
  height: auto;
  min-height: unset;
  overflow: hidden;
}
.lp-gallery {
  position: sticky;
  top: 0;
  z-index: 1;
}
.lp-info {
  position: relative;
  z-index: 2;
  background: #fff;
}
.lp-price {
  font-weight: 300;
  font-size: 13px;
  color: #111;
  margin-top: 13px;
}

 .lp-main-image-track {
  flex-direction: column;
  height: auto;
  max-height: 120vw;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
}


  .lp-slide {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    scroll-snap-align: start;
  }

  .lp-main-image {
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    object-fit: contain;
    object-position: center;
    background: #fff;
    display: block;
  }

  .lp-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .lp-mobile-bar {
    display: none !important;
  }

  .lp-add-to-bag {
    display: block !important;
    width: 100%;
    margin-top: 16px;
  }


}




  /* Dots verticaux, centrés sur la hauteur de la galerie, alignés à gauche */
  .lp-dots {
    left: 14px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .lp-info-sticky { position: static; }

  /* Le CTA principal devient la barre sticky ; on masque le bouton inline */
  .lp-add-to-bag { display: none; }

  .lp-mobile-bar { display: flex; }

  .lp-zoom-close { top: 14px; right: 14px; }
  .lp-zoom-icon { bottom: 12px; right: 12px; }

  .lp-size-row { flex-direction: row; }
  .lp-find-size-btn { flex: 0 0 auto; }
}
/* ===== DESKTOP : galerie scroll vertical ===== */
@media screen and (min-width: 990px) {

  .lp-main-image-track {
    flex-direction: column;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    height: auto !important;
    gap: 4px;
  }

  .lp-slide {
    flex: 0 0 auto;
    width: 100%;
    scroll-snap-align: none;
  }

  .lp-dots {
    display: none;
  }
}
