/** Shopify CDN: Minification failed

Line 305:0 Unexpected "}"
Line 652:0 Unexpected "}"
Line 966:0 Unexpected "<"
Line 969:5 Expected identifier but found "%"
Line 970:6 Unexpected "<"
Line 971:5 Expected identifier but found "%"
Line 972:6 Unexpected "<"
Line 973:5 Expected identifier but found "%"
Line 975:4 Unexpected "{"
Line 975:5 Expected identifier but found "%"
... and 67 more hidden warnings

**/
/* ============================================================
   m.adam — Maquette « Boudoir contemporain »
   Palette réelle fondatrice + typo Google Fonts
   ============================================================ */

:root {
  /* Couleurs (palette réelle PDF fondatrice) */
  --bg:          #FFFCF8;  /* fond ivoire */
  --ink:         #2B1B09;  /* chocolat profond — texte/structure */
  --rouge:       #731631;  /* logo header, accents forts */
  --terracotta:  #C57148;
  --olive:       #847136;
  --rose:        #C3837B;  /* damier, respiration */
  --cobalt:      #3733B5;  /* fleur symbole uniquement */
  --bleu-clair:  #AADFFF;  /* bandeau collection (RVB fondatrice) */
  --rose-clair:  #FFD5D5;  /* panneau « engagement » (RVB fondatrice) */
  --bleu-logo:   #3D439D;  /* footer — bleu du logo (RVB fondatrice) */
  --bg-2:        #F6EFE6;  /* fond alterné légèrement plus chaud */

  /* Typo */
  --font-display: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-serif:   'Montserrat', 'Helvetica Neue', sans-serif;  /* tout passe en Montserrat (choix fondatrice) */
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing (rythme 8px) */
  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 96px;  --space-8: 128px;

  /* Layout */
  --container-max: 1440px;
  --container-padding: clamp(24px, 5vw, 56px);

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --d-fast: 200ms; --d-base: 400ms; --d-slow: 800ms;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typo helpers ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; }
.serif-it { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.smallcaps {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px;
}
.eyebrow {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: clamp(12px, 1.2vw, 14px); color: var(--rouge);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.section { padding-block: clamp(64px, 10vw, 128px); }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--bg); padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   HEADER  — fleur (rond) à gauche · logo rouge au centre · nav à droite
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: var(--container-padding);
  transition: background var(--d-base) var(--ease-out),
              box-shadow var(--d-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(43, 27, 9, 0.08);
}
/* hero transparent state : texte clair, AUCUN logo — il n'apparaît qu'au scroll */
.site-header.on-hero:not(.is-scrolled) { color: #fff; }
.site-header.on-hero:not(.is-scrolled) .header-logo { opacity: 0; visibility: hidden; }
.site-header.on-hero:not(.is-scrolled) .fleur-rond { border-color: rgba(255,255,255,0.6); }

.header-left { display: flex; align-items: center; gap: var(--space-4); }
.fleur-rond {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(43, 27, 9, 0.18);
  display: grid; place-items: center; overflow: hidden;
  flex: 0 0 auto;
  transition: transform var(--d-base) var(--ease-out);
}
.fleur-rond:hover { transform: rotate(-8deg) scale(1.05); }
.fleur-rond img { width: 78%; height: 78%; object-fit: contain; }

.header-nav { display: flex; gap: var(--space-3); }
.header-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; position: relative; padding-block: 4px;
}
.header-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width var(--d-base) var(--ease-out);
}
.header-nav a:hover::after, .header-nav a[aria-current="page"]::after { width: 100%; }

.header-logo { justify-self: center; transition: opacity var(--d-base) var(--ease-out); }
.header-logo img { height: 22px; width: auto; }

.header-right { justify-self: end; display: flex; align-items: center; gap: var(--space-3); }
.header-right .smallcaps { font-size: 11px; }
.cart-link { display: inline-flex; align-items: center; gap: 6px; }
.cart-count {
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: var(--rouge); color: #fff; font-size: 10px; font-weight: 700;
  display: grid; place-items: center; font-family: var(--font-display);
}
.burger { display: none; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFCF8;
  padding: 16px 22px;
  min-width: 180px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  z-index: 999999;
}

.nav-item:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dropdown-menu a {
  white-space: nowrap;
  text-decoration: none;
}
.size-guide-table th,
.size-guide-table td {
  text-align: center;
}

.size-guide-table th:first-child,
.size-guide-table td:first-child {
  text-align: center;
}

.size-guide-table {
  table-layout: fixed;
}
/* ============================================================
   HERO  — photo plein cadre · logo blanc grand centré
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,27,9,.06) 0%, rgba(43,27,9,.08) 42%, rgba(43,27,9,.44) 100%);
}
.hero__inner { position: relative; padding: var(--space-4); max-width: 900px; }
.hero__logo {
  width: min(72vw, 620px); height: auto; margin-inline: auto;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,.25));
}
.hero__tagline {
  margin-top: var(--space-4);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 3.8vw, 46px); line-height: 1.15; letter-spacing: -0.01em;
}
.hero__sub {
  margin-top: var(--space-3); max-width: min(92vw, 760px); margin-inline: auto;
  font-size: clamp(13px, 1.3vw, 15px); opacity: 0.92; line-height: 1.7;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-family: var(--font-display); font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 38px; background: #fff;
  animation: scrollline 2s var(--ease-out) infinite;
}
@keyframes scrollline { 0%,100%{transform:scaleY(.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px;
  transition: transform var(--d-fast) var(--ease-out),
              background var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--rouge); transform: translateY(-2px); }
.btn--rouge { background: var(--rouge); color: #fff; }
.btn--rouge:hover { transform: translateY(-2px); background: var(--ink); }
.btn--outline { border: 1px solid currentColor; }
.btn--outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.link-arrow {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.03em; display: inline-flex; gap: 8px; align-items: center;
  border-bottom: 1px solid currentColor; padding-bottom: 3px; color: var(--rouge);
}
.link-arrow span { transition: transform var(--d-base) var(--ease-out); }
.link-arrow:hover span { transform: translateX(5px); }

/* ============================================================
 /* ============================================================
   MANIFESTE
   ============================================================ */

.manifesto {
  text-align: center;
}

.manifesto .eyebrow {
  display: block;
  margin-bottom: var(--space-3);
}

.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto;
}

.manifesto__quote em {
  font-family: var(--font-serif);
  font-weight: 400;
}

.manifesto__lead {
  margin: var(--space-4) auto 0;
  max-width: 54ch;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}
}

/* --- Le projet : texte (gauche, centré) + grand panneau couleur full-bleed à droite --- */
.section--project { padding-block: 0; }
.project-split { display: grid; gap: 0; align-items: stretch; }
@media (min-width: 900px) { .project-split { grid-template-columns: 1fr 1fr; } }
.project-split__text {
  text-align: center; max-width: 48ch; margin-inline: auto; align-self: center;
  padding: 0;
}
.project-split__text .eyebrow { display: block; margin-bottom: var(--space-2); }
.project-split__text .manifesto__quote { font-size: clamp(28px, 3.6vw, 50px); margin-inline: auto; }
.project-split__text .manifesto__lead { margin-top: var(--space-3); }
.project-split__text .link-arrow { margin-top: var(--space-4); }
.project-split__media { display: flex; }
.framed-photo {
  flex: 1; width: 100%; min-height: clamp(380px, 56vh, 600px);
  background: transparent;
  display: grid; place-items: center; padding: clamp(48px, 7vw, 104px);
  overflow: hidden;
}
.framed-photo {
  flex: 1;
  width: 100%;
  min-height: clamp(380px, 56vh, 600px);
  background: transparent;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.framed-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- La matière : photo full-bleed à gauche, texte à droite --- */
.matiere-split { padding-block: 0; }
.matiere-grid { display: grid; gap: 0; align-items: stretch; }
@media (min-width: 900px) { .matiere-grid { grid-template-columns: 1fr 1fr; } }
.matiere-grid__media { min-height: clamp(420px, 72vh, 760px); overflow: hidden; }
.matiere-grid__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.matiere-grid__text {
  align-self: center; max-width: 46ch; margin-inline: auto;
  padding-block: clamp(40px, 6vw, 88px); padding-inline: clamp(24px, 4vw, 56px);
}
.matiere-grid__text .eyebrow { display: block; margin-bottom: var(--space-2); }
.matiere-grid__text h2 { font-size: clamp(30px, 4vw, 54px); margin-bottom: var(--space-3); }
.matiere-grid__text p { margin-bottom: var(--space-3); }

/* --- Bandeau titre coloré pleine largeur (met en valeur « La collection ») --- */
.title-band {
  background: var(--bleu-clair); color: var(--ink);
  padding-block: clamp(32px, 5vw, 60px);
  margin-bottom: var(--space-5);
}
.title-band .section-head { margin-bottom: 0; align-items: center; }
.title-band h2 { color: #fff; text-transform: uppercase; letter-spacing: 0.02em; }
.title-band .link-arrow { color: var(--ink); border-color: var(--ink); }
.title-band .link-arrow:hover { border-color: var(--rouge); color: var(--rouge); }

/* ============================================================
   DAMIER (carrelage rose en CSS)
   ============================================================ */
.tiles-pattern {
  background-color: var(--bg);
  background-image:
    linear-gradient(45deg, var(--rose) 25%, transparent 25%),
    linear-gradient(-45deg, var(--rose) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--rose) 75%),
    linear-gradient(-45deg, transparent 75%, var(--rose) 75%);
  background-size: 56px 56px;
  background-position: 0 0, 0 28px, 28px -28px, -28px 0;
}
.band-quote {
  position: relative; text-align: center; color: var(--ink);
  padding-block: clamp(80px, 12vw, 160px);
}
.band-quote .inner {
  background: rgba(255,252,248,0.86); backdrop-filter: blur(2px);
  display: inline-block; padding: clamp(28px,5vw,56px) clamp(28px,6vw,72px);
  max-width: 760px;
}
.band-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 3.2vw, 38px); line-height: 1.18;
}

/* ============================================================
   COLLECTION GRID + PRODUCT CARDS
   ============================================================ */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-5); flex-wrap: wrap; }
.section-head h2 { font-size: clamp(32px, 5vw, 64px); }
.section-head .eyebrow { display: block; margin-bottom: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 3vw, 40px) clamp(16px, 2.4vw, 32px); }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-grid--editorial > *:nth-child(4n+1) { grid-row: span 1; }

.product-card { display: block; }
.product-card__media {
  position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-2);
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }
.badge-unique {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,252,248,0.92); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px;
}
.product-card__body { padding-top: var(--space-2); display: flex; flex-direction: column; gap: 3px; }
.product-card__title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.product-card__sub { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--rouge); }
.product-card__price { font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-top: 4px; }
.motif-dots { display: flex; gap: 6px; margin-top: 10px; }
.motif-dots span { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(43,27,9,0.15); flex: 0 0 auto; transition: transform var(--d-fast) var(--ease-out); }
.motif-dots span:hover { transform: scale(1.12); }
.motif-dots img { width: 100%; height: 100%; object-fit: cover; }
.coll-intro { max-width: 60ch; margin: 0 auto var(--space-5); text-align: center; font-size: clamp(16px, 1.6vw, 19px); }

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 60px auto 80px;
  font-size: 18px;
}

.pagination a,
.pagination span {
  text-decoration: none;
  color: #2b1b10;
}

.pagination .current,
.pagination [aria-current="page"] {
  font-weight: 600;
}
.product-infos {
  margin-top: 54px;
  max-width: 760px;
}

.info-block {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 32px;
  padding: 18px 0;
}

.info-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3D439D;
  font-weight: 500;
  line-height: 1.4;
  padding-top: 4px;
}

.info-content {
  font-size: 14px;
  line-height: 1.65;
  color: #2B1B09;
  max-width: 520px;
}

.info-content p {
  margin: 0;
}


.info-content ul {
  margin: 0;
  padding-left: 16px;
}

.info-content li {
  margin-bottom: 4px;
  padding-left: 2px;
}

@media screen and (max-width: 749px) {
  .product-infos {
    margin-top: 40px;
  }

  .info-block {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .info-content {
    font-size: 14px;
    line-height: 1.65;
  }
}
.info-content p {
  margin: 0;
}

/* ============================================================
   HISTOIRE / SAVOIR-FAIRE (split image-texte)
   ============================================================ */
.split { display: grid; gap: clamp(24px, 5vw, 72px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev .split__media { order: 2; } }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__body h2 { font-size: clamp(30px, 4vw, 54px); margin-bottom: var(--space-3); }
.split__body .eyebrow { display: block; margin-bottom: var(--space-2); }
.split__body p { max-width: 48ch; margin-bottom: var(--space-3); }

.feature-row { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-4) var(--space-3); margin-top: var(--space-5); }
@media (min-width: 768px){ .feature-row{ grid-template-columns: repeat(4,1fr);} }
.feature h3 { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 22px; color: var(--rouge); margin-bottom: 8px; }
.feature p { font-size: 14px; }
.feature .num { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: var(--olive); display:block; margin-bottom: 10px; }
/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bleu-logo);
  color: var(--bg);
  padding-block: var(--space-7) var(--space-4);
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.site-footer .footer-logo {
  height: 26px;
  width: auto;
  max-width: 180px;
  margin-bottom: var(--space-3);
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: var(--space-2);
}

.site-footer a {
  opacity: 0.85;
  font-size: 14px;
  line-height: 2;
}

.site-footer a:hover {
  opacity: 1;
  color: var(--rose);
}

.footer-claim {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 28px);
  max-width: 22ch;
}

.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,252,248,0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 12px;
  opacity: 0.6;
}

.footer-social span {
  opacity: 0.8;
  font-size: 13px;
}

@media screen and (max-width: 989px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media screen and (max-width: 749px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ============================================================
   FICHE PRODUIT
   ============================================================ */
.pdp { padding-top: calc(var(--header-h) + var(--space-4)); }
.pdp__grid { display: grid; gap: clamp(24px, 4vw, 64px); }
@media (min-width: 900px){ .pdp__grid{ grid-template-columns: 1.15fr 0.85fr; align-items: start; } }
.pdp__gallery { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.pdp__gallery img { width:100%; aspect-ratio: 3/4; object-fit: cover; background: var(--bg-2); }
.pdp__gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 4/5; }
.pdp__info { position: sticky; top: calc(var(--header-h) + 20px); }
.pdp__info .badge-unique { position: static; display: inline-block; margin-bottom: var(--space-2); }
.pdp__title { font-size: clamp(36px, 5vw, 60px); }
.pdp__sub { font-family: var(--font-serif); font-style: italic; font-size: clamp(18px,2vw,24px); color: var(--rouge); margin-top: 4px; }
.pdp__desc { margin-block: var(--space-3); max-width: 44ch; }
.pdp__price { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin-block: var(--space-3); }
.pdp__price .note { font-family: var(--font-body); font-weight:400; font-size: 12px; color: var(--olive); letter-spacing: 0; display:block; margin-top:2px; }

.size-selector { margin-block: var(--space-3); }
.size-selector .label-row { display:flex; justify-content: space-between; align-items:center; margin-bottom: 12px; }
.size-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.size-pill {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(43,27,9,0.25); font-family: var(--font-display); font-weight: 600;
  transition: all var(--d-fast) var(--ease-out);
}
.size-pill:hover { border-color: var(--ink); }
.size-pill[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.size-pill[aria-disabled="true"] { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }
.pdp__cta { width: 100%; margin-top: var(--space-2); }

.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(43,27,9,0.12); margin-top: var(--space-5); border: 1px solid rgba(43,27,9,0.12); }
.meta-grid .cell { background: var(--bg); padding: var(--space-3); }
.meta-grid .k { font-family: var(--font-display); font-weight: 600; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; }
.meta-grid .v { font-size: 15px; }

.atelier-note { background: var(--bg-2); padding: clamp(28px,5vw,64px); margin-top: var(--space-6); text-align:center; }
.atelier-note p { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px,2.6vw,30px); line-height: 1.3; max-width: 38ch; margin-inline:auto; }
.atelier-note .sign { display:block; margin-top: var(--space-3); font-family: var(--font-display); font-weight:600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--rouge); }
}
.dropdown-menu {
  background: #FFFCF8;
}

.dropdown-menu a {
  color: #2B1B09 !important;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dropdown-menu a:hover {
  color: #731631 !important;
}
.nav-item {
  position: relative;
}

.nav-item:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex;
}
.dropdown-menu {
  min-width: 280px;
  padding: 28px;
  gap: 18px;
  border: 1px solid rgba(43,27,9,.08);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.dropdown-menu {
  z-index: 9999999;
}
/* ============================================================
   COLLECTION PAGE (filtres)
   ============================================================ */
.coll-hero { padding-top: calc(var(--header-h) + var(--space-6)); padding-bottom: var(--space-4); text-align:center; }
.coll-hero h1 { font-size: clamp(44px, 8vw, 110px); }
.coll-hero .eyebrow { display:block; margin-bottom: var(--space-2); }
.coll-body { padding-bottom: var(--space-7); }
.filters { display: flex; gap: var(--space-2); justify-content: space-between; align-items:center; flex-wrap: wrap; padding-block: var(--space-3); border-block: 1px solid rgba(43,27,9,0.14); margin-bottom: var(--space-5); }
.filter-group { display:flex; gap: 8px; flex-wrap: wrap; align-items:center; }
.filter-group .smallcaps { opacity: .5; margin-right: 4px; }
.chip { border: 1px solid rgba(43,27,9,0.2); border-radius: 999px; padding: 9px 18px; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .03em; transition: all var(--d-fast) var(--ease-out); }
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--rouge); color:#fff; border-color: var(--rouge); }
.select-sort { border: 1px solid rgba(43,27,9,0.2); border-radius: 999px; padding: 9px 18px; font-family: var(--font-display); font-weight:600; font-size:12px; background: var(--bg); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFCF8;
  padding: 16px 22px;
  min-width: 180px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  z-index: 999999;
}

.nav-item:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dropdown-menu a {
  white-space: nowrap;
  text-decoration: none;
}
/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: calc(var(--header-h) + 12px);
  text-align: center;
}.about-hero h1 { font-size: clamp(44px, 8vw, 120px); }
.about-hero .eyebrow { display:block; margin-bottom: var(--space-2); }
.manifest-official { max-width: 60ch; margin-inline: auto; }
.manifest-official p { font-size: clamp(17px, 1.8vw, 21px); margin-bottom: var(--space-3); }
.manifest-official p:first-of-type { font-family: var(--font-serif); font-style: italic; font-size: clamp(24px, 3.4vw, 40px); color: var(--rouge); line-height: 1.2; }
.about-figure {
  margin-block: 0;
}
.about-figure img { width: 100%; max-height: 80vh; object-fit: cover; }
.about-figure 
figcaption{
  display:block;
  text-align:center;
  width:100%;
  margin:0 0 15px 0;
  letter-spacing:.12em;
  text-transform:uppercase;
/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity var(--d-slow) var(--ease-out), transform var(--d-slow) var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal]{opacity:1;transform:none;transition:none;} .hero__scroll::after{animation:none;} html{scroll-behavior:auto;} }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .header-nav, .header-right .smallcaps { display: none; }
  .burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
  .burger span { width: 22px; height: 2px; background: currentColor; display:block; }
  .header-logo img { height: 18px; }
  .meta-grid { grid-template-columns: 1fr; }
  .pdp__gallery { grid-template-columns: 1fr; }
  .pdp__gallery img:first-child { aspect-ratio: 4/5; }
}

@media screen and (max-width: 749px) {
  .header-nav {
    display: none !important;
  }

  .header-nav.is-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #FFFCF8;
    padding: 32px 0;
    gap: 22px;
    align-items: center;
    z-index: 999999;
  }

  .header-logo {
    cursor: pointer;
  }

  .burger {
    display: none !important;
  }
}
@media screen and (max-width: 749px) {
  .header-nav {
    display: none !important;
  }

  .header-nav.is-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFCF8;
    padding: 28px 0;
    gap: 20px;
    align-items: center;
    z-index: 999999;
  }

  .burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 999999;
  }

  .burger span {
    display: block !important;
    width: 24px;
    height: 2px;
    background: #000;
  }
}

@media screen and (min-width: 750px) {
  .burger {
    display: none !important;
  }
}

@media screen and (min-width: 750px) {
  .burger {
    display: none !important;
  }
}
.burger {
  display: none !important;
}

.fleur-rond {
  cursor: pointer;
}
@media screen and (max-width: 990px) {
  .header-right .burger,
  button.burger,
  .burger {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
/* Filtres collection cliquables */

.filter-group .chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.filter-group .chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.filter-group .chip:hover {
  border-color: #2B1B09;
}

.filter-group .chip:has(input:checked) {
  background: #731631;
  color: #FFFCF8;
  border-color: #731631;
}
.filter-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.filter-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.filter-chip span {
  position: relative;
  z-index: 1;
}

.filter-chip.is-active,
.filter-chip:has(input:checked) {
  background: #2B1B09;
  color: #FFFCF8;
  border-color: #2B1B09;
}
/* Pages politiques Shopify */

body.template-policy main#main {
  padding-top: 150px !important;
}

body.template-policy .shopify-policy__container {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 24px 90px !important;
}

body.template-policy .shopify-policy__title {
  text-align: center !important;
  margin-bottom: 44px !important;
}

body.template-policy .shopify-policy__title h1 {
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1.05 !important;
  color: #2B1B09 !important;
}

body.template-policy .shopify-policy__body {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #2B1B09 !important;
}

body.template-policy .shopify-policy__body p {
  margin-bottom: 22px !important;
}
<a class="product-card{% unless product.available %} product-card--sold-out{% endunless %}" href="{{ product.url }}" data-reveal>
  <div class="product-card__media{% unless product.available %} product-card__media--sold-out{% endunless %}">

    {%- unless product.available -%}
      <span class="badge-sold-out">Victime de mon succès</span>
    {%- elsif product.tags contains 'piece-unique' or product.tags contains 'pièce unique' -%}
      <span class="badge-unique">Pièce unique</span>
    {%- endif -%}

    {%- if product.featured_image -%}
      {{
        product.featured_image
        | image_url: width: 800
        | image_tag:
          widths: '400,600,800,1200',
          sizes: '(min-width:768px) 50vw, 100vw',
          loading: 'lazy',
          alt: product.featured_image.alt | default: product.title
      }}
    {%- else -%}
      <img
        src="{{ 'bambou-vichy.webp' | asset_url }}"
        alt="{{ product.title }}"
        width="1400"
        height="1866"
        loading="lazy"
      >
    {%- endif -%}
  </div>

 <div class="product-card__body">

 <span
  class="product-card__title"
  style="
    font-size: {{ section.settings.card_title_size }}px;
    margin-top: {{ section.settings.card_title_spacing }}px;
  "
>
  {{ product.title }}
</span>
</div>

    {% if product.images.size > 1 %}
      <div class="motif-dots" aria-label="Autres visuels">
        {%- for image in product.images limit: 4 -%}
          {%- unless forloop.first -%}
            <span>
              {{
                image
                | image_url: width: 80
                | image_tag:
                  widths: '40,80,120',
                  sizes: '40px',
                  loading: 'lazy',
                  alt: ''
              }}
            </span>
          {%- endunless -%}
        {%- endfor -%}
      </div>
    {% endif %}
  </div>
</a>


/* Espacement du fil d’Ariane sur la fiche produit */

.pdp__breadcrumb,
.breadcrumb,
.product-breadcrumb {
  margin-bottom: 18px !important;
}

.pdp__breadcrumb + .pdp__gallery,
.breadcrumb + .pdp__gallery,
.product-breadcrumb + .pdp__gallery {
  margin-top: 0 !important;
}

.pdp-carousel__dots{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    margin-top:18px;
}

.pdp-carousel__dot{

    width:6px;
    height:6px;

    border-radius:50%;

    background:#d8d3cc;

    transition:.35s ease;
}

.pdp-carousel__dot.is-active{

    background:#2b1b09;

    transform:scale(1.35);
}

@media(max-width:749px){

.pdp-carousel__dots{

    gap:7px;
    margin-top:14px;
}

.pdp-carousel__dot{

    width:5px;
    height:5px;
}
}
{
  "type": "range",
  "id": "card_title_size",
  "label": "Taille du titre des produits",
  "min": 12,
  "max": 40,
  "step": 1,
  "unit": "px",
  "default": 18
},
{
  "type": "range",
  "id": "card_title_spacing",
  "label": "Espace au-dessus du titre",
  "min": 0,
  "max": 50,
  "step": 2,
  "unit": "px",
  "default": 8
}
/* Centrage du filtre Taille sur Culotte, Tanga et Parachute */
.filters.filters--single-centered {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.filters.filters--single-centered .filter-group {
  display: flex !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

.filters.filters--single-centered .smallcaps {
  width: 100% !important;
  margin-bottom: 10px !important;
  text-align: center !important;
}

.filters.filters--single-centered .chip {
  margin-left: 3px !important;
  margin-right: 3px !important;
}
@media screen and (max-width: 990px) {
  .page-l-engagement .link-arrow,
  .page-la-marque .link-arrow {
    display: inline-block;
    margin-bottom: 40px;
  }

}
}
/* =====================================================
   PAGINATION M.ADAM
===================================================== */

.madam-pagination{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:28px;

    margin:90px 0 40px;

    font-family:var(--font-display);

    letter-spacing:.18em;

    text-transform:uppercase;
}

.madam-pagination__page,

.madam-pagination__arrow{

    color:#2b1b09;

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    transition:.25s ease;
}

.madam-pagination__page:hover,

.madam-pagination__arrow:hover{

    color:var(--rouge);

    transform:translateY(-2px);
}

.madam-pagination__page.is-active{

    color:var(--rouge);

    font-weight:700;

    position:relative;
}

.madam-pagination__page.is-active::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-10px;

    width:5px;

    height:5px;

    border-radius:50%;

    background:var(--rouge);
}

.madam-pagination__arrow.is-disabled{

    opacity:.2;

    pointer-events:none;
}

.madam-pagination__ellipsis{

    color:#b8b1aa;

    letter-spacing:0;
}

@media(max-width:749px){

.madam-pagination{

    gap:18px;

    margin:70px 0 30px;
}

.madam-pagination__page,

.madam-pagination__arrow{

    font-size:14px;
}

}
@media screen and (max-width: 749px) {

  .site-footer {
    padding-top: 40px !important;
  }

}
@media screen and (max-width:749px){

.product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
}

.product-card__body{
    padding-top:8px;
}

.product-card__title{
    font-size:9px;
    line-height:1.2;
}

<style>
  #dual-collection-{{ section.id }} {
    padding: 72px 0;
  }

  #dual-collection-{{ section.id }} .dual-collection__heading {
    margin: 0 0 42px;
    color: #2b1b09;
    font-family: var(--font-display);
    font-size: clamp(25px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
  }

  /*
    Mac / ordinateur :
    3 fiches affichées sur une ligne.
  */

  #dual-collection-{{ section.id }} .dual-collection__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
  }

  #dual-collection-{{ section.id }} .dual-collection__item {
    min-width: 0;
  }

  /*
    La quatrième fiche est masquée sur ordinateur.
  */

  #dual-collection-{{ section.id }}
  .dual-collection__item:nth-child(n + 4) {
    display: none;
  }

  #dual-collection-{{ section.id }} .dual-collection__footer {
    display: flex;
    justify-content: center;
    margin-top: 46px;
  }

  /*
    iPhone / mobile :
    les quatre fiches sont affichées,
    sur deux colonnes et deux lignes.
  */

  @media screen and (max-width: 749px) {
    #dual-collection-{{ section.id }} {
      padding: 44px 0;
    }

    #dual-collection-{{ section.id }} .dual-collection__heading {
      margin-bottom: 28px;
      font-size: 24px;
    }

    #dual-collection-{{ section.id }} .dual-collection__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 14px;
    }

    /*
      Réaffiche la quatrième fiche sur iPhone.
    */

    #dual-collection-{{ section.id }}
    .dual-collection__item:nth-child(n + 4) {
      display: block;
    }

    #dual-collection-{{ section.id }} .dual-collection__footer {
      margin-top: 18px;
    }
  }
</style>
/* Réduit l'espace entre le header et le fil d'Ariane */

.product-page,
.product-template,
.product-section,
.pdp {
    padding-top: 18px !important;
}
.madam-cart-drawing {
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  width: 110px !important;
  height: 115px !important;
  margin: 0 auto 25px !important;

  color: #7f1d2d !important;
}

.madam-cart-drawing__handle {
  position: absolute !important;
  top: 3px !important;
  left: 27px !important;

  display: block !important;
  width: 56px !important;
  height: 43px !important;

  border: 3px solid currentColor !important;
  border-bottom: 0 !important;
  border-radius: 50px 50px 0 0 !important;
  box-sizing: border-box !important;
}

.madam-cart-drawing__basket {
  position: absolute !important;
  top: 32px !important;
  left: 10px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-evenly !important;

  width: 90px !important;
  height: 55px !important;

  border: 3px solid currentColor !important;
  border-radius: 4px 4px 24px 24px !important;
  box-sizing: border-box !important;
  transform: none !important;
}

.madam-cart-drawing__basket i {
  display: block !important;
  width: 2px !important;
  height: 35px !important;
  margin: 0 !important;

  background: currentColor !important;
  opacity: 0.7 !important;
}
.madam-cart-icon {
  display: block;
  margin: 0 auto 22px;
  font-size: 72px;
  line-height: 1;
  text-align: center;
}
