:root {
  --ch-ivory: #fbf8f1;
  --ch-cream: #f4eee4;
  --ch-sand: #d8c6b2;
  --ch-taupe: #a9947a;
  --ch-brown: #4f3829;
  --ch-ink: #181512;
  --ch-muted: #6e6258;
  --ch-line: rgba(45, 36, 28, .14);
  --ch-shadow: 0 24px 80px rgba(44, 34, 25, .08);
  --ch-serif: Georgia, "Times New Roman", serif;
  --ch-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ch-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ch-ivory);
  color: var(--ch-ink);
  font-family: var(--ch-sans);
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
svg { overflow: hidden; }
.ch-inline-icon { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -.125em; }
a { color: inherit; text-decoration-thickness: .06em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
.container { max-width: var(--ch-container); }
.ch-page { min-height: 100vh; }
.ch-section { padding: clamp(3.25rem, 7vw, 6.5rem) 0; }
.ch-section--soft { background: #fffaf4; }
.ch-eyebrow {
  color: var(--ch-muted);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ch-title {
  margin: 0;
  font-family: var(--ch-serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.03;
}
.ch-title--xl { font-size: clamp(2.6rem, 7vw, 6rem); }
.ch-title--lg { font-size: clamp(2rem, 4vw, 3.45rem); }
.ch-title--md { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.ch-muted { color: var(--ch-muted); }
.ch-link { text-decoration: none; border-bottom: 1px solid currentColor; }
.ch-btn,
.btn-primary,
.add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .95rem 1.55rem;
  border: 1px solid var(--ch-ink);
  border-radius: 0;
  background: var(--ch-ink);
  color: #fff;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.ch-btn:hover,
.btn-primary:hover,
.add-to-cart:hover { background: var(--ch-brown); border-color: var(--ch-brown); color: #fff; }
.ch-btn--ghost {
  background: transparent;
  color: var(--ch-ink);
}
.ch-btn--ghost:hover { background: var(--ch-ink); color: #fff; }

.ch-topbar {
  background: linear-gradient(90deg, #eee1cf, #fbf4ea, #e5d3bd);
  color: #2c251e;
  font-size: .78rem;
}
.ch-topbar__inner {
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  align-items: center;
  text-align: center;
}
.ch-topbar__item { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }
.ch-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 248, 241, .94);
  border-bottom: 1px solid var(--ch-line);
  backdrop-filter: blur(18px);
}
.ch-header__main {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}
.ch-logo { display: inline-flex; justify-self: center; width: min(260px, 58vw); }
.ch-logo img { display: block; width: 100%; }
.ch-header__tools { display: flex; justify-content: flex-end; align-items: center; gap: .8rem; }
.ch-icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ch-ink);
  text-decoration: none;
}
.ch-icon-btn svg { width: 23px; height: 23px; }
.ch-search-desktop { display: none; }
.ch-search-form { position: relative; width: 100%; }
.ch-search-form input {
  width: 100%;
  min-height: 44px;
  padding: .75rem 2.6rem .75rem .9rem;
  border: 0;
  border-bottom: 1px solid var(--ch-line);
  background: transparent;
}
.ch-search-form button {
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--ch-ink);
}
.ch-search-form button svg { width: 18px; height: 18px; }
.ch-nav { display: none; border-top: 1px solid rgba(45, 36, 28, .08); }
.ch-nav__list {
  display: flex;
  justify-content: center;
  gap: clamp(1.8rem, 4vw, 4.4rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
.ch-nav__link {
  display: inline-flex;
  padding: 1rem 0;
  color: var(--ch-ink);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}
.ch-main-menu { width: 100%; }
.ch-nav__list > li { position: relative; }
.ch-submenu {
  position: absolute;
  left: 50%;
  top: 100%;
  min-width: 220px;
  padding: .65rem 0;
  margin: 0;
  list-style: none;
  background: #fffaf4;
  border: 1px solid var(--ch-line);
  box-shadow: var(--ch-shadow);
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.ch-nav__list > li:hover > .ch-submenu,
.ch-nav__list > li:focus-within > .ch-submenu {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.ch-submenu__link {
  display: block;
  padding: .62rem 1rem;
  color: var(--ch-ink);
  font-size: .86rem;
  text-decoration: none;
}
.ch-submenu__link:hover { background: var(--ch-cream); }
.ch-mobile-drawer {
  padding: 1.2rem;
  min-height: 100%;
  background: var(--ch-ivory);
}
.ch-mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ch-line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.ch-mobile-nav { list-style: none; padding: 0; margin: 1.5rem 0; }
.ch-mobile-nav a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ch-line);
  font-size: .9rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.ch-mobile-drawer .ch-nav__list,
.ch-mobile-drawer .ch-submenu {
  position: static;
  display: block;
  min-width: 0;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.ch-mobile-drawer .ch-nav__link,
.ch-mobile-drawer .ch-submenu__link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ch-line);
  font-size: .9rem;
}
.ch-mobile-drawer .ch-submenu { padding-left: 1rem; margin-top: 0; }

.ch-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 76vh, 760px);
  background: var(--ch-cream);
}
.ch-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity .9s ease-in-out;
}
.ch-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.ch-hero__media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}
.ch-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,248,241,.94) 0%, rgba(251,248,241,.72) 38%, rgba(251,248,241,.08) 76%);
}
.ch-hero__content {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 76vh, 760px);
  display: flex;
  align-items: center;
}
.ch-hero__copy { width: min(620px, 88vw); padding: 4rem 0; }
.ch-hero__copy p { max-width: 470px; margin: 1.2rem 0 2rem; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.ch-hero__controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
}
.ch-hero__dot {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ch-ink);
  border-radius: 50%;
  background: transparent;
}
.ch-hero__dot.is-active { background: var(--ch-ink); }

.ch-category-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ch-line);
  border-top: 1px solid var(--ch-line);
  border-bottom: 1px solid var(--ch-line);
  position: relative;
  z-index: 10;
}
.ch-category-tile {
  position: relative;
  overflow: hidden;
}
.ch-category-tile__link {
  display: block;
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  text-decoration: none;
}
.ch-category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 55%, transparent 100%);
  transition: background 0.35s;
}
.ch-category-tile__link:hover .ch-category-tile__overlay {
  background: linear-gradient(0deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.28) 65%, rgba(0,0,0,.04) 100%);
}
.ch-category-tile__text {
  position: absolute;
  bottom: 1.2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.ch-category-tile strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.ch-category-tile span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .73rem;
  margin-top: .28rem;
  letter-spacing: .03em;
}
.ch-category-tile__subs {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: .45rem 0;
  background: #fffaf4;
  border: 1px solid var(--ch-line);
  border-top: 0;
  box-shadow: 0 6px 18px rgba(45,36,28,.1);
  display: none;
}
.ch-category-tile:hover .ch-category-tile__subs,
.ch-category-tile:focus-within .ch-category-tile__subs { display: block; }
.ch-category-tile__subs a {
  display: block;
  padding: .42rem 1rem;
  font-size: .82rem;
  color: var(--ch-ink);
  text-decoration: none;
  white-space: nowrap;
}
.ch-category-tile__subs a:hover { background: var(--ch-cream); }

.ch-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.85rem, 2.5vw, 1.5rem);
}
.ch-product-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid #e4d8c8;
  transition: box-shadow .22s ease, transform .22s ease;
}
.ch-product-card:hover {
  box-shadow: 0 6px 28px rgba(44, 34, 25, .10);
  transform: translateY(-3px);
}
.ch-product-card__image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f9f5ef;
  text-decoration: none;
}
.ch-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ch-product-card:hover .ch-product-card__image img { transform: scale(1.03); }
.ch-product-card__flag {
  position: absolute;
  left: .65rem;
  top: .65rem;
  z-index: 1;
  padding: .32rem .55rem;
  background: rgba(255, 255, 255, .92);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ch-product-card__wishlist {
  position: absolute;
  top: .55rem;
  right: .55rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, .85);
  color: var(--ch-taupe);
}
.ch-product-card__body { padding: .85rem 1rem 1.1rem; text-align: center; }
.ch-product-card__name {
  display: block;
  min-height: 2.8em;
  color: var(--ch-ink);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .01em;
  text-decoration: none;
}
.ch-product-card__price { margin-top: .28rem; font-weight: 700; }
.ch-product-card__price .regular-price { color: var(--ch-muted); text-decoration: line-through; font-weight: 400; margin-left: .35rem; }

.ch-reassurance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ch-line);
  border-top: 1px solid var(--ch-line);
}
.ch-reassurance__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  background: #fffaf4;
}
.ch-reassurance svg { width: 34px; height: 34px; flex: 0 0 auto; }
.ch-reassurance strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.ch-reassurance span { display: block; color: var(--ch-muted); font-size: .82rem; margin-top: .1rem; }
.ch-map-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--ch-ink);
  font-size: .72rem;
  letter-spacing: .05em;
}

.ch-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 1rem 0;
  color: var(--ch-muted);
  font-size: .82rem;
}
.ch-breadcrumb a { color: var(--ch-muted); text-decoration: none; }

.ch-listing-hero {
  padding: clamp(2.8rem, 6vw, 5.8rem) 0 2rem;
  border-bottom: 1px solid var(--ch-line);
}
.ch-listing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
}
.ch-filters {
  border: 1px solid var(--ch-line);
  background: #fffaf4;
  padding: 1rem;
}
.ch-filter-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  color: var(--ch-muted);
  text-decoration: none;
}
.ch-filter-link.is-active,
.ch-filter-link:hover { color: var(--ch-ink); }
.ch-filter-color {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: .45rem;
  border: 1px solid var(--ch-line);
  border-radius: 50%;
  vertical-align: middle;
}
.ch-listing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ch-listing-count { color: var(--ch-muted); font-size: .88rem; }
.ch-category-footer {
  border-top: 1px solid var(--ch-line);
  padding-top: 2rem;
  color: var(--ch-muted);
}

.ch-product-page {
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(4rem, 7vw, 7rem);
}
.ch-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.ch-product-gallery {
  display: grid;
  gap: .8rem;
}
.ch-product-cover {
  aspect-ratio: 4 / 5;
  background: var(--ch-cream);
  overflow: hidden;
}
.ch-product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem;
}
.ch-product-thumb {
  aspect-ratio: 4 / 5;
  border: 1px solid transparent;
  background: var(--ch-cream);
  padding: 0;
}
.ch-product-thumb.is-active { border-color: var(--ch-ink); }
.ch-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ch-product-info { align-self: start; }
.ch-product-info__inner {
  border-top: 1px solid var(--ch-line);
  padding-top: 1.2rem;
}
.ch-product-reference {
  color: var(--ch-muted);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ch-product-price {
  margin: 1rem 0;
  font-size: 1.35rem;
  font-weight: 700;
}
.ch-product-price .regular-price { color: var(--ch-muted); text-decoration: line-through; font-size: 1rem; font-weight: 400; margin-left: .5rem; }
.product-variants { margin: 1.5rem 0; }
.product-variants .control-label {
  display: block;
  margin-bottom: .65rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-variants ul { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0 0 1rem; }
.product-variants input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.product-variants .radio-label,
.product-variants .input-color {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 40px;
  border: 1px solid var(--ch-line);
  background: #fff;
  padding: .55rem .75rem;
  cursor: pointer;
}
.product-variants input:checked + .radio-label,
.product-variants input:checked + .input-color { border-color: var(--ch-ink); box-shadow: inset 0 0 0 1px var(--ch-ink); }
.ch-quantity-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}
.ch-quantity-row input { text-align: center; }
.ch-product-promise {
  display: grid;
  gap: .75rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--ch-line);
  border-bottom: 1px solid var(--ch-line);
  color: var(--ch-muted);
  font-size: .9rem;
}
.ch-accordion {
  border-top: 1px solid var(--ch-line);
  margin-top: 1.5rem;
}
.ch-accordion__item { border-bottom: 1px solid var(--ch-line); }
.ch-accordion__button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  color: var(--ch-ink);
  font-weight: 650;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}
.ch-accordion__content { display: none; padding: 0 0 1.25rem; color: var(--ch-muted); }
.ch-accordion__item.is-open .ch-accordion__content { display: block; }

.ch-cms-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.ch-footer {
  background: #171411;
  color: #f7efe5;
}
.ch-footer a { color: inherit; text-decoration: none; }
/* Layout principal */
.ch-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
/* Colonne brand : logo + tagline + newsletter */
.ch-footer__logo-link { display: inline-block; margin-bottom: .75rem; }
.ch-footer__logo { display: block; width: 220px; filter: invert(1); opacity: .92; }
.ch-footer__tagline { max-width: 380px; color: rgba(247,239,229,.68); font-size: .88rem; line-height: 1.55; margin: 0 0 1.5rem; }
/* Colonnes de liens */
.ch-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
/* Bloc générique (ps_linklist / ps_contactinfo override) */
.ch-footer__block-title,
.ch-footer h2, .ch-footer h3, .ch-footer .h3 {
  margin: 0 0 .9rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f7efe5;
}
.ch-footer__block-links { list-style: none; padding: 0; margin: 0; }
.ch-footer__block-links li + li { margin-top: .5rem; }
.ch-footer__block-links a { color: rgba(247,239,229,.72); font-size: .88rem; }
.ch-footer__block-links a:hover { color: #f7efe5; }
/* Bloc contact (ps_contactinfo override) */
.ch-footer__contact {
  font-style: normal;
  color: rgba(247,239,229,.72);
  font-size: .88rem;
  line-height: 1.75;
}
.ch-footer__contact strong { color: #f7efe5; display: block; margin-bottom: .25rem; }
.ch-footer__contact a { color: rgba(247,239,229,.72); }
.ch-footer__contact a:hover { color: #f7efe5; }
/* Newsletter (ps_emailsubscription override) */
.ch-footer__newsletter-desc {
  color: rgba(247,239,229,.62);
  font-size: .84rem;
  margin: .2rem 0 1rem;
  line-height: 1.5;
}
.ch-footer__newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.ch-footer__newsletter-form input[type=email] {
  flex: 1 1 160px;
  min-height: 42px;
  padding: .6rem .85rem;
  border: 1px solid rgba(247,239,229,.2);
  border-radius: 0;
  background: rgba(247,239,229,.06);
  color: #f7efe5;
  font: inherit;
  font-size: .84rem;
}
.ch-footer__newsletter-form input[type=email]::placeholder { color: rgba(247,239,229,.38); }
.ch-footer__newsletter-form input[type=email]:focus { outline: 1px solid rgba(247,239,229,.45); outline-offset: 2px; }
.ch-footer__newsletter-form button {
  min-height: 42px;
  padding: .6rem 1rem;
  border: 1px solid rgba(247,239,229,.3);
  background: transparent;
  color: #f7efe5;
  font: inherit;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.ch-footer__newsletter-form button:hover { background: rgba(247,239,229,.1); }
.ch-newsletter-msg { padding: .45rem .7rem; margin-bottom: .7rem; font-size: .84rem; }
.ch-newsletter-success { background: rgba(30,65,32,.5); color: #8ecf92; }
.ch-newsletter-error   { background: rgba(65,28,28,.5); color: #e8a0a0; }
/* Pied de page */
.ch-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(247,239,229,.1);
  color: rgba(247,239,229,.52);
  font-size: .78rem;
}

/* ── Language / currency selector ──────────────────────────────────── */
.ch-header__lang { display: flex; align-items: center; }
.ch-header__lang .ch-search-form { display: none; }
.ch-mobile-lang { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--ch-line); font-size: .85rem; }
.ch-mobile-lang .ch-search-form { display: none; }
.language-selector-wrapper { position: relative; }
.language-selector .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .55rem;
  border: 1px solid var(--ch-line);
  background: transparent;
  color: var(--ch-ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.language-selector .dropdown-toggle::after { content: ' ▾'; font-size: .6em; opacity: .6; }
.language-selector .dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 50;
  min-width: 140px;
  padding: .35rem 0;
  list-style: none;
  margin: 0;
  background: var(--ch-ivory);
  border: 1px solid var(--ch-line);
  box-shadow: var(--ch-shadow);
  font-size: .8rem;
  display: none;
}
.language-selector.open .dropdown-menu,
.language-selector:hover .dropdown-menu,
.language-selector:focus-within .dropdown-menu { display: block; }
.language-selector .dropdown-item {
  display: block;
  padding: .5rem 1rem;
  color: var(--ch-ink);
  text-decoration: none;
  white-space: nowrap;
}
.language-selector .dropdown-item:hover { background: var(--ch-cream); }

/* ── ch-lang-select — sélecteur de langue natif (desktop + mobile) ─── */
.ch-lang-select {
  display: inline-block;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .4rem;
  border: 1px solid var(--ch-line);
  background: transparent;
  color: var(--ch-ink);
  cursor: pointer;
  max-width: 80px;
  vertical-align: middle;
}
.ch-lang-select:focus { outline: 1px solid var(--ch-ink); outline-offset: 2px; }
/* Account / cart module hooks */
.ch-account-module, .ch-cart-module { font-size: .78rem; }
.ch-account-module a, .ch-cart-module a { color: var(--ch-ink); text-decoration: none; }
.ch-cart-module a:hover, .ch-account-module a:hover { opacity: .72; }

@media (min-width: 640px) {
  .ch-topbar__inner { grid-template-columns: 1fr 1fr 1fr; }
  .ch-category-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ch-category-tile__link { height: clamp(260px, 26vw, 400px); }
  .ch-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ch-reassurance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ch-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
}
@media (min-width: 992px) {
  .ch-header__main { grid-template-columns: 280px 1fr 280px; min-height: 108px; }
  .ch-menu-toggle { display: none; }
  .ch-search-desktop { display: block; justify-self: start; width: min(280px, 100%); }
  .ch-logo { width: 300px; }
  .ch-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ch-reassurance { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ch-listing-layout { grid-template-columns: 260px minmax(0, 1fr); align-items: start; }
  .ch-product-layout { grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr); gap: clamp(2rem, 5vw, 5rem); }
  .ch-product-info { position: sticky; top: 150px; }
  .ch-footer__main { grid-template-columns: 320px minmax(0, 1fr); }
  .ch-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
