/* Indigo & Safran — feuille de style maître */

:root {
  --paper: #ffffff;
  --paper-2: #f5f2ee;
  --ink: #1a1a1a;
  --ink-2: #4a4a4a;
  --line: #1a1a1a18;
  --line-2: #1a1a1a0e;
  --indigo: #cc4535;      /* corail — accent principal */
  --cyan: #1a9aad;        /* turquoise — accent secondaire */
  --terre: #cc4535;
  --safran: #c98a2a;
  --brand-font: 'Marcellus', Georgia, serif;
  --serif: 'Playfair Display', Georgia, serif;
  --accent-italic: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

/* Italic accents — Cormorant Garamond 600i, scaled up to match Marcellus optically */
h1 em, h2 em, h3 em {
  font-family: var(--accent-italic);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35em;
  letter-spacing: -0.02em;
  color: var(--indigo);
}
/* Hero : em en cyan turquoise */
.hero h1 em { color: var(--cyan); }

.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ─── Layout helpers ──────────────────────────────────────── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 40px; }

/* ─── Annonce bandeau ─────────────────────────────────────── */
.announce {
  background: var(--cyan);
  color: var(--paper);
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
}

/* ─── Header ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 150px;
  padding: 0 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  margin-top: 3px;
  color: var(--ink-2);
}
.nav { display: flex; gap: 28px; font-size: 14px; }
.nav button {
  background: none; border: none; padding: 6px 0;
  position: relative;
}
.nav button::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink); transition: right 0.3s ease;
}
.nav button:hover::after, .nav button.active::after { right: 0; }
.nav-right { display: flex; gap: 18px; justify-content: flex-end; }
.icon-btn {
  background: none; border: none; padding: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
}
.nav-icon { display: none; }
.icon-btn .badge {
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 10px;
  border-radius: 10px; padding: 2px 6px;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  max-height: 520px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-text {
  padding: 56px 64px 48px;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 28px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-2);
}
.hero h1 {
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; }
.hero-lede {
  font-size: 17px;
  max-width: 460px;
  color: var(--ink-2);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn:hover { background: var(--paper); color: var(--ink); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-link {
  background: none; border: none;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
}

.hero-image { position: relative; overflow: hidden; }

/* ─── Placeholder image (block-print) ─────────────────────── */
.ph {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ph-pattern);
  background-size: var(--ph-tile, 80px) var(--ph-tile, 80px);
  opacity: var(--ph-opacity, 1);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, #0000000a 100%);
}
.ph .ph-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: #ffffffd9; padding: 4px 8px;
  color: var(--ink-2);
  z-index: 2;
}
.ph .ph-frame {
  position: absolute; inset: 24px;
  border: 1px solid #1a1a1a26;
  pointer-events: none;
}

/* ─── Marquee « valeurs » ─────────────────────────────────── */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.value {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.value:last-child { border-right: none; }
.value-title {
  font-family: var(--serif); font-size: 18px;
  margin-bottom: 4px;
}
.value-sub { font-size: 13px; color: var(--ink-2); }

/* ─── Section ─────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px; gap: 32px;
}
.section-title {
  font-size: clamp(36px, 3.8vw, 56px);
  line-height: 1;
  max-width: 720px;
}
.section-title em { font-style: italic; color: var(--indigo); }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
}

/* ─── Catégories tuiles ───────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: calc(100vh - 140px);
}
.cat-card {
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: opacity 0.3s ease;
}
.cat-card:hover { opacity: 0.93; }
.cat-card .cat-card-img {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.cat-card .cat-card-img::before {
  content: ""; position: absolute; inset: 0;
  background: var(--cat-pattern);
  background-size: 90px 90px;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card-img::before { transform: scale(1.03); }
.cat-card-meta {
  padding: 12px 16px 14px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px;
  background: var(--paper);
  flex-shrink: 0;
}
.cat-card-meta h3 {
  font-size: 15px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.cat-card-meta p {
  margin: 2px 0 0;
  font-size: 11px; color: var(--ink-2);
  font-family: var(--mono); letter-spacing: 0.08em;
}
.cat-card-arrow {
  font-family: var(--mono); font-size: 12px;
  border: 1px solid var(--line);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.cat-card:hover .cat-card-arrow {
  background: var(--cyan); color: var(--paper); border-color: var(--cyan);
}

.cat-card.large,
.cat-card.medium,
.cat-card.small  { grid-column: span 1; grid-row: span 1; }

/* ─── Story / éditorial ───────────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.editorial-img { aspect-ratio: 4/5; overflow: hidden; }
.editorial-body h2 {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  margin-bottom: 24px;
}
.editorial-body p {
  font-size: 16px; color: var(--ink-2);
  max-width: 480px;
  margin: 0 0 16px;
}
.editorial-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.editorial-stats div {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
}
.editorial-stats div strong {
  font-family: var(--serif);
  font-size: 36px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink); display: block; margin-bottom: 4px;
  text-transform: none;
}

/* ─── Catalog ─────────────────────────────────────────────── */
.catalog-head {
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.catalog-head h1 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.96; margin-bottom: 16px;
}
.catalog-head .crumbs {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 24px;
}
.catalog-head .crumbs a { border-bottom: 1px solid currentColor; }

.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.catalog-toolbar .filters { display: flex; gap: 22px; flex-wrap: wrap; }
.catalog-toolbar select {
  font: inherit; background: none; border: none;
  border-bottom: 1px solid var(--ink);
  padding: 4px 24px 4px 4px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'><path d='M0 0 L4 6 L8 0 Z' fill='%231a1a1a'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.catalog-toolbar .pill {
  border: 1px solid var(--ink);
  padding: 6px 12px;
  background: none;
}
.catalog-toolbar .pill.active { background: var(--ink); color: var(--paper); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  padding: 40px 0 96px;
}
.product-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}

.product-card {
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
  gap: 0;
}
.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-2);
}
.product-card-img::before {
  content: ""; position: absolute; inset: 0;
  background: var(--card-pattern);
  background-size: 80px 80px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img { opacity: 0.92; }
.product-card:hover .product-card-img::before { transform: scale(1.03); }
.product-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--paper);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 7px;
  z-index: 2;
}
.product-card-info {
  padding: 12px 0 0;
  display: flex; flex-direction: column; gap: 4px;
}
.product-card-collection {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.product-card-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0;
}
.product-card-price {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 2px;
}
.product-card-meta {
  display: none;
}

/* ─── Product detail ──────────────────────────────────────── */
.pd {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  padding: 48px 0 96px;
}
.pd-gallery { display: flex; flex-direction: column; gap: 12px; }
.pd-main {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.pd-main > .ph { position: absolute; inset: 0; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-thumb {
  aspect-ratio: 1;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.pd-thumb > .ph { position: absolute; inset: 0; }
.pd-thumb.active { border-color: var(--ink); }

.pd-info { padding: 16px 0; }
.pd-info h1 {
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.05;
  margin-bottom: 12px;
}
.pd-collec {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.pd-price {
  font-family: var(--serif); font-size: 28px;
  letter-spacing: -0.01em;
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pd-desc {
  color: var(--ink-2); font-size: 15px;
  margin-bottom: 32px;
  max-width: 460px;
}
.pd-section-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px;
}
.pd-sizes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pd-size {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--line);
  padding: 14px 18px;
  background: none; text-align: left;
  transition: all 0.15s ease;
  font-size: 14px;
}
.pd-size:hover { border-color: var(--ink); }
.pd-size.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.pd-size strong { font-family: var(--serif); font-size: 18px; font-weight: 500; }

.pd-custom {
  background: var(--paper-2);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
  border-left: 2px solid var(--cyan);
}
.pd-custom label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.pd-custom input {
  flex: 1; background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 12px; font: inherit;
  font-family: var(--serif); font-size: 16px;
}

.pd-add { display: flex; gap: 12px; margin-bottom: 32px; }
.pd-add .qty {
  display: flex; align-items: center;
  border: 1px solid var(--ink);
}
.pd-add .qty button {
  background: none; border: none;
  width: 44px; height: 50px; font-size: 16px;
}
.pd-add .qty span {
  width: 36px; text-align: center;
  font-family: var(--serif); font-size: 18px;
}
.pd-add .btn { flex: 1; justify-content: center; height: 50px; padding: 0 24px; }

.pd-meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  padding-top: 24px; border-top: 1px solid var(--line);
}
.pd-meta div::before { content: "— "; }

/* ─── Cart drawer ─────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: #0000004d;
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--paper);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-size: 22px; letter-spacing: -0.01em;
}
.cart-head .close {
  background: none; border: none; font-size: 22px;
  width: 32px; height: 32px;
}
.cart-items {
  flex: 1; overflow-y: auto; padding: 0 24px;
}
.cart-empty {
  text-align: center; padding: 64px 32px;
  color: var(--ink-2);
}
.cart-empty p {
  font-family: var(--serif); font-size: 22px;
  margin: 16px 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-item-img {
  aspect-ratio: 1; background: var(--paper-2);
}
.cart-item-name { font-family: var(--serif); font-size: 17px; line-height: 1.2; }
.cart-item-meta { font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.cart-item-price { font-family: var(--serif); font-size: 17px; }
.cart-item-actions { font-size: 12px; margin-top: 6px; display: flex; gap: 12px; }
.cart-item-actions button {
  background: none; border: none; padding: 0;
  border-bottom: 1px solid currentColor; color: var(--ink-2);
}
.cart-foot {
  padding: 24px; border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 22px;
  margin-bottom: 16px;
}
.cart-shipping {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 16px;
  text-align: center;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand h3 { font-size: 32px; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-brand p { color: #ffffffaa; max-width: 320px; font-size: 14px; }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px; color: #ffffffaa;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-col a:hover { color: #ffffffaa; }
.footer-news input {
  background: none;
  border: none; border-bottom: 1px solid #ffffff66;
  padding: 8px 0;
  color: var(--paper);
  font: inherit; width: 100%;
  margin-bottom: 12px;
}
.footer-news input::placeholder { color: #ffffff66; }
.footer-news button {
  background: none; border: 1px solid var(--paper); color: var(--paper);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 16px;
}
.footer-bot {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #ffffff22;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #ffffff66;
}

/* ─── Responsive minimal (>= 880px design target) ─────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 56px 32px; }
  .editorial { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .editorial-img { width: 100%; min-width: 0; }
  .pd { grid-template-columns: 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; height: auto; }
  .cat-card.large, .cat-card.medium, .cat-card.small { grid-column: span 1; }
  .cat-card .cat-card-img { min-height: 160px; flex: none; height: 160px; }
}
@media (max-width: 640px) {
  .wrap, .header-inner { padding: 0 20px; }
  .nav { display: none; }
  .product-grid { grid-template-columns: 1fr; }

  /* Overflow fix global */
  html { overflow-x: clip; }

  /* Header */
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; height: 60px; }
  .brand img { height: 44px; }
  .brand small { display: none; }
  .nav-right { gap: 4px; }
  .nav-right .nav-label { display: none; }
  .nav-right .nav-icon { display: block; }
  .nav-right .nav-catalogue { display: none; }

  /* Hero : compact sur mobile */
  .hero-text { padding: 32px 20px 24px; gap: 14px; }
  .hero h1 { font-size: clamp(40px, 10vw, 56px); line-height: 1; }
  .hero-image { min-height: 240px; }

  /* Cat-grid : 1 colonne, hauteur fixe par carte */
  .cat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }
  .cat-card { min-height: 200px; }
  .cat-card .cat-card-img { min-height: 140px; }

  /* Values : 2 colonnes, titres réduits */
  .values { grid-template-columns: repeat(2, 1fr); }
  .value { padding: 16px 12px; }
  .value-title { font-size: 15px; }

  /* Sections : padding réduit */
  .section { padding: 48px 0; }
  .section-tight { padding: 32px 0; }

  /* Catalogue toolbar : selects empilés */
  .catalog-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .catalog-toolbar .filters { gap: 10px; }
  .catalog-toolbar select { font-size: 12px; }

  /* Editorial stats : 1 colonne sur mobile */
  .editorial-stats { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; padding-top: 24px; }
  .editorial-stats div { display: flex; align-items: baseline; gap: 12px; }
  .editorial-stats div strong { font-size: 28px; flex-shrink: 0; }

  /* Featured : 2 colonnes max */
  .product-grid.compact { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; padding-bottom: 48px; }

  /* Tags produit : plus petits pour tenir dans les cartes 2-col */
  .product-tag { font-size: 8px; letter-spacing: 0.12em; padding: 3px 6px; }

  /* Footer */
  .footer { padding: 48px 0 24px; margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand h3 { font-size: 24px; }
}
