/* Draft Studio — Homepage styles */

/* ── Top utility strip ───────────────────────────────────────── */
.ds-utility {
  height: 36px;
  background: var(--ds-paper);
  color: var(--ds-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 var(--gut);
}
.ds-utility .sep { margin: 0 14px; opacity: 0.5; }
/* Structure marquee (desktop : 1 groupe centré, 2e copie masquée → rendu
   identique à avant ; le défilement mobile est activé dans ds-wp.css). */
.ds-utility { overflow: hidden; }
.ds-utility__track { display: flex; align-items: center; }
.ds-utility__group { display: flex; align-items: center; white-space: nowrap; }
.ds-utility__group + .ds-utility__group { display: none; }

/* ── Hero ────────────────────────────────────────────────────── */
.ds-hero {
  position: relative;
  background: var(--ds-ink);
  padding: 60px var(--gut) 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  min-height: 720px;
}
.ds-hero__body { display: flex; flex-direction: column; }
.ds-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ds-paper);
  margin-bottom: 36px;
}
.ds-hero__eyebrow .stamp {
  background: var(--ds-paper); color: var(--ds-ink);
  height: 26px; padding: 0 10px;
  display: inline-flex; align-items: center;
  border-radius: 4px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.10em;
}
.ds-hero__mega {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: clamp(72px, 9.5vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ds-paper);
  margin: 0 0 40px;
}
.ds-hero__mega .sketch-mark {
  display: inline-block;
  position: relative;
}
.ds-hero__mega .sketch-mark::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 6%;
  height: 12px;
  background: var(--ds-paper);
  transform: skewY(-1.5deg);
  opacity: 0.15;
}
.ds-hero__sub {
  font-weight: 300; font-size: 19px;
  color: var(--ds-paper);
  margin: 0 0 36px;
  letter-spacing: 0;
  line-height: 1.5;
  max-width: 480px;
}
.ds-hero__sub strong { font-weight: 700; color: var(--ds-paper); letter-spacing: 0.02em; }
.ds-hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.ds-hero__ctas .ds-pill {
  height: 56px; padding: 0 30px;
  font-weight: 500; font-size: 16px; letter-spacing: 0.02em;
  border-radius: 6px;
}
.ds-hero__ctas .ds-pill:hover {
  background: #e6e6e6;
  color: var(--ds-ink);
  box-shadow: none;
}

.ds-hero__photo {
  position: relative;
  background: var(--ds-ink);
  border-radius: 25px;
  height: 620px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ds-hero__photo img { width: 96%; max-height: 96%; object-fit: contain; filter: drop-shadow(8px 8px 14px rgba(0,0,0,0.5)); }
.ds-hero__tag {
  position: absolute; top: 26px; left: 26px;
  background: var(--ds-paper); color: var(--ds-ink);
  padding: 8px 14px; border-radius: 4px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.ds-hero__tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ds-ink); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.ds-hero__corner {
  position: absolute; bottom: 26px; right: 26px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  color: var(--ds-paper); text-align: right;
}
.ds-hero__corner .num { font-weight: 800; font-size: 56px; letter-spacing: -0.02em; line-height: 0.9;}
.ds-hero__corner .lbl { font-weight: 400; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.65;}

/* Stats strip under hero */
.ds-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ds-paper);
  background: var(--ds-black);
  padding-inline: var(--gut);
}
.ds-stats__cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(250,250,250,0.15);
  display: flex; flex-direction: column; gap: 6px;
}
.ds-stats__cell:last-child { border-right: none; }
.ds-stats__cell .v { font-weight: 800; font-size: 36px; letter-spacing: -0.02em; line-height: 1; color: var(--ds-paper);}
.ds-stats__cell .l { font-weight: 400; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(250,250,250,0.6);}

/* ── Collection grid (featured + 3 tiles) ────────────────────── */
.ds-collection {
  padding: 64px var(--gut) 80px;
  background: var(--ds-black);
}
.ds-collection__head {
  font-family: var(--font-display);
  font-weight: 400; font-size: 15px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ds-paper);
  margin: 0 0 26px;
}
/* featured */
.ds-feat {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ds-ink);
  margin-bottom: 18px;
}
.ds-feat__img { width: 100%; height: 100%; }
.ds-collection image-slot::part(frame) { background: #d7d9dc; }
.ds-collection image-slot::part(empty) { color: rgba(38,38,38,0.7); }
.ds-feat__panel {
  background: var(--ds-ink);
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 30px 34px 34px;
}
.ds-feat__badge {
  align-self: flex-start;
  background: transparent; color: var(--ds-paper);
  border: 1px solid rgba(250,250,250,0.45);
  font-family: var(--font-display); font-weight: 500;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 4px;
}
.ds-feat__meta { display: flex; flex-direction: column; gap: 6px; }
.ds-coll-dots { display: flex; gap: 8px; margin-top: 12px; }
.ds-coll-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #FAFAFA; }
.ds-feat__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; letter-spacing: 0.01em;
  color: var(--ds-paper); margin: 0;
}
.ds-feat__price {
  font-family: var(--font-sans); font-size: 17px;
  color: rgba(250,250,250,0.6);
}
/* tiles */
.ds-collection__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ds-tile {
  border-radius: 16px;
  overflow: hidden;
  background: var(--ds-ink);
  display: flex; flex-direction: column;
}
.ds-tile__img { width: 100%; height: 300px; }
.ds-tile__panel {
  background: var(--ds-ink);
  padding: 18px 22px 22px;
  display: flex; flex-direction: column; gap: 4px;
}
.ds-tile__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 17px; color: var(--ds-paper);
}
.ds-tile__price {
  font-family: var(--font-sans); font-size: 15px;
  color: rgba(250,250,250,0.6);
}

/* ── Quick-add (collection tiles) ─────────────────────────────── */
.ds-qa { margin-top: 14px; }
.ds-qa__btn {
  width: 100%; height: 44px; padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border-radius: 6px;
  font-size: 14px; letter-spacing: 0.04em;
}
.ds-qa__btn svg { transition: transform .15s; }
.ds-qa__btn:hover svg { transform: translateX(3px); }

.ds-qa__panel {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px; border-radius: 10px;
  border: 1.5px solid rgba(250,250,250,0.18);
  animation: ds-qa-in .18s ease;
}
@keyframes ds-qa-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.ds-qa__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.ds-qa__lbl {
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,250,250,0.6);
}
.ds-qa__colors { display: flex; gap: 8px; }
.ds-qa__dot {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--ds-paper);
  padding: 0; cursor: pointer;
}
.ds-qa__dot[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--ds-ink), 0 0 0 3.5px var(--ds-paper); }
.ds-qa__sizes { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.ds-qa__size {
  height: 38px; background: transparent; border: 1.5px solid var(--ds-paper); border-radius: 8px;
  color: var(--ds-paper); font-family: var(--font-display); font-weight: 500; font-size: 13px;
  cursor: pointer; transition: background .12s, color .12s, transform .1s;
}
.ds-qa__size:hover:not(:disabled) { background: var(--ds-paper); color: var(--ds-ink); }
.ds-qa__size:active:not(:disabled) { transform: scale(0.95); }
.ds-qa__size:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }
.ds-qa__cancel {
  align-self: flex-start; background: none; border: none; color: rgba(250,250,250,0.55);
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; padding: 2px 0;
}
.ds-qa__cancel:hover { color: var(--ds-paper); }
.ds-qa--compact .ds-qa__btn { height: 40px; font-size: 13px; }
.ds-qa--compact .ds-qa__size { height: 34px; font-size: 12px; }

/* ── Manifesto / intro band ──────────────────────────────────── */
.ds-manifesto {
  padding: 90px 45px 60px;
  background: var(--ds-black);
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 60px;
  align-items: start;
}
.ds-manifesto__eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,250,0.5);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.ds-manifesto__eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--ds-paper); }
.ds-manifesto__title {
  font-weight: 800; font-size: 56px; line-height: 0.92; letter-spacing: 0;
  margin: 0; color: var(--ds-paper);
  text-transform: uppercase;
}
.ds-manifesto__body {
  font-weight: 300; font-size: 18px; line-height: 1.6;
  color: rgba(250,250,250,0.8);
  margin: 0;
  max-width: 580px;
}
.ds-manifesto__body strong { font-weight: 700; color: var(--ds-paper); }
.ds-manifesto__body + .ds-manifesto__body { margin-top: 18px; }

/* ── Capsule index — anchor links to each product ────────────── */
.ds-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-inline: var(--gut); /* design : cellules dans le contenu (traits pleine largeur) */
  border-top: 2px solid var(--ds-paper);
  border-bottom: 2px solid var(--ds-paper);
  background: var(--ds-black);
}
.ds-index__cell {
  padding: 22px 24px;
  border-right: 1px solid rgba(250,250,250,0.15);
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: var(--ds-paper);
  cursor: pointer;
  transition: background .15s;
}
.ds-index__cell:last-child { border-right: none; }
.ds-index__cell:hover { background: rgba(250,250,250,0.05); }
.ds-index__num { font-family: var(--font-display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; color: rgba(250,250,250,0.4); line-height: 1;}
.ds-index__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ds-index__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; line-height: 1;}
.ds-index__meta { font-weight: 300; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(250,250,250,0.5);}
.ds-index__arrow { margin-left: auto; opacity: 0.5; transition: transform .15s, opacity .15s;}
.ds-index__cell:hover .ds-index__arrow { opacity: 1; transform: translateX(4px); }

/* ── Shoppable product module ────────────────────────────────── */
.ds-shop {
  scroll-margin-top: 90px;
  padding: 70px 45px;
  background: var(--ds-black);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
  border-bottom: 1px solid rgba(250,250,250,0.10);
  position: relative;
}
.ds-shop--reverse .ds-shop__photo { order: 2; }
.ds-shop--reverse .ds-shop__buy   { order: 1; }
/* Sand-accent module */
.ds-shop--accent { background: var(--ds-sand); color: var(--ds-ink); }
.ds-shop--accent .ds-shop__num,
.ds-shop--accent .ds-shop__name,
.ds-shop--accent .ds-shop__longtitle,
.ds-shop--accent .ds-shop__price,
.ds-shop--accent .ds-shop__pricesm,
.ds-shop--accent .ds-shop__sizelbl,
.ds-shop--accent .ds-spec-chip,
.ds-shop--accent .ds-color-chip__label { color: var(--ds-ink); }
.ds-shop--accent .ds-shop__desc { color: rgba(38,38,38,0.75); }
.ds-shop--accent .ds-spec-chip { background: transparent; border-color: rgba(38,38,38,0.35); }
.ds-shop--accent .ds-size      { border-color: var(--ds-ink); color: var(--ds-ink); }
.ds-shop--accent .ds-size:hover{ background: rgba(38,38,38,0.10); }
.ds-shop--accent .ds-size[aria-pressed="true"] { background: var(--ds-ink); color: var(--ds-sand); }
.ds-shop--accent .ds-color-dot { border-color: var(--ds-ink); }
.ds-shop--accent .ds-stepper   { border-color: var(--ds-ink); }
.ds-shop--accent .ds-stepper button { color: var(--ds-ink); }
.ds-shop--accent .ds-stepper button:hover { background: rgba(38,38,38,0.08);}
.ds-shop--accent .ds-stepper .val { color: var(--ds-ink); border-color: var(--ds-ink);}
.ds-shop--accent .ds-shop__addbtn { background: var(--ds-ink); color: var(--ds-paper); }
.ds-shop--accent .ds-shop__addbtn:hover { background: var(--ds-black); }
.ds-shop--accent .ds-shop__photo-frame { background: rgba(38,38,38,0.06); }

.ds-shop__photo {
  position: relative;
}
.ds-shop__photo-frame {
  background: var(--ds-ink);
  border-radius: 25px;
  height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  transition: background .28s cubic-bezier(.2,.8,.2,1);
}
.ds-shop__photo-frame img {
  width: 78%; max-height: 92%; object-fit: contain;
  filter: drop-shadow(8px 8px 14px rgba(0,0,0,0.45));
  transition: opacity .2s ease;
}
.ds-shop__photo-num {
  position: absolute; top: 26px; left: 26px;
  color: var(--ds-paper);
  font-weight: 800; font-size: 28px; line-height: 1; letter-spacing: 0;
  opacity: 0.8;
}
.ds-shop--accent .ds-shop__photo-num { color: var(--ds-ink);}
.ds-shop__photo-badge {
  position: absolute; top: 26px; right: 26px;
  background: var(--ds-paper); color: var(--ds-ink);
  height: 32px; padding: 0 14px;
  display: inline-flex; align-items: center;
  border-radius: 999px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.10em; text-transform: uppercase;
}
.ds-shop__photo-tip {
  position: absolute; bottom: 22px; left: 26px;
  color: rgba(250,250,250,0.6);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.10em; text-transform: uppercase;
}
.ds-shop--accent .ds-shop__photo-tip { color: rgba(38,38,38,0.55);}

/* Buy column */
.ds-shop__buy { display: flex; flex-direction: column; }
.ds-shop__num {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.5);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.ds-shop__num .line { display: inline-block; width: 36px; height: 2px; background: rgba(250,250,250,0.5);}
.ds-shop--accent .ds-shop__num { color: rgba(38,38,38,0.55); }
.ds-shop--accent .ds-shop__num .line { background: rgba(38,38,38,0.55); }
.ds-shop__name {
  font-weight: 800; font-size: 64px; line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ds-paper); margin: 0 0 12px;
}
.ds-shop__longtitle {
  font-weight: 400; font-size: 14px; line-height: 1.45;
  color: rgba(250,250,250,0.7);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  max-width: 520px;
}
.ds-shop__pricerow { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.ds-shop__price {
  font-weight: 700; font-size: 32px;
  letter-spacing: -0.02em; color: var(--ds-paper);
}
.ds-shop__pricesm {
  font-weight: 300; font-size: 13px; color: rgba(250,250,250,0.55);
  letter-spacing: 0.02em;
}
.ds-shop__desc {
  font-weight: 300; font-size: 14px; line-height: 1.6;
  color: rgba(250,250,250,0.75);
  margin: 0 0 24px;
  max-width: 540px;
}

/* Spec chips row */
.ds-spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;}
.ds-spec-chip {
  display: inline-flex; align-items: center;
  height: 32px; padding: 0 14px;
  border: 1.5px solid rgba(250,250,250,0.30);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--ds-paper);
  letter-spacing: 0.04em;
}

/* Section labels above selectors */
.ds-shop__sizelbl {
  display: flex; align-items: baseline; justify-content: space-between;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ds-paper);
  margin: 0 0 12px;
}
.ds-shop__sizelbl .hint { font-weight: 300; color: rgba(250,250,250,0.55); letter-spacing: 0.02em; text-transform: none;}
.ds-shop--accent .ds-shop__sizelbl .hint { color: rgba(38,38,38,0.55); }
.ds-shop__sizelbl a { color: inherit; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* Color dots */
.ds-color-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.ds-color-dot {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--ds-paper);
  cursor: pointer; padding: 0;
  background: var(--ds-ink);
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.ds-color-dot--white { background: var(--ds-paper); }
.ds-color-dot--sand  { background: var(--ds-sand);  }
.ds-color-dot--charcoal { background: var(--ds-ink); }
.ds-color-dot[aria-pressed="true"] {
  box-shadow: 0 0 0 3px var(--ds-black), 0 0 0 5px var(--ds-paper);
  transform: scale(1.04);
}
.ds-shop--accent .ds-color-dot[aria-pressed="true"] {
  box-shadow: 0 0 0 3px var(--ds-sand), 0 0 0 5px var(--ds-ink);
}
.ds-color-chip__label {
  font-weight: 300; font-size: 13px;
  color: rgba(250,250,250,0.7); letter-spacing: 0.02em;
}

/* Size grid */
.ds-sizerow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 22px; }
.ds-size {
  height: 52px;
  background: transparent; border: 2px solid var(--ds-paper); border-radius: 12px;
  color: var(--ds-paper); font-family: var(--font-display);
  font-weight: 700; font-size: 16px; letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .12s, color .12s, transform .1s;
}
.ds-size:hover:not(:disabled) { background: rgba(250,250,250,0.10);}
.ds-size[aria-pressed="true"] { background: var(--ds-paper); color: var(--ds-ink); }
.ds-size:active:not(:disabled) { transform: scale(0.96); }
.ds-size:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Stepper + price + add */
.ds-shop__buyrow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: stretch;
  margin-top: 8px;
}
.ds-stepper {
  display: inline-flex; align-items: stretch; height: 56px;
  border: 2px solid var(--ds-paper); border-radius: 999px; overflow: hidden;
}
.ds-stepper button {
  width: 44px; background: transparent; border: none; color: var(--ds-paper);
  font-weight: 700; font-size: 22px; cursor: pointer;
  transition: background .12s;
}
.ds-stepper button:hover { background: rgba(250,250,250,0.10);}
.ds-stepper .val {
  width: 44px; display: flex; align-items: center; justify-content: center;
  border-left: 2px solid var(--ds-paper); border-right: 2px solid var(--ds-paper);
  font-weight: 700; font-size: 18px; letter-spacing: 0;
  color: var(--ds-paper);
}
.ds-shop__addbtn {
  height: 56px; padding: 0 28px;
  border-radius: 999px;
  background: var(--ds-paper); color: var(--ds-ink);
  border: 2px solid var(--ds-paper);
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px; letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  transition: background .12s, color .12s, transform .1s;
}
.ds-shop__addbtn .price-tag {
  font-weight: 300; opacity: 0.65;
  font-size: 14px; letter-spacing: 0;
  padding-left: 14px;
  border-left: 1.5px solid currentColor;
}
.ds-shop__addbtn:disabled {
  background: transparent; color: var(--ds-paper);
  cursor: not-allowed;
}
.ds-shop--accent .ds-shop__addbtn:disabled { background: transparent; color: var(--ds-ink); border-color: var(--ds-ink); }
.ds-shop__addbtn:hover:not(:disabled) { background: var(--ds-black); color: var(--ds-paper); }
.ds-shop--accent .ds-shop__addbtn:hover:not(:disabled) { background: var(--ds-ink); color: var(--ds-sand); }
.ds-shop__addbtn:active:not(:disabled) { transform: scale(0.98); }

.ds-shop__shipline {
  display: flex; align-items: center; gap: 18px;
  margin-top: 18px;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250,250,250,0.6);
}
.ds-shop--accent .ds-shop__shipline { color: rgba(38,38,38,0.6); }
.ds-shop__shipline span { display: inline-flex; align-items: center; gap: 6px;}
.ds-shop__shipline svg { width: 14px; height: 14px;}

/* ── Story band — sketch ethos ───────────────────────────────── */
.ds-story {
  background: var(--ds-ink);
  border-top: 2px solid var(--ds-paper);
  border-bottom: 2px solid var(--ds-paper);
  padding: 90px 45px;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 60px;
  align-items: center;
}
.ds-story__eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.ds-story__eyebrow::before { content: ""; width: 32px; height: 2px; background: rgba(250,250,250,0.55); }
.ds-story__title {
  font-weight: 800; font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92; letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--ds-paper);
}
.ds-story__body { font-weight: 300; font-size: 17px; line-height: 1.65; color: rgba(250,250,250,0.85); margin: 0 0 28px; max-width: 540px;}
.ds-story__signature {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(250,250,250,0.6);
}
.ds-story__quote {
  background: var(--ds-black);
  border: 2px solid var(--ds-paper);
  border-radius: 25px;
  padding: 40px;
  position: relative;
}
.ds-story__quote-mark {
  position: absolute; top: -28px; left: 30px;
  font-weight: 800; font-size: 110px;
  line-height: 1; color: var(--ds-paper);
  font-family: serif;
}
.ds-story__quote-text {
  font-weight: 500; font-size: 22px; line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ds-paper);
  margin: 0 0 24px;
}
.ds-story__quote-author {
  font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(250,250,250,0.6);
}

/* ── Press strip ─────────────────────────────────────────────── */
.ds-press {
  background: var(--ds-black);
  padding: 50px 45px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
}
.ds-press__lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  max-width: 100px;
}
.ds-press__logos {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  flex-wrap: wrap;
}
.ds-press__logo {
  font-weight: 800; font-size: 22px; letter-spacing: 0.02em;
  color: rgba(250,250,250,0.65);
  font-family: var(--font-display);
  text-transform: uppercase;
}
.ds-press__logo.italic { font-style: italic; font-weight: 500;}
.ds-press__logo.serif  { font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: 26px;}
.ds-press__logo.thin   { font-weight: 300; letter-spacing: 0.16em; font-size: 19px;}

/* ── Instagram strip ─────────────────────────────────────────── */
.ds-igstrip {
  background: var(--ds-black);
  padding: 70px 45px 50px;
  border-top: 1px solid rgba(250,250,250,0.10);
}
.ds-igstrip__head {
  display: flex; align-items: end; justify-content: space-between; gap: 30px;
  margin-bottom: 28px;
}
.ds-igstrip__head h2 {
  margin: 0;
  font-weight: 800; font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0; line-height: 0.95; text-transform: uppercase;
  color: var(--ds-paper);
}
.ds-igstrip__head h2 small {
  display: block;
  font-weight: 400; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  margin-bottom: 14px;
}
.ds-igstrip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.ds-igstrip__tile {
  aspect-ratio: 1 / 1;
  background: var(--ds-ink);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .15s;
}
.ds-igstrip__tile:hover { transform: scale(1.02); }
.ds-igstrip__tile img { width: 86%; height: 86%; object-fit: contain; filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.3));}
.ds-igstrip__tile--text {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  color: var(--ds-paper);
  background: var(--ds-paper); color: var(--ds-ink);
}
.ds-igstrip__tile--text .big {font-weight: 800; font-size: 28px; letter-spacing: -0.02em; line-height: 0.9;}
.ds-igstrip__tile--text .sm  {font-weight: 400; font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;}
.ds-igstrip__tile--sand { background: var(--ds-sand); }
.ds-igstrip__handle {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,0.7); color: var(--ds-paper);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* ── Newsletter band ─────────────────────────────────────────── */
.ds-newsletter {
  background: var(--ds-paper);
  color: var(--ds-ink);
  padding: 70px var(--gut);
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  gap: 50px;
  align-items: center;
}
.ds-newsletter__title {
  font-weight: 800; font-size: clamp(40px, 5vw, 60px);
  line-height: 0.95; letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ds-ink);
}
.ds-newsletter__sub {
  font-weight: 400; font-size: 16px; line-height: 1.5;
  color: rgba(38,38,38,0.7); margin: 0;
  max-width: 480px;
}
.ds-newsletter__form {
  display: flex; gap: 0;
  align-items: stretch;
  background: var(--ds-paper);
  border: 1px solid rgba(38,38,38,0.12);
  border-radius: 8px;
  height: 64px;
  padding: 0;
  overflow: hidden;
}
.ds-newsletter__form input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 400;
  color: var(--ds-ink); letter-spacing: 0;
  padding: 0 22px;
  min-width: 0;
}
.ds-newsletter__form input::placeholder { color: rgba(38,38,38,0.45); }
.ds-newsletter__form button {
  background: #ededed; color: var(--ds-ink);
  border: none; border-radius: 0;
  width: 56px; flex: 0 0 56px;
  align-self: stretch;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .12s;
}
.ds-newsletter__form button:hover { background: #e0e0e0; }
.ds-newsletter__legal {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(38,38,38,0.55);
}

/* ── Floating quickbuy bar (appears on scroll past products) ─── */
.ds-quickbuy {
  position: fixed;
  bottom: 22px; left: 50%;
  transform: translate(-50%, 200%);
  background: var(--ds-paper); color: var(--ds-ink);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  display: flex; align-items: center; gap: 18px;
  box-shadow: 5px 10px 30px rgba(0,0,0,0.5);
  z-index: 70;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.ds-quickbuy.open { transform: translate(-50%, 0); }
.ds-quickbuy__label { font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; }
.ds-quickbuy__items { display: flex; align-items: center; gap: -4px; }
.ds-quickbuy__dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ds-ink);
  border: 2px solid var(--ds-paper);
  margin-left: -8px;
  cursor: pointer;
  transition: transform .12s;
}
.ds-quickbuy__dot:first-child { margin-left: 0; }
.ds-quickbuy__dot:hover { transform: translateY(-3px); }
.ds-quickbuy__dot--white { background: var(--ds-paper); border-color: var(--ds-ink);}
.ds-quickbuy__dot--sand  { background: var(--ds-sand); }
.ds-quickbuy__cta {
  background: var(--ds-ink); color: var(--ds-paper);
  border: none; border-radius: 999px;
  height: 44px; padding: 0 22px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer;
  transition: background .12s;
}
.ds-quickbuy__cta:hover { background: var(--ds-black); }

/* ====================================================================
   ProductBlock v2 (.ds-pb*) — PORTÉ VERBATIM depuis design/styles/home.css
   (page Cars collection : carrousel coverflow, galerie, lightbox, ajout 2 temps)
   ==================================================================== */
/* ── Product block v2 (deux panneaux jointifs, sans cadre) ────── */
.ds-pb {
  scroll-margin-top: 90px;
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 0;
}
/* Alternance image / texte */
.ds-pb--reverse .ds-pb__media { order: 2; border-radius: 0 24px 24px 0; }
.ds-pb--reverse .ds-pb__buy   { order: 1; border-radius: 24px 0 0 24px; }
.ds-pb--reverse .ds-pb__dots  { right: auto; left: 22px; }

/* Panneau image (gauche) */
.ds-pb__media {
  position: relative;
  background: #262626;
  border-radius: 24px 0 0 24px;
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ds-pb__badge {
  position: absolute; top: 22px; left: 24px; z-index: 4;
  background: var(--ds-paper); color: var(--ds-ink);
  padding: 8px 13px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
}
/* Loupe zoom — coin haut droit */
.ds-pb__zoom {
  position: absolute; top: 20px; right: 20px; z-index: 4;
  width: 42px; height: 42px; border-radius: 10px; border: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--ds-paper); color: var(--ds-ink);
  cursor: pointer; transition: background .12s ease, transform .1s ease;
}
.ds-pb__zoom:hover { background: #e6e6e6; }
.ds-pb__zoom:active { transform: scale(0.95); }
/* Lightbox plein écran */
.ds-pb__lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px;
  animation: ds-pb-fade .18s ease;
}
@keyframes ds-pb-fade { from { opacity: 0; } to { opacity: 1; } }
.ds-pb__zoom--out { top: 24px; right: 30px; }
.ds-pb__lightbox-img {
  max-width: min(78vw, 700px); max-height: 72vh;
  object-fit: contain; cursor: default;
}
.ds-pb__lightbox-dots {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px; z-index: 3;
}
.ds-pb__lightbox-thumbs {
  display: flex; gap: 12px; margin-top: 30px; z-index: 3;
}
/* Photo lifestyle plein cadre */
.ds-pb__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ds-pb__stage {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 30px 92px;
}
/* Carrousel coverflow : 3 t-shirts, le sélectionné devant */
.ds-pb__carousel {
  position: relative;
  width: 100%; height: 100%;
  perspective: 1300px;
}
.ds-pb__tee {
  position: absolute;
  top: 50%; left: 50%;
  height: 80%; width: auto; object-fit: contain;
  transform-origin: center center;
  transition: transform .62s cubic-bezier(.34,.08,.2,1), opacity .5s ease, filter .5s ease;
  -webkit-user-select: none; user-select: none;
}
.ds-pb__tee--front {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3; opacity: 1;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,0.55));
}
.ds-pb__tee--left {
  transform: translate(-50%, -54%) translateX(-58%) scale(0.62);
  z-index: 1; opacity: 0.95;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5));
}
.ds-pb__tee--right {
  transform: translate(-50%, -54%) translateX(58%) scale(0.62);
  z-index: 2; opacity: 0.95;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,0.5));
}
@media (prefers-reduced-motion: reduce) {
  .ds-pb__tee { transition: none; }
}
.ds-pb__dots {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%); z-index: 4;
  display: flex; flex-direction: column; gap: 16px;
}
.ds-pb__thumbs {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; gap: 12px;
}
.ds-pb__thumb {
  width: 54px; height: 54px; border-radius: 12px;
  border: 2px solid rgba(250,250,250,0.2);
  background: rgba(20,20,20,0.55);
  padding: 0; cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, transform .1s ease;
}
.ds-pb__thumb:hover { border-color: rgba(250,250,250,0.55); }
.ds-pb__thumb:active { transform: scale(0.95); }
.ds-pb__thumb.is-active { border-color: var(--ds-paper); }
.ds-pb__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ds-pb__thumb--tee img { object-fit: contain; padding: 6px; }

/* Panneau achat (droite) — fond clair, tout en #262626 */
.ds-pb__buy {
  background: #FAFAFA;
  color: #262626;
  border-radius: 0 24px 24px 0;
  padding: 48px 44px;
  display: flex; flex-direction: column;
}
.ds-pb__head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; margin-bottom: 26px;
}
.ds-pb__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 0.92; letter-spacing: -0.02em;
  color: #262626; margin: 0;
}
.ds-pb__price {
  font-weight: 700; font-size: 30px; letter-spacing: -0.02em;
  color: #262626; white-space: nowrap;
}
.ds-pb__desc {
  font-weight: 300; font-size: 15px; line-height: 1.6;
  color: rgba(38,38,38,0.72); margin: 0 0 28px; max-width: 540px;
}

/* Chips spec — rectangle arrondi, libellé sur 2 lignes, 6 répartis */
.ds-pb__chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; }
.ds-pb__chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 9px 14px; border-radius: 12px;
  border: 1.5px solid rgba(38,38,38,0.28);
  line-height: 1.15; text-align: center;
}
.ds-pb__chip span:first-child {
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #262626;
}
.ds-pb__chip span:last-child {
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  letter-spacing: 0.03em; color: rgba(38,38,38,0.65);
}

.ds-pb__sizelbl {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.ds-pb__sizelbl > span {
  font-family: var(--font-display); font-weight: 400;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: #262626;
}
.ds-pb__sizelbl a {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #262626; text-decoration: underline; text-underline-offset: 3px;
}
.ds-pb__sizes {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
  margin-bottom: 30px;
}
/* Tailles sur fond clair */
.ds-pb__buy .ds-size { border-color: rgba(38,38,38,0.4); color: #262626; }
.ds-pb__buy .ds-size:hover:not(:disabled) { background: rgba(38,38,38,0.08); }
.ds-pb__buy .ds-size[aria-pressed="true"] { background: #262626; color: #FAFAFA; border-color: #262626; }

.ds-pb__buyrow {
  margin-top: auto;
  display: flex; align-items: center; gap: 16px;
}
/* Gestion quantité — rendu plat identique au panier */
.ds-pb__qty { display: inline-flex; align-items: center; gap: 4px; }
.ds-pb__qty button {
  width: 40px; height: 40px; background: rgba(38,38,38,0.08); border: none; border-radius: 8px;
  color: #262626; cursor: pointer; font-size: 19px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center; transition: background .12s;
}
.ds-pb__qty button:hover { background: rgba(38,38,38,0.16); }
.ds-pb__qty .v { min-width: 36px; text-align: center; font-weight: 700; font-size: 16px; color: #262626; }

/* CTA ajout — foncé sur fond clair, assombrissement subtil au hover */
.ds-pb__add {
  flex: 1; height: 60px; border: none; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(38,38,38,0.12); color: rgba(38,38,38,0.5);
  font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.04em;
  cursor: not-allowed;
  transition: background .14s ease, color .14s ease, transform .1s;
}
.ds-pb__add.is-active {
  background: #262626; color: #FAFAFA; cursor: pointer;
}
.ds-pb__add.is-active:hover { background: #000; }
.ds-pb__add.is-active:active { transform: scale(0.98); }
.ds-pb__add svg { transition: transform .15s ease; }
.ds-pb__add.is-active:hover svg { transform: translateX(4px); }

/* .ds-shoppage — PORTÉ VERBATIM depuis design/styles/home.css (gouttière
   var(--gut) = blocs dans le contenu + marge haute 56px au 1er bloc). */
/* ── Boutique : bande pleine largeur, contenu resserré ────────── */
.ds-shoppage {
  padding: 56px var(--gut) 80px;
}
.ds-shoppage__products {
  border: 1px solid rgba(250,250,250,0.10);
  border-bottom: none;
}
.ds-shoppage__products .ds-shop {
  border-left: none;
  border-right: none;
}
