/* LOOKBOOK SPOTTED IN PARIS*/

/* IMPORTS & FONTS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');

@font-face {
  font-family: "Director";
  src: url('animation/lookbook/lookbook-paris-way-of-life/typo/Director-Regular.woff2?$staticlink$?') format('woff2'),
       url('animation/lookbook/lookbook-paris-way-of-life/typo/Director-Regular.woff?$staticlink$?') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* VARIABLES */
:root {
  --color-secondary:  #ffffff;
  --color-text:       #000000;
  --color-bg:         #ffffff;
  --color-accent:     #000000;
  --font-primary:     "Montserrat", sans-serif;
  --font-display:     "Director", sans-serif;
  --gap:              5px;
  --transition-base:  0.3s ease;
  --fs-body:          14px;
  --carousel-img-w:   62%;
}

@media (max-width: 1024px) {
  :root { --fs-body: 13px; }
}

@media (max-width: 767px) {
  :root { --fs-body: 12px; }
}

@media (min-width: 1025px) {
  :root { --gap: 60px; }
}

/* BASE / RESET */
html, body { overflow-x: clip; }

html, body {
  overflow-x: hidden;
}

.lookbook *, .lookbook *::before, .lookbook *::after { box-sizing: border-box; }

.lookbook {
  width: 100%;
  max-width: 100%;
  margin-inline: calc(50% - 50vw);
  position: relative;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: clip;
  background-color: var(--color-bg);
}

.lookbook a { color: inherit; text-decoration: none; }
.lookbook a:focus-visible,
.lookbook button:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.lookbook picture { display: block; width: 100%; max-width: 100%; }
.lookbook picture img { display: block; }

.lookbook img,
.lookbook svg { max-width: 100%; height: auto; }

.lookbook .line  { width: 100%; max-width: 100%; overflow-x: clip; }
.lookbook .cell  { min-width: 0; max-width: 100%; }

.lookbook .img-responsive { width: 100%; height: auto; display: block; object-fit: cover; }
.lookbook .img-container img { transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1); }
.lookbook a:hover .img-container img { transform: scale(1.015); }

/* ANIMATIONS & STRUCTURE DES LIGNES */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lookbook .line { position: relative; animation: fadeInUp 0.6s ease forwards; }
.lookbook .line-margin { margin-bottom: var(--gap); }

.lookbook .line-flex .cell:nth-child(1) { animation-delay: 0.1s; }
.lookbook .line-flex .cell:nth-child(2) { animation-delay: 0.2s; }
.lookbook .line-flex .cell:nth-child(3) { animation-delay: 0.3s; }

.lookbook .no-gap,
.lookbook .line-flex.no-gap,
.lookbook .line-2-img.no-gap { gap: 0 !important; padding: 0 !important; }
.lookbook .no-gap .cell { margin: 0 !important; padding: 0 !important; }

@media (min-width: 1025px) {
  .lookbook .no-gap,
  .lookbook .line-flex.no-gap,
  .lookbook .line-2-img.no-gap { gap: 0px !important; }
}

@media (min-width: 1025px) {
  .lookbook .line-flex { display: flex; flex-wrap: wrap; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .line-flex { display: flex; flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .lookbook .line-flex { display: flex; flex-wrap: wrap; padding: 0 var(--gap); }
}

/* ── Utilitaires d'affichage conditionnel ── */
@media (max-width: 767px) {
  .lookbook .line.hidden-m,
  .lookbook .hidden-m { display: none !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .hidden-mob-only { display: flex !important; }
}
@media (max-width: 767px) {
  .lookbook .hidden-mob-only { display: none !important; }
}

/* CTA — TOKEN UNIQUE (beijos-cta-header) */
.lookbook .beijos-cta-header {
  display: inline-block;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  padding: 14px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 10;
}

.lookbook .beijos-cta-mobile-only { display: none !important; }

@media (max-width: 767px) {
  .lookbook .beijos-cta-header {
    padding: 10px 20px;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
  }
  .lookbook .beijos-cta-mobile-only {
    display: block !important;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
  }
}

/* HEADER HERO */
.lookbook .header-hero {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: var(--color-secondary);
  width: 90%;
  max-width: 480px;
}

.lookbook .header-hero-cta {
  position: static;
  transform: none;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .header-hero.hidden-mob-only { display: block !important; }
}

/* PRODUCT INFO */
.lookbook .product-info-left  { text-align: left; }
.lookbook .product-info-right { text-align: right; }

.lookbook .libelle { margin: 0 0 4px; padding: 0; }
.lookbook .libelle:last-child { margin-bottom: 0; }

.lookbook .libelle a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
  transition: opacity var(--transition-base);
}
.lookbook .libelle a:hover { opacity: 0.6; }

@media (min-width: 768px) {
  .lookbook .product-info { padding: 24px; }
}

@media (max-width: 767px) {
  .lookbook .product-info { padding: 10px 0 18px; }
  .lookbook .libelle a { line-height: 1.2; }
}

/* LIGNE SCROLL (IMAGE PAYSAGE) */
.lookbook .line-scroll .cell { position: relative; width: 100%; max-width: 100%; }

.lookbook .line-scroll .img-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.lookbook .line-scroll .img-container picture { width: 100%; max-width: 100%; display: block; }
.lookbook .line-scroll .img-container img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* GRILLE 2 IMAGES PORTRAIT */
.lookbook .line-2-img { display: flex; gap: 0; align-items: flex-start; flex-wrap: wrap; }

.lookbook .line-2-img .cell {
  flex: 1 1 260px;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lookbook .line-2-img .cell:not(.cell-cta-casa) .img-container { aspect-ratio: 2 / 3; overflow: hidden; }
.lookbook .line-2-img .cell:not(.cell-cta-casa) .img-container img { width: 100%; height: 100%; object-fit: cover; }

.lookbook .line-2-img .cell > a { display: block; }
.lookbook .line-2-img .cell > a > .img-container { width: 100%; }
.lookbook .line-2-img .cell > a > .img-container picture { display: block; height: 100%; }
.lookbook .line-2-img .cell > a > .img-container picture img { height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .lookbook .line-2-img {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap) !important;
  }
  .lookbook .line-2-img .cell {
    width: auto;
    flex: none;
    min-width: 0;
  }
  .lookbook .line-2-img .cell .product-info { padding-left: 10px; padding-right: 10px; }
}

/* CELL CTA CASA */
.lookbook .cell-cta-casa {
  background-color: var(--color-accent);
  position: relative;
  padding: 20px;
}

.lookbook .cell-cta-casa .img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.lookbook .cell-cta-casa .img-container picture { display: block; height: 100%; }
.lookbook .cell-cta-casa .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lookbook .cell-cta-casa .beijos-cta-header {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.lookbook .beijos-cta-center {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  left: 50% !important;
  right: auto !important;
  transform: translate(-50%, -50%) !important;
}

@media (max-width: 767px) {
  .lookbook .cell-cta-casa { padding: 10px; }
}

/* QUICKSHOP / QUICK ADD TO CART */
.lookbook .quickshop { display: block; position: relative; text-decoration: none; }

.lookbook .quickAddToCartMobile__button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 15;
  padding: 0;
}
.lookbook .quickAddToCartMobile__button:hover { transform: scale(1.15); }

.lookbook .quickAddToCartMobile__buttonIcon {
  font-size: 22px;
  color: var(--color-secondary);
  opacity: 0.9;
  transition: opacity var(--transition-base);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.lookbook .quickAddToCartMobile__button::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.lookbook .quickAddToCartMobile__button:active::before { width: 50px; height: 50px; }

@media (min-width: 1025px) {
  .lookbook .quickshop:hover .quickAddToCartMobile__button { display: flex; }
}
@media (max-width: 1024px) {
  .lookbook .quickAddToCartMobile__button { display: flex; }
}
@media (max-width: 767px) {
  .lookbook .quickAddToCartMobile__button { width: 36px; height: 36px; top: 12px; right: 12px; }
  .lookbook .quickAddToCartMobile__buttonIcon { font-size: 20px; }
}

/* CARROUSEL VERTICAL */
.lookbook .vertical-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background-color: #F4EDE5;
}

.lookbook .vertical-carousel-track {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lookbook .vertical-carousel-track::-webkit-scrollbar { display: none; }

.lookbook .vertical-carousel-slide {
  height: 80%;
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lookbook .vertical-carousel-spacer {
  height: 10%;
  width: 100%;
  flex-shrink: 0;
}

.lookbook .vertical-carousel-slide .img-container {
  width: var(--carousel-img-w, 62%);
  height: auto;
  margin: auto;
  flex: 0 0 auto;
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.lookbook .vertical-carousel-slide .img-container,
.lookbook .vertical-carousel-slide .img-container picture,
.lookbook .vertical-carousel-slide .img-container img {
  display: block;
  object-fit: cover;
}

.lookbook .vertical-carousel-slide .img-container picture,
.lookbook .vertical-carousel-slide .img-container img {
  width: 100%;
  height: 100%;
}

/* ── Flèches haut / bas ── */
.lookbook .vertical-carousel-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 10px;
  pointer-events: none;
  z-index: 20;
}

.lookbook .vertical-carousel-nav button {
  pointer-events: all;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lookbook .vertical-carousel:hover .vertical-carousel-nav button { opacity: 1; }

.lookbook .vertical-carousel-nav button svg { width: 12px; height: 12px; }
.lookbook .vertical-carousel-nav button svg path {
  stroke: var(--color-text);
  stroke-width: 2;
  fill: none;
}

@media (max-width: 1024px) {
  .lookbook .vertical-carousel-nav button { opacity: 1; width: 18px; height: 18px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .vertical-carousel { --carousel-img-w: 50%; }
}

@media (max-width: 767px) {
  .lookbook .vertical-carousel-nav button svg { width: 10px; height: 10px; }
  .lookbook .vertical-carousel { --carousel-img-w: 68%; }
}

@media (prefers-reduced-motion: reduce) {
  .lookbook .vertical-carousel-track { scroll-behavior: auto; }
}

/* CARROUSEL VESTE CHRIS — MOBILE UNIQUEMENT */
.lookbook .line-look-macao-mobile {
  display: none;
  padding: 0 30px;
  box-sizing: border-box;
  margin-bottom: var(--gap);
}

.lookbook .line-look-macao-mobile .vertical-carousel {
  aspect-ratio: 3 / 4;
}

.lookbook .line-look-macao-mobile .product-info {
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 18px;
  padding-bottom: 4px;
}

@media (max-width: 767px) {
  .lookbook .line-look-macao-mobile { display: block; }
}

/* BLOC CTA MOBILE (photo pleine largeur + CTA) */
.lookbook .line-cta-casa-mobile {
  display: none;
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: var(--gap);
}
.lookbook .line-cta-casa-mobile .img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.lookbook .line-cta-casa-mobile .img-container picture,
.lookbook .line-cta-casa-mobile .img-container picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .lookbook .line-cta-casa-mobile { display: block; }
}

/* BLOC STORYTELLING #SPOTTED IN PARIS — MOBILE UNIQUEMENT */
.lookbook .line-storytelling-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
  box-sizing: border-box;
}

.lookbook .storytelling-mobile-img-wrap {
  width: 55%;
  max-width: 220px;
  margin: 0 0 24px;
}

.lookbook .storytelling-mobile-img-wrap picture,
.lookbook .storytelling-mobile-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook .storytelling-mobile-text {
  font-family: var(--font-display);
  font-size: var(--fs-body);
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
  color: var(--color-text);
  width: 55%;
  max-width: 220px;
  margin: 0;
}

@media (max-width: 767px) {
  .lookbook .line-storytelling-mobile { display: flex; }
}

/* BLOC SPOTTED IN PARIS — INTRO (LOGO + TEXTE) */
.lookbook .line-way-of-life-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.lookbook .way-of-life-logo-wrap {
  width: calc(100% + 40px);
  max-width: none;
  margin: 0 -20px 24px;
}

.lookbook .way-of-life-logo-wrap picture,
.lookbook .way-of-life-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook .way-of-life-text {
  font-family: var(--font-display);
  font-size: var(--fs-body);
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .line-way-of-life-intro { padding: 50px 20px 36px; }
  .lookbook .way-of-life-logo-wrap { max-width: none; }
  .lookbook .way-of-life-text { max-width: 900px; }
}

@media (max-width: 767px) {
  .lookbook .line-way-of-life-intro { padding: 36px 20px 30px; }
  .lookbook .way-of-life-logo-wrap { max-width: none; margin-bottom: 18px; text-align: center; }
  .lookbook .way-of-life-logo-wrap picture,
  .lookbook .way-of-life-logo-wrap img {
    width: 95%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .lookbook .way-of-life-text { max-width: 450px; line-height: 1.7; }
}

/* BLOC 4 LOOKS — GRILLE DESKTOP / TABLETTE */
.lookbook .line-way-of-life-images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.lookbook .line-way-of-life-images .cell {
  position: relative;
  min-width: 0;
}

.lookbook .line-way-of-life-images .cell .img-container {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.lookbook .line-way-of-life-images .cell .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .line-way-of-life-images .cell .product-info {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .line-way-of-life-images .cell .product-info {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767px) {
  .lookbook .line-way-of-life-images { display: none !important; }
}

/*  BLOC 4 LOOKS — CARROUSEL FLICKITY, MOBILE UNIQUEMENT */
.lookbook .line-way-of-life-slider-mobile {
  display: none;
  position: relative;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.lookbook .line-way-of-life-slider-mobile .flickity-prev-next-button {
  position: absolute !important;
  bottom: 90px !important;
  top: auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 16px !important;
  height: 16px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 20 !important;
}

.lookbook .line-way-of-life-slider-mobile .flickity-prev-next-button.previous {
  left: 40px !important;
}

.lookbook .line-way-of-life-slider-mobile .flickity-prev-next-button.next {
  right: 40px !important;
}

.lookbook .line-way-of-life-slider-mobile .flickity-prev-next-button svg,
.lookbook .line-way-of-life-slider-mobile .flickity-prev-next-button .flickity-button-icon {
  width: 100% !important;
  height: 100% !important;
  fill: #ffffff !important;
  opacity: 1 !important;
}

.lookbook .line-way-of-life-slider-mobile .flickity-prev-next-button path {
  fill: #ffffff !important;
}

.lookbook .line-way-of-life-slider-mobile .cell {
  position: relative;
  width: 100%;
}

.lookbook .line-way-of-life-slider-mobile .cell .img-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  overflow: hidden;
}

.lookbook .line-way-of-life-slider-mobile .cell .img-container picture,
.lookbook .line-way-of-life-slider-mobile .cell .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .line-way-of-life-slider-mobile .cell .product-info {
  padding-left: 4px;
  padding-right: 4px;
}

@media (max-width: 767px) {
  .lookbook .line-way-of-life-slider-mobile { display: block; }
}

/* BLOC BACK IN PARIS — 3 photos + légendes groupées */
.lookbook .line-back-in-paris {
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
  --bip-small: 14%;
  --bip-large: 26%;
}

.lookbook .back-in-paris-photo {
  flex: 0 0 var(--bip-large);
  min-width: 0;
  position: relative;
}

.lookbook .back-in-paris-photo .img-container {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.lookbook .back-in-paris-photo .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .back-in-paris-photo .product-info {
  padding-left: 24px;
  padding-right: 24px;
}

.lookbook .back-in-paris-photo-small {
  order: -1;
  flex: 0 0 var(--bip-small);
  margin-right: auto;
  align-self: flex-start;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .back-in-paris-photo .product-info { padding-left: 17px; padding-right: 17px; }
  .lookbook .line-back-in-paris { --bip-small: 16%; --bip-large: 29%; }
}

.lookbook .back-in-paris-mobile-captions {
  display: none;
}

@media (max-width: 767px) {
  .lookbook .line-back-in-paris {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    padding: 0 30px;
    box-sizing: border-box;
  }

  .lookbook .back-in-paris-photo {
    width: auto;
    min-width: 0;
  }

  .lookbook .back-in-paris-photo .product-info {
    display: none;
  }

  .lookbook .back-in-paris-photo-small {
    display: none;
    margin-right: 0;
  }
  .lookbook .back-in-paris-mobile-captions {
    display: block;
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    text-align: right;
    padding: 18px 15px;
  }

  .lookbook .back-in-paris-mobile-captions .libelle { margin: 0 0 4px; }
  .lookbook .back-in-paris-mobile-captions .libelle:last-child { margin-bottom: 0; }
}

/*  BLOC HERO + FILMSTRIP (3 images, sélection par miniatures)*/
.lookbook .hero-filmstrip-main {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #efe9e3;
}

.lookbook .hero-filmstrip-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.lookbook .hero-filmstrip-slide.is-active {
  display: block;
}

.lookbook .hero-filmstrip-slide a,
.lookbook .hero-filmstrip-slide .img-container {
  display: block;
  width: 100%;
  height: 100%;
}

.lookbook .hero-filmstrip-slide picture,
.lookbook .hero-filmstrip-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .hero-filmstrip-thumbs {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 10;
}

.lookbook .hero-filmstrip-thumb {
  width: 80px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
}

.lookbook .hero-filmstrip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .hero-filmstrip-thumb.is-active {
  opacity: 1;
  border-color: #ffffff;
}

.lookbook .hero-filmstrip-captions {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .hero-filmstrip-thumb { width: 70px; height: 47px; }
}

@media (max-width: 767px) {
  .lookbook .hero-filmstrip-captions { padding-left: 10px; padding-right: 10px; }
  .lookbook .hero-filmstrip-thumb { width: 58px; height: 39px; }
  .lookbook .hero-filmstrip-thumbs { bottom: 12px; gap: 3px; }
}

/* BLOC LOOK CELIA — DESKTOP / TABLETTE */
.lookbook .line-look-celia {
  align-items: stretch !important;
}

.lookbook .cell-celia-img .img-container {
  aspect-ratio: auto;
  height: 100%;
  overflow: hidden;
}
.lookbook .cell-celia-img .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .cell-celia-content {
  flex: 1 1 50%;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 20px;
  padding: 40px 60px 40px 40px;
  text-align: right;
  box-sizing: border-box;
}

.lookbook .celia-img-wrap {
  width: 34%;
  max-width: 260px;
  margin: 0 30px 0 auto;
}
.lookbook .celia-img-wrap picture,
.lookbook .celia-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.lookbook .celia-products {
  max-width: 340px;
  margin: 0 30px 0 auto;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1025px) {
  .lookbook .cell-celia-content .celia-products {
    width: 34%;
    max-width: 260px;
    text-align: right;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .cell-celia-content { gap: 28px; padding: 30px 40px 30px 30px; }
  .lookbook .celia-img-wrap { max-width: 190px; }
  .lookbook .celia-products { max-width: 260px; }
}

@media (max-width: 767px) {
  .lookbook .line-look-celia { display: none !important; }
}

/* BLOC LOOK CELIA — MOBILE UNIQUEMENT */
.lookbook .line-look-celia-mobile {
  display: none;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
}

.lookbook .celia-mobile-img-container {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  position: relative;
  overflow: hidden;
}

.lookbook .celia-mobile-img-container picture,
.lookbook .celia-mobile-img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .line-look-celia-mobile .celia-products {
  width: 100%;
  max-width: none;
  padding: 18px 0;
  text-align: right;
}

@media (max-width: 767px) {
  .lookbook .line-look-celia-mobile { display: block; }
}

/* BLOC DIPTYQUE — texte + 2 petites photos + légendes à gauche,
   grande photo à droite */
.lookbook .line-diptyque {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  --diptyque-inner: 74%;
  --diptyque-duo-gap: 5px;
  --diptyque-pad: 30px;
}

/* ── Colonne gauche ── */
.lookbook .cell-diptyque-content {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px 40px var(--diptyque-pad) !important;
  box-sizing: border-box;
  overflow: hidden;
}

.lookbook .diptyque-inner {
  width: var(--diptyque-inner);
  max-width: 100%;
}

.lookbook .diptyque-text {
  font-family: var(--font-display);
  font-size: var(--fs-body);
  text-transform: uppercase;
  line-height: 1.3;
  text-align: left;
  color: var(--color-text);
  margin: 0 0 14px;
  overflow-wrap: break-word;
}

.lookbook .diptyque-images {
  display: flex;
  gap: var(--diptyque-duo-gap);
}

.lookbook .diptyque-image-cell {
  display: block;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  text-decoration: none;
}

.lookbook .diptyque-image-cell .img-container {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.lookbook .diptyque-image-cell .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .diptyque-captions {
  padding: 14px 0 0 !important;
}

/* ── Colonne droite ── */
.lookbook .cell-diptyque-img {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
}

.lookbook .cell-diptyque-img > a { display: block; height: 100%; }

.lookbook .cell-diptyque-img .img-container {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.lookbook .cell-diptyque-img .img-container picture { height: 100%; }

.lookbook .cell-diptyque-img .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .line-diptyque { --diptyque-inner: 84%; --diptyque-pad: 20px; }
  .lookbook .cell-diptyque-content { padding: 30px 25px 30px var(--diptyque-pad) !important; }
}

@media (max-width: 767px) {
  .lookbook .line-diptyque { display: none !important; }
.line-back-in-paris {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.line-back-in-paris .cell {
  flex: 1 1 0;
  min-width: 0;
}

.line-back-in-paris .img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  margin-top: 16px;
}

.product-info .libelle {
  margin: 0 0 4px;
}

.product-info-left  { text-align: left; }
.product-info-right { text-align: right; }
}
/* --- Masqu� en desktop --- */
.back-in-paris--mobile-only {
  display: none;
}

/* --- Visible en mobile uniquement --- */
@media (max-width: 767px) {

  .back-in-paris--mobile-only {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .back-in-paris--mobile-only .cell {
    flex: 1 1 0;
    min-width: 0;
  }

  .back-in-paris--mobile-only .img-responsive {
    width: 100%;
    height: auto;
    display: block;
  }

  .back-in-paris--mobile-only .product-info {
    margin-top: 12px;
  }

  .back-in-paris--mobile-only .product-info .libelle {
    margin: 0 0 4px;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .04em;
  }

  .back-in-paris--mobile-only .product-info-left  { text-align: left; }
  .back-in-paris--mobile-only .product-info-right { text-align: right; }
}



/* BLOC 2 IMAGES PORTRAIT — MOBILE UNIQUEMENT SWAN */
.lookbook .line-2-img-mobile {
  display: none;
}

@media (max-width: 767px) {
  .lookbook .line-2-img-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    padding: 0 30px;
    box-sizing: border-box;
    margin-bottom: var(--gap);
  }

  .lookbook .line-2-img-mobile .cell {
    position: relative;
    min-width: 0;
  }

  .lookbook .line-2-img-mobile .img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
  }

  .lookbook .line-2-img-mobile .img-container picture,
  .lookbook .line-2-img-mobile .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .lookbook .line-2-img-mobile .product-info {
    padding: 18px 4px ;
  }
}

@media (max-width: 767px) {
  .lookbook .hidden-m { display: none; }
}

