*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f3ece7;
  --rose-text: #c8a09c;
  --text-mid: #7a5550;
  --text-light: #b09090;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

body {
  background-color: transparent;
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

.text-italic { font-style: italic; }

/* ════════════════════════════
   SHARED
════════════════════════════ */
.collection-label {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}

/* ════════════════════════════
   DESKTOP
════════════════════════════ */
.page-wrapper {
  display: block;
  width: 100%;
  padding: 2rem 1.5rem 2rem;
}

/* ── Photo strip ── */
.photo-strip {
  display: flex;
  gap: 2px;
  width: 100%;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  position: relative;
  align-items: flex-start;
}

.cell {
  flex: 1 1 0;   /* ← était flex: 1 */
  min-width: 0;  /* ← ajout */
  position: relative;
}

/* quickshop: block, position relative — image gives the height naturally */
.cell a.quickshop {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* img-container */
.cell .img-container {
  display: block;
  overflow: hidden;
}

.cell .img-container picture {
  display: block;
  width: 100%;
}

/* img: width 100%, height auto — natural ratio from width/height attributes */
.cell .img-container img.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Add to cart button — hidden, shown on quickshop hover ── */
.quickAddToCartMobile__button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 15;
  padding: 0;
}

.cell a.quickshop:hover .quickAddToCartMobile__button {
  display: flex;
}

/* ── Product labels ── */
.libelle-abs {
  position: absolute;
  bottom: 0.75rem;
  left: 0.65rem;
  right: 0.65rem;
  z-index: 10;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  pointer-events: none;
}

.cell:hover .libelle-abs {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cell.is-center .libelle-abs {
  left: auto;
  right: 0.75rem;
  text-align: right;
}

.libelle-abs p.libelle { margin: 0; }

.libelle-abs p.libelle a,
.libelle-abs p.libelle {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  line-height: 1.9;
  text-decoration: none;
}

.libelle-abs p.libelle a:hover { text-decoration: none; }

/* ── Hover overlay ── */
.cell-hover-overlay {
  position: absolute;
  z-index: 9999;
  pointer-events: auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
  transform: scaleY(0.92);
  transform-origin: top center;
}

.cell-hover-overlay.visible {
  opacity: 1;
  transform: scaleY(1);
}

.cell-hover-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.cell-hover-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,3,0.65) 0%, transparent 50%);
  pointer-events: none;
}

.cell-hover-overlay .overlay-labels {
  position: absolute;
  bottom: 1rem;
  left: 0.9rem;
  right: 0.9rem;
  z-index: 2;
}

.cell-hover-overlay .overlay-labels p.libelle,
.cell-hover-overlay .overlay-labels p.libelle a {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  line-height: 1.9;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.cell-hover-overlay .overlay-labels p.libelle a:hover { text-decoration: none; }

/* ── Bottom row ── */
.bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0.15rem;
  gap: 1rem;
}

.fusion-logo {
  flex-shrink: 0;
  align-self: flex-end;
}

.fusion-svg {
  display: block;
  width: clamp(280px, 52vw, 660px);
  height: auto;
}

.editorial-block {
  text-align: right;
  padding-bottom: 0;
  max-width: 260px;
  flex-shrink: 0;
  align-self: flex-end;
}

.editorial-tagline,
.editorial-desc {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  color: #C59AA1;
  line-height: 1.7;
  margin: 0;
}

.cell .img-container img.img-responsive {
  width: 100%;
  height: auto;
}

/* ════════════════════════════
   MOBILE — Carousel
════════════════════════════ */
@media (max-width: 680px) {
  .photo-strip { display: none; }
  .bottom-row  { display: none; }
  .page-wrapper { padding: 1.8rem 0 0; }

  .mob-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .mob-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 15vw;
    padding-right: 15vw;
    padding-bottom: 4px;
  }

  .mob-track::-webkit-scrollbar { display: none; }

  .mob-slide {
    flex: 0 0 70vw;
    max-width: 300px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0.45;
    transform: scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
  }

  .mob-slide.is-active { opacity: 1; transform: scale(1); z-index: 2; }

  .mob-slide picture { display: block; width: 100%; }

  .mob-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .mob-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,8,5,0.65) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  .mob-slide .libelle-abs {
    position: absolute;
    bottom: 0.9rem;
    left: 0.8rem;
    right: 0.8rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
    pointer-events: none;
  }

  .mob-slide.is-active .libelle-abs { opacity: 1; transform: translateY(0); }

  .mob-slide .libelle-abs p.libelle { margin: 0; }

  .mob-slide .libelle-abs p.libelle,
  .mob-slide .libelle-abs p.libelle a {
    display: block;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
    line-height: 1.9;
    text-decoration: none;
  }

  .mob-slide .libelle-abs p.libelle a,
  .mob-slide .libelle-abs p.libelle { font-size: 0.625rem; }

  .mob-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
  }

  .mob-dot {
    width: 20px;
    height: 1.5px;
    background: var(--rose-text);
    opacity: 0.3;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s, width 0.3s;
  }

  .mob-dot.is-active { opacity: 1; width: 34px; }

  .mob-footer {
    margin-top: 4rem;
    padding: 0 1rem 2rem;
    text-align: center;
  }

  .mob-fusion-svg { display: block; width: 100%; height: auto; margin-bottom: 2rem; }

  .mob-tagline,
  .mob-desc {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-weight: 400;
    font-size: 0.75rem;
    color: #C59AA1;
    line-height: 1.7;
    margin: 0;
  }

  .mob-slide.is-active .libelle-abs {
  pointer-events: auto;
}
.mob-slide.is-active .libelle-abs a {
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
}