/** Shopify CDN: Minification failed

Line 815:0 Unexpected "}"

**/
/* ═══════════════════════════════════════════════════
   MAISON ÉCLAT — SHOPIFY THEME CSS
   Structure: Reset → Variables → Base → Layout →
   Components → Pages → Responsive
═══════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 14px; color: #111; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
.hero__bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0.7;
  object-position: center center;
}
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── CSS VARIABLES ──────────────────────────────── */
:root {
  --black: #111111;
  --white: #ffffff;
  --cream: #F8F5F0;
  --gold: #B8936A;
  --gold-light: #D4B896;
  --border: #E5E0D8;
  --text-muted: #777;
  --error: #C0392B;
  --success: #27AE60;
  --nav-h: 64px;
  --announce-h: 36px;
  --transition: 0.2s ease;
  --max-w: 1400px;
  --side-pad: 32px;
}

/* ─── ANNOUNCE BAR ───────────────────────────────── */
.announce-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 100;
}
.announce-bar a { color: var(--gold-light); }
.announce-bar__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  line-height: 1;
}
.announce-bar__close:hover { color: var(--white); }

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-left { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }

.nav-link {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 16px;
  height: var(--nav-h);
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1.5px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-item.open > .nav-link::after { transform: scaleX(1); }


/* Logo */
.site-logo {
  text-align: center;
  font-size: 19px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
}
.site-logo__tagline {
  display: block;
  font-size: 8px;
  letter-spacing: 0.35em;
  font-weight: 400;
  color: var(--gold);
  margin-top: 3px;
}
.site-logo img { max-height: 44px; margin: 0 auto; }

/* Nav icon buttons */
.nav-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  position: relative;
  font-size: 17px;
}
.nav-icon-btn:hover { background: var(--cream); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count.hidden { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  width: 40px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.2s;
  transform-origin: center;
}

/* ─── MEGA MENU ──────────────────────────────────── */
.nav-left { position: relative; }
.nav-item { position: static; }
.mega-menu {
  position: absolute;
  top: calc(var(--nav-h) + 0.5px);
  left: 0;
  transform: translateY(-6px);
  min-width: 780px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-top: 2px solid var(--black);
  padding: 32px 36px;
  display: grid;
  gap: 0 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  pointer-events: none;
  z-index: 300;
}
.mega-menu--femme { grid-template-columns: repeat(2, 280px); justify-content: center; }
.mega-menu--homme { grid-template-columns: repeat(1, 200px); min-width: 240px; justify-content: center; }
.nav-item.open .mega-menu,
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.mega-menu__col-title {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--border);
}
.mega-menu__col ul li a {
  display: block;
  font-size: 12.5px;
  padding: 4px 0;
  color: var(--black);
  transition: color var(--transition), padding-left var(--transition);
}
.mega-menu__col ul li a:hover { color: var(--gold); padding-left: 5px; }
.mega-menu__subtitle {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin: 16px 0 10px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid var(--border);
}
.mega-menu__promo {
  overflow: hidden;
  border-radius: 2px;
}
.mega-menu__promo-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mega-menu__promo:hover .mega-menu__promo-img { transform: scale(1.04); }
.mega-menu__promo-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 9px 12px;
  text-align: center;
  display: block;
  transition: background var(--transition);
}
.mega-menu__promo:hover .mega-menu__promo-label { background: var(--gold); }

/* ─── MOBILE MENU ────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; left: -100%;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 300;
  overflow-y: auto;
  transition: left 0.3s ease;
  padding: 0 0 40px;
}
.mobile-nav.open { left: 0; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  border-bottom: 0.5px solid var(--border);
}
.mobile-nav__logo { font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.mobile-nav__close { font-size: 20px; }
.mobile-nav__group-title {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted);
  padding: 20px 20px 8px;
}
.mobile-nav__item a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  border-bottom: 0.5px solid var(--border);
}
.mobile-nav__item a:hover { background: var(--cream); color: var(--gold); }
.mobile-nav__item--sale a { color: var(--error); }

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.overlay.active { opacity: 1; pointer-events: all; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h) - var(--announce-h));
  min-height: 480px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C2420 0%, #1A1510 40%, #3D3028 100%);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px 80px;
  max-width: 600px;
}
.hero__eyebrow {
  font-size: 9.5px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ''; display: block; width: 32px; height: 0.5px; background: var(--gold); }
.hero__title { font-size: clamp(38px, 5.5vw, 68px); font-weight: 300; color: var(--white); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 20px; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__subtitle { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.7; max-width: 380px; }
.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; padding: 13px 28px; transition: all var(--transition); cursor: pointer; }
.btn--primary { background: var(--white); color: var(--black); border: 1px solid var(--white); }
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 0.5px solid rgba(255,255,255,0.4); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn--dark { background: var(--black); color: var(--white); border: 1px solid var(--black); }
.btn--dark:hover { background: var(--gold); border-color: var(--gold); }
.btn--light { background: var(--white); color: var(--black); border: 1px solid var(--border); }
.btn--light:hover { border-color: var(--black); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 36px; font-size: 12px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn--loading { position: relative; color: transparent !important; }
.btn--loading::after { content: ''; position: absolute; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: currentColor; border-radius: 50%; animation: spin 0.6s linear infinite; top: 50%; left: 50%; transform: translate(-50%, -50%); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ─── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 18px var(--side-pad);
}
.trust-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.trust-bar__item { display: flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.trust-bar__icon { font-size: 18px; opacity: 0.7; }
.trust-bar__divider { width: 0.5px; height: 24px; background: var(--border); }

/* ─── GENDER SPLIT ───────────────────────────────── */
.gender-split { display: grid; grid-template-columns: 1fr 1fr; height: 500px; }
.gender-card {
  position: relative; overflow: hidden; cursor: pointer; display: block;
}
.gender-card__bg {
  position: absolute; inset: 0;
  transition: transform 0.6s ease;
}
.gender-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.gender-card:hover .gender-card__bg { transform: scale(1.04); }
.gender-card--femme .gender-card__bg { background: linear-gradient(160deg, #3D2E28 0%, #6B4C3D 100%); }
.gender-card--homme .gender-card__bg { background: linear-gradient(160deg, #1E2832 0%, #2E3F52 100%); }
.gender-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%); }
.gender-card__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 44px; }
.gender-card__label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; }
.gender-card__name { font-size: 48px; font-weight: 200; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 18px; }
.gender-card__desc { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 24px; max-width: 260px; line-height: 1.6; }
.gender-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: var(--white); border-bottom: 0.5px solid rgba(255,255,255,0.35);
  padding-bottom: 3px; width: fit-content; transition: gap var(--transition), border-color var(--transition);
}
.gender-card:hover .gender-card__cta { gap: 14px; border-color: var(--white); }

/* ─── SECTION COMMON ─────────────────────────────── */
.section { padding: 72px var(--side-pad); max-width: var(--max-w); margin: 0 auto; }
.section--full { padding: 72px 0; }
.section--dark { background: var(--black); }
.section--cream { background: var(--cream); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.section-header { text-align: center; margin-bottom: 44px; }
.section-eyebrow { font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-size: clamp(24px, 2.8vw, 36px); font-weight: 300; letter-spacing: 0.03em; line-height: 1.2; }
.section-title em { font-style: italic; }
.section-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  margin-top: 14px; border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 14px; }

/* Tab switcher */
.tab-switcher { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; border-bottom: 0.5px solid var(--border); }
.tab-btn { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; padding: 10px 24px; border: none; background: none; color: var(--text-muted); cursor: pointer; position: relative; transition: color var(--transition); }
.tab-btn::after { content: ''; position: absolute; bottom: -0.5px; left: 0; right: 0; height: 2px; background: var(--black); transform: scaleX(0); transition: transform var(--transition); }
.tab-btn.active { color: var(--black); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── CATEGORY GRID ──────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.cat-card { position: relative; aspect-ratio: 2/3; overflow: hidden; cursor: pointer; background: var(--cream); display: block; }
.cat-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%); }
.cat-card__label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px; color: var(--white); }
.cat-card__label span { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 2px; }
.cat-card__label small { font-size: 9.5px; opacity: 0.65; letter-spacing: 0.05em; }
.cat-card__emoji { display: flex; align-items: center; justify-content: center; font-size: 36px; width: 100%; height: 100%; }

/* ─── PRODUCT GRID ───────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }

.product-card { background: var(--white); cursor: pointer; position: relative; overflow: hidden; }
.product-card:hover .product-card__actions { opacity: 1; transform: translateY(0); }
.product-card__img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__badge { position: absolute; top: 12px; left: 12px; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 3px 9px; }
.badge--new { background: var(--black); color: var(--white); }
.badge--sale { background: var(--error); color: var(--white); }
.badge--soldout { background: rgba(0,0,0,0.5); color: var(--white); }
.product-card__wishlist { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; opacity: 0; transition: opacity var(--transition); }
.product-card:hover .product-card__wishlist { opacity: 1; }
.product-card__actions { position: absolute; bottom: 10px; left: 10px; right: 10px; opacity: 0; transform: translateY(6px); transition: opacity 0.18s ease, transform 0.18s ease; }
.btn--add-cart { width: 100%; background: var(--black); color: var(--white); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; padding: 11px; border: none; cursor: pointer; transition: background var(--transition); }
.btn--add-cart:hover { background: var(--gold); }
.product-card__info { padding: 14px 14px 18px; }
.product-card__name { font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em; margin-bottom: 4px; line-height: 1.3; }
.product-card__meta { font-size: 11px; color: var(--text-muted); margin-bottom: 9px; }
.product-card__price { display: flex; gap: 8px; align-items: baseline; }
.price--sale { font-size: 13.5px; font-weight: 600; color: var(--error); }
.price--old { font-size: 11.5px; color: var(--text-muted); text-decoration: line-through; }
.price--regular { font-size: 13.5px; font-weight: 600; }
.product-card__colors { display: flex; gap: 4px; margin-top: 7px; }
.color-dot { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); cursor: pointer; transition: transform 0.12s; }
.color-dot:hover, .color-dot.active { transform: scale(1.2); outline: 2px solid var(--black); outline-offset: 2px; }

/* ─── COLLECTION PAGE ────────────────────────────── */
.collection-page { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.collection-header { padding: 40px 0 32px; border-bottom: 0.5px solid var(--border); margin-bottom: 32px; }
.collection-header__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.collection-header__title { font-size: 28px; font-weight: 300; letter-spacing: 0.04em; }
.collection-header__count { font-size: 12px; color: var(--text-muted); }
.collection-header__desc { margin-top: 12px; font-size: 13px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }

.collection-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }

/* Filters sidebar */
.filters { border: 0.5px solid var(--border); padding: 0; position: sticky; top: calc(var(--nav-h) + var(--announce-h) + 20px); }
.filters__title { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; padding: 14px 16px; border-bottom: 0.5px solid var(--border); }
.filter-group { border-bottom: 0.5px solid var(--border); }
.filter-group__header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; cursor: pointer; font-size: 12px; font-weight: 500; }
.filter-group__body { padding: 4px 16px 14px; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 12px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--black); width: 14px; height: 14px; flex-shrink: 0; }
.filter-option__label { flex: 1; }
.filter-option__count { color: var(--text-muted); font-size: 11px; }
.filter-color-dot { width: 16px; height: 16px; border-radius: 50%; border: 0.5px solid rgba(0,0,0,0.15); flex-shrink: 0; }
.filter-price { display: flex; gap: 8px; align-items: center; }
.filter-price input { width: 70px; padding: 6px 8px; border: 0.5px solid var(--border); font-size: 12px; }
.filter-clear { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); text-decoration: underline; cursor: pointer; margin-top: 8px; display: block; }
.filter-clear:hover { color: var(--black); }

/* Sort / toolbar */
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.sort-select { font-size: 12px; padding: 8px 12px; border: 0.5px solid var(--border); background: var(--white); cursor: pointer; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.active-filter { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; padding: 4px 10px; background: var(--cream); border: 0.5px solid var(--border); border-radius: 20px; }
.active-filter__remove { font-size: 14px; line-height: 1; cursor: pointer; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 4px; padding: 40px 0; }
.pagination__item { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 13px; border: 0.5px solid var(--border); transition: all var(--transition); }
.pagination__item:hover { border-color: var(--black); }
.pagination__item.active { background: var(--black); color: var(--white); border-color: var(--black); }
.pagination__item--prev, .pagination__item--next { width: auto; padding: 0 16px; gap: 6px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

/* ─── PRODUCT PAGE ───────────────────────────────── */
.product-page { max-width: var(--max-w); margin: 0 auto; padding: 100px var(--side-pad) 80px; }
.product-layout { display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: start; }

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--nav-h) + var(--announce-h) + 20px); }
.product-gallery__main { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--white); margin-bottom: 10px; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.2s; }
.product-gallery__main-zoom { position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,0.9); padding: 6px; cursor: zoom-in; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.product-gallery__thumb { aspect-ratio: 1/1; overflow: hidden; border: 1px solid transparent; cursor: pointer; transition: border-color var(--transition); background: var(--white); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumb.active { border-color: var(--black); }
.product-gallery__thumb:hover { border-color: var(--border); }

/* Product info */
.product-info__vendor { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.product-info__title { font-size: 26px; font-weight: 300; letter-spacing: 0.02em; margin-bottom: 16px; line-height: 1.2; }
.product-info__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.product-info__price-sale { font-size: 22px; font-weight: 600; color: var(--error); }
.product-info__price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.product-info__price-regular { font-size: 22px; font-weight: 600; }
.product-info__price-badge { font-size: 10px; background: var(--error); color: var(--white); padding: 3px 8px; font-weight: 600; letter-spacing: 0.05em; }
.product-info__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-info__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.product-info__review-count { font-size: 12px; color: var(--text-muted); text-decoration: underline; cursor: pointer; }

/* Variant selector */
.variant-section { margin-bottom: 20px; }
.variant-label { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 500; margin-bottom: 10px; letter-spacing: 0.04em; }
.variant-label__selected { font-weight: 400; color: var(--text-muted); }
.variant-label__guide { font-size: 11px; color: var(--text-muted); text-decoration: underline; cursor: pointer; }
.variant-options { display: flex; flex-wrap: wrap; gap: 6px; }
.variant-option {
  min-width: 44px; height: 40px; display: flex; align-items: center; justify-content: center;
  padding: 0 12px; border: 0.5px solid var(--border); font-size: 12px; cursor: pointer;
  transition: all var(--transition); user-select: none;
}
.variant-option:hover { border-color: var(--black); }
.variant-option.active { background: var(--black); color: var(--white); border-color: var(--black); }
.variant-option.soldout { opacity: 0.4; cursor: not-allowed; position: relative; }
.variant-option.soldout::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0,0,0,0.1) 4px, rgba(0,0,0,0.1) 5px); }
.variant-option[data-is-color="true"] {
  font-size: 0 !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-block !important;
}
.color-options { display: flex; gap: 8px; flex-wrap: wrap; }
.color-option {
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.08);
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  border: 2px solid transparent !important;
  cursor: pointer;
  transition: all 0.2s;
  outline: 2px solid transparent;
  outline-offset: 3px;
  display: inline-block !important;
  flex-shrink: 0 !important;
}
.color-option.active { outline-color: #111; }
.color-option:hover { outline-color: #312f2fff; }

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

/* Add to cart */
.atc-section { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
.quantity-selector { display: flex; align-items: center; border: 0.5px solid var(--border); width: fit-content; }
.quantity-selector__btn { width: 40px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background var(--transition); }
.quantity-selector__btn:hover { background: var(--cream); }
.quantity-selector__input { width: 52px; height: 44px; text-align: center; border: none; border-left: 0.5px solid var(--border); border-right: 0.5px solid var(--border); font-size: 14px; background: transparent; }
.product-info__guarantee { display: flex; gap: 12px; padding: 14px 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); margin-bottom: 20px; }
.product-info__guarantee-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); }

/* Accordion */
.accordion-item { border-bottom: 0.5px solid var(--border); }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; cursor: pointer; font-size: 12.5px; font-weight: 500; }
.accordion-header::after { content: '+'; font-size: 18px; font-weight: 300; transition: transform var(--transition); }
.accordion-item.open .accordion-header::after { transform: rotate(45deg); }
.accordion-body { padding: 0 0 16px; font-size: 12.5px; color: var(--text-muted); line-height: 1.8; display: none; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body table { width: 100%; border-collapse: collapse; font-size: 12px; margin-top: 8px; }
.accordion-body td { padding: 6px 8px; border: 0.5px solid var(--border); }

/* Related products */
.related-products { padding: 56px var(--side-pad); background: var(--cream); border-top: 0.5px solid var(--border); }
.related-products .section-header { text-align: left; }

/* ─── BREADCRUMBS ────────────────────────────────── */
.breadcrumb { max-width: var(--max-w); margin: 0 auto; padding: 14px var(--side-pad); display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb__sep { opacity: 0.4; }

/* ─── CART DRAWER ────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; max-width: min(420px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-drawer-close { font-size: 18px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--transition); }
.cart-drawer-close:hover { background: var(--cream); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-loading { text-align: center; padding: 40px; color: var(--text-muted); font-size: 13px; }
.cart-item { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 16px 0; border-bottom: 0.5px solid var(--border); }
.cart-item__img { width: 80px; aspect-ratio: 3/4; object-fit: cover; background: var(--cream); }
.cart-item__name { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.cart-item__variant { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item__bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item__price { font-size: 13px; font-weight: 600; }
.cart-item__remove { font-size: 11px; color: var(--text-muted); text-decoration: underline; cursor: pointer; }
.cart-drawer-footer { padding: 20px 24px; border-top: 0.5px solid var(--border); flex-shrink: 0; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.cart-empty { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.cart-empty__icon { font-size: 36px; margin-bottom: 12px; }
.cart-empty__text { font-size: 13px; margin-bottom: 20px; }

/* ─── TOAST NOTIFICATION ─────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 500;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--error { background: var(--error); }
.toast--success { background: var(--success); }

/* ─── PROMO BANNER ───────────────────────────────── */
.promo-banner { padding: 72px var(--side-pad); text-align: center; background: var(--cream); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.promo-banner__inner { max-width: 600px; margin: 0 auto; }
.promo-banner__kicker { font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.promo-banner__title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; letter-spacing: 0.04em; margin-bottom: 18px; line-height: 1.1; }
.promo-banner__sub { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.promo-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── BRAND STORY ────────────────────────────────── */
.brand-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 440px; }
.brand-story__visual { background: linear-gradient(150deg, #1A1A1A 0%, #2D2520 100%); display: flex; align-items: center; justify-content: center; padding: 56px; position: relative; overflow: hidden; }
.brand-story__visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: 0.5; }
.brand-story__visual-text { position: relative; z-index: 2; color: var(--white); text-align: center; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.9; line-height: 2.5; }
.brand-story__content { padding: 72px; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.brand-story__eyebrow { font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.brand-story__title { font-size: 30px; font-weight: 300; margin: 0 0 20px; line-height: 1.2; }
.brand-story__text { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.brand-story__values { display: flex; gap: 28px; margin-top: 20px; }
.brand-story__value-num { font-size: 26px; font-weight: 200; color: var(--gold); line-height: 1; }
.brand-story__value-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ─── NEWSLETTER ─────────────────────────────────── */
.newsletter { background: var(--black); color: var(--white); padding: 64px var(--side-pad); text-align: center; }
.newsletter__title { font-size: 26px; font-weight: 300; margin-bottom: 8px; }
.newsletter__sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.newsletter__form { display: flex; max-width: 420px; margin: 0 auto; }
.newsletter__input { flex: 1; background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.2); color: var(--white); padding: 13px 16px; font-size: 12px; font-family: inherit; outline: none; transition: border-color var(--transition); }
.newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__btn { background: var(--gold); color: var(--white); border: none; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; padding: 13px 22px; cursor: pointer; transition: background var(--transition); }
.newsletter__btn:hover { background: var(--gold-light); }
.newsletter__legal { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 10px; }

/* ─── FOOTER ─────────────────────────────────────── */
.footer { background: var(--white); border-top: 0.5px solid var(--border); padding: 56px var(--side-pad) 28px; }
.footer__grid { display: grid; grid-template-columns: 220px repeat(3, 1fr) 180px; gap: 40px; margin-bottom: 48px; }
.footer__brand-name { font-size: 14px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.footer__tagline { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.footer__socials { display: flex; gap: 8px; }
.footer__social { width: 32px; height: 32px; border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all var(--transition); }
.footer__social:hover { border-color: var(--black); background: var(--cream); }
.footer__col-title { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.footer__col ul li { margin-bottom: 9px; }
.footer__col ul li a { font-size: 12.5px; color: var(--text-muted); transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--black); }
.footer__contact p { font-size: 12px; color: var(--text-muted); line-height: 1.9; }
.footer__contact a { color: var(--black); }
.footer__bottom { border-top: 0.5px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer__legal { font-size: 11px; color: var(--text-muted); display: flex; gap: 12px; flex-wrap: wrap; }
.footer__legal a { color: var(--text-muted); transition: color var(--transition); }
.footer__legal a:hover { color: var(--black); }
.footer__payments { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.payment-badge { background: var(--cream); border: 0.5px solid var(--border); padding: 3px 9px; font-size: 9.5px; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 600; }
.footer__company { font-size: 10.5px; color: var(--text-muted); margin-top: 12px; padding-top: 16px; border-top: 0.5px solid var(--border); line-height: 1.8; }

/* ─── SIZE GUIDE MODAL ───────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 450; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--white); max-width: 600px; width: 90%; max-height: 80vh; overflow-y: auto; }
.modal__header { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 0.5px solid var(--border); }
.modal__title { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.modal__body { padding: 24px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.size-table th, .size-table td { padding: 10px 12px; border: 0.5px solid var(--border); text-align: center; }
.size-table th { background: var(--cream); font-weight: 600; letter-spacing: 0.06em; }

/* ─── UTILITY ────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.hidden { display: none !important; }
.soldout-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; }
.soldout-overlay span { background: rgba(0,0,0,0.7); color: var(--white); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .collection-layout { grid-template-columns: 180px 1fr; gap: 20px; }
  .product-layout { grid-template-columns: 1fr 420px; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer__grid > *:first-child { grid-column: 1/-1; }
  .brand-story__content { padding: 48px; }
}

@media (max-width: 900px) {
  .hero {
    height: calc(100svh - var(--nav-h) - var(--announce-h));
    min-height: unset;
    max-height: unset;
  }
  }
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    object-position: center center;
}
  .hero__content {
    padding: 0 20px 40px;
  }


  :root { --nav-h: 56px; --side-pad: 20px; }
  .nav-left { display: none; }
  .hamburger { display: flex; }
  .site-logo__tagline { display: none; }
  .site-logo { font-size: 15px; letter-spacing: 0.2em; }
  .mega-menu { display: none; }
  .collection-layout { grid-template-columns: 1fr; }
  .filters { display: none; position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; overflow-y: auto; z-index: 350; transition: left 0.3s ease; }
  .filters.open { left: 0; display: block; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .gender-split { grid-template-columns: 1fr; height: auto; }
  .gender-card__content { padding: 32px 24px; }
  .gender-card__name { font-size: 36px; }
  .brand-story { grid-template-columns: 1fr; }
  .brand-story__visual { min-height: 180px; padding: 36px; }
  .brand-story__content { padding: 36px 24px; }
  .hero__content { padding: 0 20px 56px; }
  .trust-bar__inner { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .trust-bar__divider { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__grid > *:first-child { grid-column: 1/-1; }
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .announce-bar { gap: 16px; font-size: 10px; }
  .announce-bar span:not(:first-child) { display: none; }
  .atc-section { grid-template-columns: 1fr; }
  .product-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  .cart-drawer { width: 100%; right: -100%; }

  .cart-drawer {
    width: 100%;
    right: -100%;
    max-width: 100vw;
  }
  .cart-drawer.open {
    right: 0;
}
}

/* ─── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.4s ease both; }


/* ─── SEARCH OVERLAY ─────────────────────────────── */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 500;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-overlay.open { display: flex; }
.search-overlay__inner {
  background: var(--white);
  width: 100%;
  max-width: 640px;
  padding: 40px 36px;
  position: relative;
  margin: 0 20px;
}
.search-overlay__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.search-overlay__close:hover { color: var(--black); }
.search-overlay__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.search-overlay__form {
  display: flex;
  border-bottom: 1.5px solid var(--black);
  align-items: center;
  gap: 12px;
}
.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 22px;
  font-family: inherit;
  font-weight: 300;
  padding: 8px 0;
  background: transparent;
  color: var(--black);
}
.search-overlay__input::placeholder { color: var(--border); }
.search-overlay__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  padding: 4px;
  flex-shrink: 0;
}

/* ─── PAGE PRODUIT STYLE MIMMÙ ──────────────────── */

/* Galerie image — ratio correct partout */
.product-gallery__main {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 10px;
  aspect-ratio: 3/4;
}
.product-gallery__main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.product-gallery__thumb {
  aspect-ratio: 3/4;
  border-radius: 0;
  border: 1.5px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-gallery__thumb.active { border-color: #111; }
.product-gallery__thumb:hover { border-color: #999; }

/* Panneau info produit */
.product-info__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
}
.product-info__price-regular,
.product-info__price-sale { font-size: 22px; font-weight: 600; }
.variant-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 10px;
}

/* Bouton ATC */
[data-atc-btn] {
  background: #111; color: #fff; font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600; padding: 18px; width: 100%;
  border: none; cursor: pointer; transition: background 0.2s; margin-top: 8px;
}
[data-atc-btn]:hover { background: #333; }
[data-atc-btn]:disabled { background: #999; cursor: not-allowed; }

/* Nav secondaire */
.nav-secondary { display: flex; gap: 24px; align-items: center; }
.nav-secondary__link {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.nav-secondary__link:hover { color: var(--black); }

/* Masquer les flèches galerie Codex */
.rivelia-gallery-arrow { display: none !important; }

/* ════════ DESKTOP (901px et +) ════════ */
@media (min-width: 901px) {
  .product-layout {
    grid-template-columns: 1fr 360px;
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
    max-width: 100%;
  }
  .product-gallery { min-width: 0; max-width: 100%; }
  .product-info { min-width: 0; }
  .product-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 8px; }
  .nav-left { display: flex; }
  .hamburger { display: none; }
  .nav-secondary { display: flex; }
  .mega-menu { display: grid; }
  .gender-split { grid-template-columns: 1fr 1fr; height: 500px; }
  .brand-story { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid > *:first-child { grid-column: auto; }
}

/* ════════ TABLETTE (901–1100px) ════════ */
@media (min-width: 901px) and (max-width: 1100px) {
  .product-layout { grid-template-columns: 1fr 360px;  }
}

/* ════════ MOBILE (900px et moins) ════════ */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr !important; gap: 24px !important; }
  .product-gallery { position: static; width: 100%; max-width: 100%; overflow: hidden; }
  .product-gallery__main { aspect-ratio: 1/1; width: 100%; }
  .product-gallery__main img { 
    width: 100%; 
    height: 100%; 
    display: block;
    object-fit: contain;
    object-position: center center;
  }
  .nav-secondary { display: none; }
  .nav-left { display: none; }
  .hamburger { display: flex; }
  .hero { height: 100svh; min-height: unset; max-height: unset; }
  .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
  .cart-drawer { width: 100%; right: -100%; max-width: 100vw; }
  .cart-drawer.open { right: 0; }
  .product-gallery__thumbs--scroll {
    display: flex; flex-direction: row; overflow-x: auto;
    scroll-snap-type: x mandatory; gap: 8px; -webkit-overflow-scrolling: touch;
    width: 100%; max-width: 100%;
  }
  .product-gallery__thumbs--scroll .product-gallery__thumb {
    flex: 0 0 64px; width: 64px; min-width: 64px; height: 80px;
    scroll-snap-align: start;
  }
}

/* ─── FIX PAGE PRODUIT ──────────────────────────── */

/* Fil d'ariane : espace suffisant sous la navbar */
.breadcrumb {
  padding-top: 24px;
}

/* Galerie sticky : offset sans barre d'annonce */
.product-gallery {
  top: calc(var(--nav-h) + 20px);
}

/* Image remplit le conteneur sans zone blanche */
.product-gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-gallery__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* ═══ OVERRIDES PAGE PRODUIT ═══ */

/* Espace sous la navbar */
.breadcrumb {
  padding-top: 24px !important;
}

/* Conteneur image — mode relatif pour absolute child */
.product-gallery__main {
  position: relative !important;
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}

/* Image qui remplit le conteneur sans zone blanche */
.product-gallery__main img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}