.product-url { color: inherit; text-decoration: none; display: block; }
.product-url h3 { margin: 12px 0 6px; }
.product-img {
  background-color: #f3f2ee !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border-color: #e2e2e2;
}
.pdp-img {
  background-color: #f3f2ee;
}

/* ---------- Page produit ---------- */
.pdp-crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ash);
  padding: 28px 0 8px;
}
.pdp-crumb a { color: var(--ink); }
.pdp-crumb a:hover { color: var(--ash); }
.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: 20px 0 72px;
}
.pdp-pack {
  aspect-ratio: 1 / 1;
  background: #f3f2ee;
  border: 1px solid var(--fog);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pdp-pack img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
}
.pdp-pack.is-sold { filter: grayscale(1); opacity: 0.75; }
.pdp-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pdp-thumb {
  width: 72px; height: 72px; padding: 0; cursor: pointer;
  border: 1px solid var(--fog); background: #f3f2ee center/contain no-repeat;
}
.pdp-thumb.is-on { outline: 2px solid var(--ink); outline-offset: 1px; }
.pdp-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--acid); color: var(--ink);
  padding: 5px 9px; margin: 8px 0 16px;
}
.pdp-badge.is-sold { background: #111; color: #fff; }
.pdp-info h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing: -0.03em; line-height: 1.02;
  margin: 0 0 12px; text-wrap: balance;
}
.pdp-meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ash); margin-bottom: 22px;
}
.pdp-info .sizes { margin: 0 0 22px; }
.pdp-info .size { min-width: 40px; height: 34px; font-size: 12px; }
.pdp-txt { color: #444; max-width: 42ch; margin-bottom: 28px; font-size: 16px; }
.pdp-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.pdp-more { padding: 0 0 80px; border-top: 1px solid var(--fog); }
.pdp-more .section-label { margin: 36px 0 20px; }
.pdp-more .shop-grid-full { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
@media (max-width: 860px) {
  .pdp { grid-template-columns: 1fr; padding-bottom: 48px; }
  .pdp-info h1 { font-size: clamp(26px, 8vw, 36px); }
}

.product.is-sold .product-img,
.product:has(.product-badge:not(.product-badge--acid)) .product-img {
  filter: grayscale(1);
  opacity: 0.7;
}
.product.is-sold h3,
.product.is-sold .product-meta,
.product:has(.product-badge:not(.product-badge--acid)) h3,
.product:has(.product-badge:not(.product-badge--acid)) .product-meta { opacity: 0.5; }
.product.is-sold .sizes,
.product.is-sold .sizes-demand,
.product:has(.product-badge:not(.product-badge--acid)) .sizes,
.product:has(.product-badge:not(.product-badge--acid)) .sizes-demand { display: none; }
.product.is-sold .product-badge { background: #111; color: #fff; }

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-group {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
}
