/* ════════════════════════════════════════════════════════════
   IMPORTS & FONTS
════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');

/* ════════════════════════════════════════════════════════════
   VARIABLES
════════════════════════════════════════════════════════════ */
:root {
  --color-primary:    #1a1a1a;
  --color-secondary:  #ffffff;
  --color-accent:     #F5F2A8;
  --color-text:       #000000;
  --color-text-light: #000000;
  --color-bg:         #F7F3ED;
  --font-primary:     "Montserrat", sans-serif;
  --font-display:     'Gyst', serif;
  --gap:              5px;
  --transition-base:  0.3s ease;
  --transition-slow:  0.5s ease;
}

/* ════════════════════════════════════════════════════════════
   BASE
════════════════════════════════════════════════════════════ */
.lookbook *, .lookbook *::before, .lookbook *::after { box-sizing: border-box; }

.lookbook {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  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%; }
.lookbook picture img { display: block; }

/* ════════════════════════════════════════════════════════════
   IMAGES
════════════════════════════════════════════════════════════ */
.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
════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   LINES — STRUCTURE
════════════════════════════════════════════════════════════ */
.lookbook .line {
  width: 100%;
  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; }

/* ════════════════════════════════════════════════════════════
   CTA — TOKEN UNIQUE
   Base (desktop) : padding 14px 30px | font-size 12px
   Override par breakpoint via media queries
════════════════════════════════════════════════════════════ */

/* ── Apparence partagée (toutes tailles) ── */
.lookbook .beijos-cta-header,
.lookbook .storytelling-cta {
  display: inline-block;
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 14px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 10;
}

/* ── Overlay sur image (positionné en absolu) ── */
.lookbook .beijos-cta-header {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Inline dans la storytelling-card ── */
.lookbook .storytelling-cta {
  position: static;
  transform: none;
}

/* ── Variante bannière (storytelling desktop) ── */
.lookbook .beijos-cta-banner {
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
}

/* ── Mobile-only : caché par défaut ── */
.lookbook .beijos-cta-mobile-only { display: none !important; }

/* ════════════════════════════════════════════════════════════
   CELL CTA CASA — fond jaune + image pleine + CTA overlay centré
════════════════════════════════════════════════════════════ */
.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: 90% !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}



/* ════════════════════════════════════════════════════════════
   CARROUSEL CASA PALOMA — base
════════════════════════════════════════════════════════════ */
.lookbook .line-carousel-casa {
  position: relative;
  margin-bottom: var(--gap);
  padding: 40px 0;
}

.lookbook .line-carousel-casa .carousel-wrapper {
  overflow: hidden;
  padding: 0;
}

.lookbook .line-carousel-casa .carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  transition: transform 0.5s ease;
  will-change: transform;
  margin-left: -5%;
}

.lookbook .line-carousel-casa .carousel-cell {
  flex: 0 0 36%;
  min-width: 0;
  position: relative;
}

.lookbook .line-carousel-casa .carousel-cell .img-container {
  overflow: hidden;
  width: 100%;
}

.lookbook .line-carousel-casa .carousel-cell .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 .line-carousel-casa .carousel-cell a:hover .img-container img {
  transform: scale(1.015);
}

/* ── Flèches ── */
.lookbook .line-carousel-casa .carousel-nav {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 40px;
  pointer-events: none;
  z-index: 20;
}

.lookbook .line-carousel-casa .carousel-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 25;
}

.lookbook .line-carousel-casa:hover .carousel-nav button { opacity: 1; }
.lookbook .line-carousel-casa .carousel-nav button svg { width: 20px; height: 20px; }

.lookbook .line-carousel-casa .carousel-nav button svg path {
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.lookbook .line-carousel-casa .carousel-nav button[aria-label="Précédent"] { left: 12px; }
.lookbook .line-carousel-casa .carousel-nav button[aria-label="Suivant"]   { right: 12px; }

/* ── Libellés carousel ── */
.lookbook .line-carousel-casa .carousel-libelle {
  padding: 14px 0 8px;
  padding-left: calc(39% + 40px - 5%);
}

.lookbook .line-carousel-casa .carousel-libelle a {
  display: block;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.8;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.lookbook .line-carousel-casa .carousel-libelle a:hover { opacity: 0.6; }

/* ════════════════════════════════════════════════════════════
   LIBELLÉS PRODUITS — base
════════════════════════════════════════════════════════════ */
.lookbook .libelle-abs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  z-index: 10;
}

.lookbook .libelle-abs-left  { text-align: left; }
.lookbook .libelle-abs-right { text-align: right; }
.lookbook .libelle { margin: 0; padding: 0; }

.lookbook .libelle a {
  display: block;
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
  transition: opacity var(--transition-base);
}

.lookbook .libelle a:hover { opacity: 0.8; }

/* ════════════════════════════════════════════════════════════
   GRILLE 2 IMAGES PORTRAIT — base
════════════════════════════════════════════════════════════ */
.lookbook .line-2-img { display: flex; gap: 0; }

.lookbook .line-2-img .cell {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

.lookbook .line-2-img .cell:not(.cell-cta-casa) .img-container { aspect-ratio: 2 / 3; }
.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: flex; flex: 1; }
.lookbook .line-2-img .cell > a > .img-container { flex: 1; height: 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; }

/* ════════════════════════════════════════════════════════════
   LIGNE SCROLL (IMAGE PAYSAGE) — base
════════════════════════════════════════════════════════════ */
.lookbook .line-scroll .cell { position: relative; width: 100%; }
.lookbook .line-scroll .img-container { position: relative; }
.lookbook .line-scroll .img-container img { width: 100%; height: auto; object-fit: cover; }

/* ════════════════════════════════════════════════════════════
   QUICKSHOP — base
════════════════════════════════════════════════════════════ */
.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; }

/* ════════════════════════════════════════════════════════════
   STORYTELLING — base (desktop/tablette)
════════════════════════════════════════════════════════════ */
.lookbook .cell-storytelling {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lookbook .cell-storytelling .img-container { flex: 1; }

.lookbook .storytelling-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 88%;
  max-height: 92%;
  background-color: var(--color-bg);
  padding: 22px 20px;
  text-align: center;
  z-index: 10;
  overflow: hidden;
  outline: 1px solid var(--color-text);
  outline-offset: -10px;
}

.lookbook .storytelling-photo {
  width: 70%;
  margin: 0 auto 14px;
  overflow: hidden;
}

.lookbook .storytelling-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lookbook .storytelling-text {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 8px;
}

.lookbook .storytelling-subtext {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 14px;
}

/* ════════════════════════════════════════════════════════════
   STORYTELLING MOBILE — caché par défaut
════════════════════════════════════════════════════════════ */
.lookbook .line-storytelling-mobile { display: none; }


/* ╔══════════════════════════════════════════════════════════╗
   ║  BREAKPOINTS — DU PLUS GRAND AU PLUS PETIT              ║
   ╚══════════════════════════════════════════════════════════╝

   ┌─────────────────────────────────────────────────────────┐
   │  LARGE DESKTOP   ≥ 1440px                               │
   │  DESKTOP         1025px – 1439px                        │
   │  TABLET          768px  – 1024px                        │
   │  MOBILE          480px  – 767px                         │
   │  MOBILE SMALL    ≤ 479px                                │
   └─────────────────────────────────────────────────────────┘ */


/* ════════════════════════════════════════════════════════════
   LARGE DESKTOP ≥ 1440px
════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .lookbook .hidden-d { display: none !important; }
  .lookbook .beijos-cta-mobile-only { display: none !important; }
  .lookbook .line-storytelling-mobile { display: none !important; }

  .lookbook .line-flex { display: flex; flex-wrap: wrap; gap: var(--gap); padding: 0 var(--gap); }

  .lookbook .quickshop:hover .quickAddToCartMobile__button { display: flex; }

  /* Libellés */
  .lookbook .libelle-abs { padding: 24px; }
  .lookbook .libelle a   { font-size: 13px; letter-spacing: 1.5px; }

  /* CTA */
  .lookbook .beijos-cta-header,
  .lookbook .storytelling-cta { padding: 16px 40px; font-size: 13px; }

  /* Carousel */
  .lookbook .line-carousel-casa { padding: 60px 0; }
  .lookbook .line-carousel-casa .carousel-track { gap: 50px; }
  .lookbook .line-carousel-casa .carousel-cell  { flex: 0 0 32%; }
  .lookbook .line-carousel-casa .carousel-libelle {
    padding-left: calc(35% + 50px - 5%);
    padding-top: 18px;
  }
  .lookbook .line-carousel-casa .carousel-libelle a { font-size: 13px; }

  /* Storytelling */
  .lookbook .storytelling-card    { width: 520px; padding: 44px 40px; outline-offset: -18px; }
  .lookbook .storytelling-photo   { width: 85%; margin-bottom: 30px; }
  .lookbook .storytelling-text    { font-size: 16px; margin-bottom: 16px; }
  .lookbook .storytelling-subtext { font-size: 16px; margin-bottom: 28px; }
}


/* ════════════════════════════════════════════════════════════
   DESKTOP 1025px – 1439px
════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) and (max-width: 1439px) {
  .lookbook .hidden-d { display: none !important; }
  .lookbook .beijos-cta-mobile-only { display: none !important; }
  .lookbook .line-storytelling-mobile { display: none !important; }

  .lookbook .line-flex { display: flex; flex-wrap: wrap; gap: var(--gap); padding: 0 var(--gap); }

  .lookbook .quickshop:hover .quickAddToCartMobile__button { display: flex; }

  /* Libellés */
  .lookbook .libelle-abs { padding: 20px; }
  .lookbook .libelle a   { font-size: 12px; letter-spacing: 1px; }

  /* CTA */
  .lookbook .beijos-cta-header,
  .lookbook .storytelling-cta { padding: 14px 30px; font-size: 12px; }

  /* Carousel */
  .lookbook .line-carousel-casa { padding: 40px 0; }
  .lookbook .line-carousel-casa .carousel-track { gap: 40px; }
  .lookbook .line-carousel-casa .carousel-cell  { flex: 0 0 36%; }
  .lookbook .line-carousel-casa .carousel-libelle {
    padding-left: calc(39% + 40px - 5%);
  }
  .lookbook .line-carousel-casa .carousel-libelle a { font-size: 12px; }

  /* Storytelling */
  .lookbook .storytelling-card    { width: 380px; padding: 32px 28px; outline-offset: -14px; }
  .lookbook .storytelling-photo   { margin-bottom: 22px; }
  .lookbook .storytelling-text    { font-size: 14px; margin-bottom: 12px; }
  .lookbook .storytelling-subtext { font-size: 14px; margin-bottom: 20px; }
}


/* ════════════════════════════════════════════════════════════
   TABLET 768px – 1024px
════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .lookbook .hidden-m { display: none !important; }
  /* hidden-mob-only : caché uniquement en mobile, visible en tablette */
  .lookbook .hidden-mob-only { display: flex !important; }
  .lookbook .line-storytelling-mobile { display: none !important; }

  .lookbook .line-flex { display: flex; flex-wrap: wrap; gap: var(--gap); padding: 0 var(--gap); }

  /* CTA */
  .lookbook .beijos-cta-header,
  .lookbook .storytelling-cta { padding: 12px 24px; font-size: 11px; }

  .lookbook .beijos-cta-mobile-only { display: none !important; }

  .lookbook .quickAddToCartMobile__button { display: flex; }

  /* Libellés */
  .lookbook .libelle-abs { padding: 14px; }
  .lookbook .libelle a   { font-size: 11px; letter-spacing: 1px; }

  /* Carousel */
  .lookbook .line-carousel-casa { padding: 30px 0; }
  .lookbook .line-carousel-casa .carousel-nav     { display: none; }
  .lookbook .line-carousel-casa .carousel-track   { gap: 15px; margin-left: -5%; }
  .lookbook .line-carousel-casa .carousel-cell    { flex: 0 0 36%; }
  .lookbook .line-carousel-casa .carousel-libelle { padding-left: calc(36% + 15px - 5%); }
  .lookbook .line-carousel-casa .carousel-libelle a { font-size: 11px; }

  /* Storytelling */
  .lookbook .storytelling-card    { width: 70%; padding: 18px 16px; outline-offset: -8px; }
  .lookbook .storytelling-photo   { margin-bottom: 10px; }
  .lookbook .storytelling-text    { font-size: 12px; }
  .lookbook .storytelling-subtext { font-size: 12px; }

  /* cell-cta-casa */
  .lookbook .cell-cta-casa { padding: 14px; }
}


/* ════════════════════════════════════════════════════════════
   MOBILE 480px – 767px
════════════════════════════════════════════════════════════ */
@media (min-width: 480px) and (max-width: 767px) {
  .lookbook .hidden-m { display: none !important; }
  .lookbook .hidden-mob-only { display: none !important; }

  .lookbook .line-flex { display: flex; flex-wrap: wrap; gap: var(--gap); padding: 0 var(--gap); }
  .lookbook .line-2-img { flex-direction: row; gap: var(--gap); }
  .lookbook .line-2-img .cell { width: calc(50% - 2.5px); flex: none; }

  /* CTA */
  .lookbook .beijos-cta-header,
  .lookbook .storytelling-cta {
    padding: 10px 20px;
    font-size: 11px;
    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;
  }

  /* Libellés */
  .lookbook .libelle-abs { padding: 10px; }
  .lookbook .libelle a   { font-size: 10px; letter-spacing: 1px; line-height: 1.2; }

  /* Quickshop */
  .lookbook .quickAddToCartMobile__button { display: flex; width: 36px; height: 36px; top: 12px; right: 12px; }
  .lookbook .quickAddToCartMobile__buttonIcon { font-size: 20px; }

  /* Carousel */
  .lookbook .line-carousel-casa { padding: 20px 0; }
  .lookbook .line-carousel-casa .carousel-nav { display: none; }
  .lookbook .line-carousel-casa .carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .lookbook .line-carousel-casa .carousel-wrapper::-webkit-scrollbar { display: none; }
  .lookbook .line-carousel-casa .carousel-track {
    gap: 10px;
    margin-left: 0;
    transform: none !important;
    transition: none !important;
  }
  .lookbook .line-carousel-casa .carousel-cell  { flex: 0 0 80%; scroll-snap-align: center; }
  .lookbook .line-carousel-casa .carousel-libelle { padding-left: 10%; }
  .lookbook .line-carousel-casa .carousel-libelle a { font-size: 10px; }

  /* cell-cta-casa */
  .lookbook .cell-cta-casa { padding: 10px; }

  /* Storytelling mobile */
  .lookbook .line-storytelling-mobile { display: block; margin-bottom: var(--gap); position: relative; }
  .lookbook .line-storytelling-mobile .img-container { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
  .lookbook .line-storytelling-mobile .img-container > picture { display: block; height: 100%; }
  .lookbook .line-storytelling-mobile .img-container > picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .lookbook .line-storytelling-mobile .storytelling-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; background-color: var(--color-bg); padding: 14px 12px; text-align: center; z-index: 10; overflow: visible; outline: 1px solid var(--color-text); outline-offset: -6px; }
  .lookbook .line-storytelling-mobile .storytelling-photo { width: 80%; margin: 0 auto 10px; overflow: visible !important; height: auto !important; }
  .lookbook .line-storytelling-mobile .storytelling-photo img { width: 70% !important; margin: 0 auto; height: auto !important; object-fit: unset !important; display: block; }
  .lookbook .line-storytelling-mobile .storytelling-text    { font-size: 11px; letter-spacing: 1px; line-height: 1.4; margin: 0 0 4px; }
  .lookbook .line-storytelling-mobile .storytelling-subtext { font-size: 11px; letter-spacing: 1px; margin: 0; }

  /* Storytelling desktop visible en mobile pleine largeur */
  .lookbook .cell-storytelling { display: flex !important; width: 100% !important; flex: none !important; }
  .lookbook .line-2-img:has(.cell-storytelling) { flex-direction: column; }
  .lookbook .line-2-img:has(.cell-storytelling) .cell:not(.cell-storytelling) { width: 100% !important; }
}


/* ════════════════════════════════════════════════════════════
   MOBILE SMALL ≤ 479px
════════════════════════════════════════════════════════════ */
@media (max-width: 479px) {
  .lookbook .hidden-m { display: none !important; }
  .lookbook .hidden-mob-only { display: none !important; }

  .lookbook .line-flex { display: flex; flex-wrap: wrap; gap: var(--gap); padding: 0 var(--gap); }
  .lookbook .line-2-img { flex-direction: row; gap: var(--gap); }
  .lookbook .line-2-img .cell { width: calc(50% - 2.5px); flex: none; }

  /* CTA */
  .lookbook .beijos-cta-header,
  .lookbook .storytelling-cta {
    padding: 9px 16px;
    font-size: 10px;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
  }

  .lookbook .beijos-cta-mobile-only {
    display: block !important;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
  }

  /* Libellés */
  .lookbook .libelle-abs { padding: 8px; }
  .lookbook .libelle a   { font-size: 9px; letter-spacing: 0.8px; line-height: 1.2; }

  /* Quickshop */
  .lookbook .quickAddToCartMobile__button { display: flex; width: 32px; height: 32px; top: 10px; right: 10px; }
  .lookbook .quickAddToCartMobile__buttonIcon { font-size: 18px; }

  /* Carousel */
  .lookbook .line-carousel-casa { padding: 16px 0; }
  .lookbook .line-carousel-casa .carousel-nav { display: none; }
  .lookbook .line-carousel-casa .carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .lookbook .line-carousel-casa .carousel-wrapper::-webkit-scrollbar { display: none; }
  .lookbook .line-carousel-casa .carousel-track {
    gap: 8px;
    margin-left: 0;
    transform: none !important;
    transition: none !important;
  }
  .lookbook .line-carousel-casa .carousel-cell  { flex: 0 0 85%; scroll-snap-align: center; }
  .lookbook .line-carousel-casa .carousel-libelle { padding-left: 8%; }
  .lookbook .line-carousel-casa .carousel-libelle a { font-size: 9px; line-height: 1.2; }

  /* cell-cta-casa */
  .lookbook .cell-cta-casa { padding: 8px; }

  /* Storytelling mobile */
  .lookbook .line-storytelling-mobile { display: block; margin-bottom: var(--gap); position: relative; }
  .lookbook .line-storytelling-mobile .img-container { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; }
  .lookbook .line-storytelling-mobile .img-container > picture { display: block; height: 100%; }
  .lookbook .line-storytelling-mobile .img-container > picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .lookbook .line-storytelling-mobile .storytelling-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72%; background-color: var(--color-bg); padding: 12px 10px; text-align: center; z-index: 10; overflow: visible; outline: 1px solid var(--color-text); outline-offset: -6px; }
  .lookbook .line-storytelling-mobile .storytelling-photo { width: 80%; margin: 0 auto 8px; overflow: visible !important; height: auto !important; }
  .lookbook .line-storytelling-mobile .storytelling-photo img { width: 70% !important; margin: 0 auto; height: auto !important; object-fit: unset !important; display: block; }
  .lookbook .line-storytelling-mobile .storytelling-text    { font-size: 10px; letter-spacing: 1px; line-height: 1.4; margin: 0 0 4px; }
  .lookbook .line-storytelling-mobile .storytelling-subtext { font-size: 10px; letter-spacing: 1px; margin: 0; }

  /* Storytelling desktop visible en mobile pleine largeur */
  .lookbook .cell-storytelling { display: flex !important; width: 100% !important; flex: none !important; }
  .lookbook .line-2-img:has(.cell-storytelling) { flex-direction: column; }
  .lookbook .line-2-img:has(.cell-storytelling) .cell:not(.cell-storytelling) { width: 100% !important; }
}