*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f8f8f6;
  --bg-alt: #efefec;
  --text: #141414;
  --text-muted: #6e6e6e;
  --border: #e2e2de;
  --asics: #0054a6;
  --saucony: #1c3a2e;
  --white: #ffffff;
  --header-h: 68px;
  --radius: 3px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.loaded { overflow-x: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; -webkit-tap-highlight-color: transparent; }
button, a, .btn { touch-action: manipulation; }
button:focus-visible, a:focus-visible, select:focus-visible, input:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.pace-server-banner {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #b91c1c;
  color: #fff;
  padding: 14px 18px;
  font-size: 0.875rem;
  line-height: 1.45;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pace-server-banner[hidden] { display: none; }

.pace-server-banner strong { display: block; margin-bottom: 4px; font-size: 0.9375rem; }

.pace-server-banner button {
  margin-top: 10px;
  background: #fff;
  color: #b91c1c;
  border: 0;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0;
  background: var(--text);
  animation: loadBar 0.8s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* Duplicate catalog warning */
.catalog-dupe-alert {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #991b1b;
  color: #fff;
  padding: 12px 16px;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.catalog-dupe-alert-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-dupe-alert ul {
  margin: 8px 0 10px 18px;
}

.catalog-dupe-alert code {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 6px;
  border-radius: 2px;
}

.catalog-dupe-dismiss {
  background: #fff;
  color: #991b1b;
  border: none;
  border-radius: 3px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* Marquee announcement */
.ship-cutoff-bar {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #f4f4f5;
  border-bottom: 1px solid var(--border);
  padding: 8px 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-sizing: border-box;
}

.announcement {
  background: var(--text);
  color: var(--white);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.marquee { width: 100%; overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 248, 246, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.nav { display: flex; gap: 32px; }

.nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width var(--transition);
}

.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  position: relative;
}

.icon-btn:hover { background: var(--bg-alt); }

.cart-count, .wishlist-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--text);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

.menu-toggle.open span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.menu-toggle.open span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  background: var(--bg);
}

.mobile-nav a { font-size: 0.9375rem; font-weight: 500; }
.mobile-nav.open { display: flex; }

/* Section labels */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.section-head {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 10px 18px; font-size: 0.6875rem; }

.btn-primary {
  background: var(--text);
  color: var(--white);
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--text); background: var(--white); }

.btn-outline {
  border: 1px solid var(--text);
  background: transparent;
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-full { width: 100%; }

.link-btn {
  background: none;
  border: none;
  color: var(--text);
  text-decoration: underline;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,84,166,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(28,58,46,0.05) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-style: italic;
}

.hero-slogan {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.trust-bar-slogan {
  font-style: italic;
  font-weight: 500;
}

.hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--text-muted);
}

.hero-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f5f5;
  aspect-ratio: auto;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.1s linear;
}

.hero-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 10px 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s ease infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Tech strip */
.tech-strip {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tech-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tech-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.tech-item strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.tech-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Vu récemment */
.recent-section {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .recent-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Carousel */
.carousel-section {
  margin-bottom: 80px;
}

.carousel-nav { display: flex; gap: 8px; }

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1rem;
  transition: all var(--transition);
  background: var(--white);
}

.carousel-arrow:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.carousel-track-wrap {
  overflow: hidden;
  padding-left: max(24px, calc((100vw - 1400px) / 2 + 24px));
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
  padding-right: 24px;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  cursor: pointer;
}

/* Categories */
.categories {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover img { transform: scale(1.06); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.category-overlay h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.category-overlay span {
  font-size: 0.8125rem;
  margin-top: 6px;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.category-card:hover .category-overlay span { opacity: 1; }

/* Brand spotlight */
.brand-spotlight {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-spotlight.reverse .brand-spotlight-text { order: 2; }
.brand-spotlight.reverse .brand-spotlight-img { order: 1; }

.brand-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.asics-label { color: var(--asics); }
.saucony-label { color: var(--saucony); }

.brand-spotlight h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 16px;
}

.brand-spotlight p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.65;
}

.brand-spotlight-img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
  aspect-ratio: 4/3;
}

.brand-spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.brand-spotlight:hover .brand-spotlight-img img { transform: scale(1.03); }

#asics .brand-spotlight-img,
#saucony .brand-spotlight-img {
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebebeb;
  overflow: visible;
}

#asics .brand-spotlight-img img,
#saucony .brand-spotlight-img img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

#asics:hover .brand-spotlight-img img,
#saucony:hover .brand-spotlight-img img { transform: none; }

/* Images vitrines Asics & Saucony — taille réduite */
#asics.brand-spotlight,
#saucony.brand-spotlight {
  align-items: center;
  margin-bottom: 56px;
  gap: 48px;
}

#asics .brand-spotlight-img,
#saucony .brand-spotlight-img {
  max-width: min(340px, 100%);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

#asics .brand-spotlight-img img,
#saucony .brand-spotlight-img img {
  max-height: 380px;
}

/* Catalogue */
.catalogue {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.catalogue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.catalogue h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
}

.catalogue-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 4px;
}

.catalogue-tools {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

.filter-btn {
  padding: 8px 16px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
  background: var(--white);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.sort-select {
  padding: 10px 16px;
  font-family: inherit;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: opacity 0.25s;
}

.product-grid.updating { opacity: 0.5; }

.product-card, .carousel-card { cursor: pointer; }

.product-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1;
  min-height: 140px;
  margin-bottom: 14px;
}

.product-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image-wrap img,
.carousel-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 5px 10px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover { transform: scale(1.1); }
.wishlist-btn.active { color: #e11d48; }

.product-quick-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 13px;
  background: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-brand {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-brand.asics { color: var(--asics); }
.product-brand.saucony { color: var(--saucony); }

.product-name {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 4px 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.stars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.review-count {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.product-meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: capitalize;
}

.product-price {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 4px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 64px 0;
}

.brand-empty-state {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 48px auto;
  padding: 40px 32px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.brand-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-color, var(--text));
  border: 2px solid var(--brand-color, var(--border));
  background: color-mix(in srgb, var(--brand-color, #ccc) 8%, white);
}

.brand-empty-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  background: #fef3c7;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.brand-empty-state h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.brand-empty-state p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.brand-empty-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.brand-empty-perks li {
  margin-bottom: 6px;
}

.brand-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.brand-empty-hint {
  font-size: 0.75rem !important;
  margin-bottom: 0 !important;
}

.brand-alert-guest {
  margin-top: 12px;
  padding: 12px;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}

.brand-alert-guest-lead {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.brand-alert-guest-row {
  display: flex;
  gap: 8px;
}

.brand-alert-guest-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
}

.brand-alert-guest-alt {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 8px 0 0;
}

.brand-alert-guest-alt a {
  font-weight: 600;
  text-decoration: underline;
}

.brand-pill {
  position: relative;
}

.brand-pill-empty {
  opacity: 0.75;
  border-style: dashed;
}

.brand-pill-badge {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 100px;
  background: #fef3c7;
  color: #b45309;
  vertical-align: middle;
}

.brand-check-empty em {
  font-size: 0.6875rem;
  font-style: normal;
  color: #b45309;
}

.size-stock-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: -12px 0 16px;
}

/* Testimonials */
.testimonials {
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.testimonials h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.testimonials-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-sm); }

.testimonial-card .stars {
  margin-bottom: 8px;
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.testimonial-card p {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card footer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-style: normal;
}

.testimonial-product {
  display: block;
  margin-top: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.65;
}

/* Product reviews */
.modal-reviews {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.modal-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.modal-reviews-head h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.review-trust-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: #ecfdf5;
  color: #047857;
}

.review-summary {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-summary-score {
  text-align: center;
}

.review-summary-score strong {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 600;
}

.review-summary-score span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.review-summary-score p {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.review-bar-row {
  display: grid;
  grid-template-columns: 32px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.review-bar {
  height: 8px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 100px;
}

.review-bar-pct {
  text-align: right;
  color: var(--text-muted);
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.review-card-head strong {
  font-size: 0.8125rem;
}

.review-card-rating .stars {
  font-size: 0.6875rem;
}

.review-meta {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.review-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.review-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-product-line {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.review-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.review-verified {
  color: #047857;
  font-weight: 600;
}

.review-helpful {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.review-helpful.voted {
  color: var(--text);
  text-decoration: none;
}

.review-load-more {
  margin-top: 12px;
  font-size: 0.8125rem;
  padding: 10px 16px;
}

.social-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.social-proof-pill {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 100px;
  background: var(--bg-alt, #f0f0ec);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.social-proof-pill.live {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.offline-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #fef3c7;
  color: #92400e;
  border-bottom: 1px solid #fcd34d;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Featured */
.featured-models {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.featured-card:hover { box-shadow: var(--shadow-md); }

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.featured-info {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-brand {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.featured-info h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.featured-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Parrainage */
.referral-cta {
  max-width: 900px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.referral-cta-inner {
  background: linear-gradient(135deg, #141414 0%, #1f2a14 100%);
  color: #fff;
  border-radius: var(--radius-lg, 16px);
  padding: 40px 36px;
  text-align: center;
}

.referral-cta-inner h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  margin: 8px 0 12px;
}

.referral-cta-inner p {
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.referral-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ref-invite-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 40px 10px 16px;
  background: #1a2e0a;
  color: #e8ffd0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(200, 245, 66, 0.2);
  position: relative;
  z-index: 100;
}

.ref-invite-banner p { margin: 0; }

.ref-invite-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

/* Trust */
.trust {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item svg { margin-bottom: 14px; color: var(--text-muted); }

.trust-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 72px 24px 32px;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer h5 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer a:hover { color: var(--white); }

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.35);
}

/* Drawers */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), background var(--transition);
}

.overlay.active { opacity: 1; visibility: visible; }

.cart-drawer, .wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open, .wishlist-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 { font-size: 1.125rem; font-weight: 600; }
.cart-header-count { font-weight: 400; color: var(--text-muted); }

.cart-close {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.cart-close:hover { background: var(--bg-alt); }

.shipping-progress {
  padding: 16px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.shipping-progress p {
  font-size: 0.75rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--text);
  transition: width 0.5s ease;
  border-radius: 2px;
}

.progress-fill.complete { background: #16a34a; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
  font-size: 0.9375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-alt);
}

.cart-item-info { flex: 1; }

.cart-item-name { font-size: 0.875rem; font-weight: 500; }

.cart-item-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 4px 0 10px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 2px;
  transition: background var(--transition);
}

.qty-btn:hover { background: var(--bg-alt); }

.cart-item-price {
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cart-item-price--bundle { color: var(--text); }

.cart-item-price-was {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
}

.cart-item-remove {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.wishlist-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.wishlist-remove {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.cart-note {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Product modal */
.product-modal, .info-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.product-modal.open, .info-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 1040px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}

.product-modal.open .modal-content,
.info-modal.open .modal-content {
  transform: translateY(0);
}

.info-modal-content { padding: 40px; max-width: 560px; }
.info-modal-content h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.modal-body {
  display: block;
}

.modal-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-main--clean {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: start;
}

.modal-main--clean .modal-gallery {
  background: #f5f5f2;
  position: sticky;
  top: 0;
}

.modal-main--clean .modal-image {
  aspect-ratio: auto;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 10px;
}

.modal-main--clean .modal-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}

.modal-main--clean .modal-thumbs {
  justify-content: flex-start;
  padding: 10px 20px 28px;
  background: #f5f5f2;
  gap: 10px;
}

.modal-main--clean .modal-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
}

.modal-main--clean .modal-info {
  padding: 24px 36px 32px 20px;
}

.modal-main--clean .modal-info-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2px;
}

.modal-main--clean .modal-brand {
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.modal-main--clean .modal-info h2 {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.modal-main--clean .modal-category {
  margin: 0 0 10px;
  text-transform: none;
  font-size: 0.875rem;
}

.modal-main--clean .modal-price-block {
  margin-bottom: 14px;
}

.modal-main--clean .modal-price-block .price-current {
  font-size: 1.875rem;
}

.modal-main--clean .modal-price-block .price-ttc {
  display: none;
}

.modal-main--clean .modal-stock {
  margin-bottom: 16px;
  font-size: 0.8125rem;
}

.modal-main--clean .modal-specs {
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}

.modal-main--clean .modal-buy {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.modal-gallery { background: var(--bg-alt); }

.modal-image { aspect-ratio: 1; }

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.modal-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.6;
  transition: all var(--transition);
}

.modal-thumb.active, .modal-thumb:hover {
  opacity: 1;
  border-color: var(--text);
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info { padding: 40px; }

.modal-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.modal-brand {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-wishlist {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.modal-wishlist.active { color: #e11d48; border-color: #e11d48; }

.modal-info h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.modal-price {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
}

.modal-specs span {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.modal-specs strong { font-size: 0.875rem; }

.modal-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.tech-tag {
  padding: 5px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.modal-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.size-btn {
  min-width: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  transition: all var(--transition);
  background: var(--white);
}

.size-btn:hover:not(.unavailable), .size-btn.selected {
  border-color: var(--text);
  background: var(--text);
  color: var(--white);
}

.size-btn.unavailable {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
  background: var(--bg);
  color: var(--text-muted);
}

.size-btn.unavailable:hover {
  border-color: var(--border);
  background: var(--bg);
  color: var(--text-muted);
}

.size-btn.size-last-one {
  border-color: #b45309;
  position: relative;
}

.size-btn.size-low-stock {
  border-color: #d97706;
}

.size-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  font-size: 0.5625rem;
  font-weight: 700;
  background: #b45309;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-btn {
  position: relative;
}

.cart-delivery-hint {
  font-size: 0.75rem;
  color: #047857;
  text-align: center;
  margin: 8px 0 0;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-family: inherit;
}

.product-card img,
.carousel-card img,
.modal-image img,
.modal-thumb img {
  opacity: 1;
}

.color-options {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 3px;
  transition: all var(--transition);
}

.color-swatch span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(0,0,0,0.08);
}

.color-swatch.selected {
  border-color: var(--text);
}

.selected-color {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.875rem;
}

.size-table th, .size-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.size-table th {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.size-tip {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Search */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(248,248,246,0.97);
  z-index: 150;
  padding: 120px 24px 48px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-box {
  max-width: 640px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--text);
}

.search-box input {
  flex: 1;
  border: none;
  background: none;
  font-size: 1.75rem;
  font-family: "Instrument Serif", Georgia, serif;
  padding: 12px 0;
  outline: none;
}

.search-close { font-size: 2rem; padding: 8px; }

.search-results { max-width: 640px; margin: 0 auto; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity var(--transition);
}

.search-result-item:hover { opacity: 0.6; }

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
}

.search-meta {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 2px;
}

.search-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 32px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--text);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-4px); }

/* Toast (desktop — inchangé) */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text);
  color: var(--white);
  padding: 14px 28px;
  font-size: 0.875rem;
  border-radius: 100px;
  z-index: 400;
  transition: transform var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 80px;
  }

  .hero-visual { order: -1; aspect-ratio: auto; }
  .hero-stats { gap: 24px; }
  .scroll-cue { display: none; }

  .tech-strip { grid-template-columns: 1fr; margin: 0 24px 64px; }
  .categories { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 16/9; }

  .brand-spotlight, .brand-spotlight.reverse { grid-template-columns: 1fr; }
  .brand-spotlight.reverse .brand-spotlight-text,
  .brand-spotlight.reverse .brand-spotlight-img { order: unset; }

  .catalogue-tools { align-items: stretch; width: 100%; }
  .filters { justify-content: flex-start; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .featured-models, .featured-card { grid-template-columns: 1fr; }
  .featured-card img { min-height: 200px; }

  .modal-main,
  .modal-main--clean { grid-template-columns: 1fr; }
  .modal-main--clean .modal-gallery { position: static; }
  .modal-info { padding: 24px; }
  .modal-main--clean .modal-info { padding: 20px 20px 28px; }
  .modal-reviews { padding: 24px 20px 32px; }
  .review-summary { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .modal-specs { grid-template-columns: 1fr; }
}

/* Destockage & fiabilité */
.logo-outlet {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #dc2626;
  vertical-align: super;
  margin-left: 2px;
}

.nav-admin {
  color: var(--text-muted) !important;
  font-size: 0.75rem !important;
}

.trust-bar {
  max-width: 1400px;
  margin: 0 auto 48px;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
}

.trust-bar-item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.price-ttc {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
  vertical-align: middle;
}

.price-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.price-current {
  font-size: 1rem;
  font-weight: 700;
  color: #dc2626;
}

.price-original {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.625rem;
  font-weight: 700;
  background: #dc2626;
  color: var(--white);
  padding: 3px 8px;
  border-radius: 100px;
}

.price-save {
  display: block;
  font-size: 0.6875rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 2px;
}

.discount-badge {
  background: #dc2626 !important;
  color: var(--white) !important;
}

.auth-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  padding: 4px 8px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #16a34a;
  z-index: 2;
}

.stock-urgent {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: 4px;
}

.stock-low {
  display: inline-block;
  font-size: 0.6875rem;
  color: #ea580c;
  margin-top: 4px;
}

.stock-ok {
  display: inline-block;
  font-size: 0.6875rem;
  color: #16a34a;
  margin-top: 4px;
}

.stock-out {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6b7280;
  margin-top: 4px;
}

.product-card--sold-out,
.carousel-card.product-card--sold-out {
  opacity: 0.62;
  filter: grayscale(0.85);
}

.product-card--sold-out .product-image-wrap img,
.carousel-card.product-card--sold-out .product-image-wrap img {
  opacity: 0.75;
}

.product-sold-out-badge {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4b5563;
}

.modal-main--sold-out .modal-gallery {
  opacity: 0.7;
  filter: grayscale(0.6);
}

.modal-buy--sold-out {
  padding: 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: #f9fafb;
  text-align: center;
}

.modal-sold-out-msg {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #4b5563;
}

.modal-sold-out-sub {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.modal-buy--sold-out .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.modal-top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.modal-share {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.modal-share:hover {
  border-color: var(--text);
  background: var(--bg);
}

.modal-category {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: -8px 0 12px;
  text-transform: capitalize;
}

.modal-highlights {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-highlights li {
  font-size: 0.8125rem;
  padding-left: 18px;
  position: relative;
  color: var(--text);
  line-height: 1.45;
}

.modal-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.75rem;
}

.modal-details-block {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.modal-details-block summary {
  padding: 14px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-details-block summary::-webkit-details-marker { display: none; }

.modal-details-block summary::after {
  content: "+";
  font-size: 1.125rem;
  color: var(--text-muted);
}

.modal-details-block[open] summary::after {
  content: "−";
}

.modal-details-list {
  margin: 0;
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-details-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  font-size: 0.8125rem;
}

.modal-details-list dt {
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

.modal-details-list dd {
  margin: 0;
  line-height: 1.45;
}

.modal-ship-hint {
  font-size: 0.75rem;
  color: #047857;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}

.modal-bundle-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.modal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.modal-breadcrumb a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-breadcrumb a:hover { color: var(--text); }

.modal-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
  font-size: 0.6875rem;
}

.meta-sku {
  font-family: ui-monospace, monospace;
  color: var(--text-muted);
}

.meta-new-badge {
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  padding: 3px 8px;
  border-radius: 100px;
}

.meta-since { color: var(--text-muted); }

.destock-why-box {
  padding: 14px 16px;
  margin-bottom: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.destock-why-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.destock-why-box p { margin: 0; color: var(--text-muted); }

.address-autocomplete-fieldset {
  overflow: visible !important;
}

.address-autocomplete-field {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.address-autocomplete-wrap {
  position: relative;
}

.address-suggestions {
  display: none;
  position: absolute;
  z-index: 200;
  left: 0;
  right: 0;
  top: 100%;
  margin: 4px 0 0;
  padding: 4px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  max-height: 240px;
  overflow-y: auto;
}

.address-suggestions.is-open {
  display: block;
}

.address-autocomplete-status {
  margin: 6px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.address-suggestion-item {
  padding: 10px 14px;
  font-size: 0.8125rem;
  line-height: 1.4;
  cursor: pointer;
}

.address-suggestion-item:hover,
.address-suggestion-item.active {
  background: var(--bg);
}

.address-autocomplete-hint {
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.pay-logos--compact { margin-top: 8px; gap: 6px; }

.pay-logo {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--white);
}

.pay-visa { color: #1a1f71; }
.pay-mc { color: #eb001b; }
.pay-paypal { color: #003087; }
.pay-colissimo { color: #ffcc00; background: #1a1a1a; border-color: #1a1a1a; color: #ffcc00; }

.cart-vat-line {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  margin: 8px 0 4px;
}

.brand-size-advice {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.brand-size-advice h3 {
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.brand-size-advice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-size-advice li {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 8px;
  padding-left: 0;
}

.brand-size-advice strong { color: var(--text); }

.modal-similar {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.modal-similar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.modal-similar-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-similar-card:hover {
  border-color: var(--text);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.modal-similar-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--bg-alt);
}

.modal-similar-name {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-similar-price {
  font-size: 0.75rem;
  font-weight: 700;
}

.modal-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.cart-savings {
  font-size: 0.8125rem;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.faq h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 32px;
  text-align: center;
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 480px; }

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

.faq-answer a { text-decoration: underline; }

.footer-contact {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5) !important;
}

.footer-bottom a {
  display: inline;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

/* Filtres avancés */
.catalogue-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: static;
}

.filter-group { margin-bottom: 24px; }

.filter-group h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.brand-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
}

.brand-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  cursor: pointer;
}

.brand-check-label input { accent-color: var(--text); }

.filter-chips, .size-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip, .size-chip {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
}

.filter-chip:hover, .size-chip:hover { border-color: var(--text); }

.filter-chip.active, .size-chip.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.catalogue-results { min-width: 0; }

.active-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  min-height: 0;
}

.filter-tag {
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
}

.filter-tag:hover { background: var(--text); color: var(--white); }
.filter-tag.clear-all { background: transparent; color: var(--text-muted); }

/* Marques */
.brands-section {
  max-width: 1400px;
  margin: 0 auto 64px;
  padding: 0 24px;
  text-align: center;
}

.brands-section h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 28px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.brand-pill {
  padding: 12px 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 2px solid var(--brand-color, var(--border));
  border-radius: 100px;
  transition: all var(--transition);
  background: var(--white);
}

.brand-pill:hover {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .catalogue-layout { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  .filter-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    max-height: none;
    left: auto;
    right: auto;
    z-index: 1;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    background: var(--white);
  }

  .filter-sheet-header { display: none; }
}

/* ═══════════════════════════════════════
   MOBILE PRIORITY — téléphone d'abord
   ═══════════════════════════════════════ */

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-bottom: 80px;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}

.announcement-mobile { display: none; }

.filter-mobile-toggle { display: none; }

.filter-sheet-header { display: none; }

.mobile-bottom-bar { display: none; }

@media (max-width: 768px) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  body.has-mobile-nav {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  /* Bandeau simplifié */
  .announcement {
    height: auto;
    min-height: 36px;
    justify-content: center;
  }

  .announcement-mobile {
    display: block;
    width: 100%;
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 9px 14px;
    line-height: 1.3;
    box-sizing: border-box;
  }

  .ship-cutoff-bar {
    font-size: 0.6875rem;
    padding: 7px 10px;
    line-height: 1.45;
  }

  .marquee { display: none; }

  /* Header compact */
  .header-inner {
    padding: 0 12px;
    height: 56px;
  }

  .logo { font-size: 1rem; letter-spacing: 0.12em; }
  .logo-img { height: 28px; }
  .nav-admin { display: none !important; }

  /* Header épuré : recherche + menu (panier/compte dans la barre du bas) */
  #cart-btn,
  #account-btn,
  #wishlist-btn { display: none; }

  .header-actions { gap: 0; }

  .icon-btn {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-nav a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  /* Hero mobile */
  .hero { min-height: auto; }

  .hero-inner {
    padding: 20px 16px 32px;
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.125rem;
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    margin-bottom: 28px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.8125rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
  }

  .hero-stats strong { font-size: 1.125rem; }
  .hero-stats span { font-size: 0.625rem; }

  .hero-visual {
    border-radius: 8px;
    margin: 0 -4px;
  }

  .hero-visual-badge {
    font-size: 0.625rem;
    padding: 8px 12px;
    bottom: 12px;
    left: 12px;
  }

  /* Trust bar scrollable */
  .trust-bar {
    margin: 0 16px 32px;
    padding: 14px 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 8px;
  }

  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-bar-item { flex-shrink: 0; font-size: 0.6875rem; }

  /* Tech strip */
  .tech-strip {
    margin: 0 16px 40px;
    padding: 20px 16px;
    gap: 16px;
  }

  /* Brands horizontal scroll */
  .brands-section { padding: 0 16px; margin-bottom: 40px; }
  .brands-section h2 { font-size: 1.5rem; }

  .brands-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .brands-grid::-webkit-scrollbar { display: none; }

  .brand-pill {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.75rem;
  }

  /* Carousel */
  .carousel-track-wrap { padding-left: 16px; }
  .carousel-card { flex: 0 0 155px; }
  .section-head { padding: 0 16px; }

  /* Categories */
  .categories { padding: 0 16px; gap: 12px; }
  .category-overlay h3 { font-size: 1.375rem; }

  /* Brand spotlight */
  .brand-spotlight {
    padding: 0 16px;
    margin-bottom: 48px;
    gap: 24px;
  }

  .brand-spotlight h2 { font-size: 1.75rem; }
  .brand-spotlight .btn { width: 100%; }

  #asics .brand-spotlight-img,
  #saucony .brand-spotlight-img {
    max-width: min(300px, 100%);
  }

  #asics .brand-spotlight-img img,
  #saucony .brand-spotlight-img img {
    max-height: 320px;
  }

  /* Catalogue */
  .catalogue { padding: 0 16px; }

  .catalogue-layout {
    display: block;
  }

  .catalogue-results {
    width: 100%;
  }

  .catalogue-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .catalogue h2 { font-size: 1.75rem; }

  .sort-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.875rem;
  }

  .filter-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
  }

  .filter-mobile-toggle.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
  }

  /* Filtres en panneau coulissant (bottom sheet) */
  .filter-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -4px 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .filter-sheet-header h3 {
    font-size: 1rem;
    font-weight: 600;
  }

  .filter-sheet-close {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
  }

  .filter-panel {
    display: block;
    position: fixed;
    top: calc(56px + env(safe-area-inset-top) + 12px);
    bottom: auto;
    left: 12px;
    right: 12px;
    z-index: 900;
    max-height: min(70svh, calc(100svh - 100px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
    margin-bottom: 0;
    padding: 20px 16px 24px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
    visibility: hidden;
    pointer-events: none;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .filter-panel.open {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .filter-panel .size-chip,
  .filter-panel .brand-check-label,
  .filter-panel .btn,
  .filter-sheet-close {
    touch-action: manipulation;
    cursor: pointer;
  }

  body.filter-open .overlay {
    z-index: 800;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: auto;
  }

  body.filter-open .catalogue-header,
  body.filter-open .filter-mobile-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  body.filter-open .mobile-bottom-bar {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .brand-filters { max-height: 180px; }

  .filter-chip, .size-chip {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.8125rem;
  }

  .brand-check-label {
    min-height: 44px;
    padding: 4px 0;
  }

  /* Grille produits 2 colonnes — idéal mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .product-image-wrap { margin-bottom: 8px; }

  .product-quick-add {
    opacity: 1;
    transform: none;
    padding: 10px;
    font-size: 0.625rem;
  }

  .wishlist-btn {
    width: 40px;
    height: 40px;
  }

  .auth-badge { font-size: 0.5rem; padding: 3px 6px; }

  .product-name { font-size: 0.8125rem; }
  .price-current { font-size: 0.875rem; }
  .review-count { display: none; }

  /* Featured */
  .featured-models { padding: 0 16px; }
  .featured-info { padding: 24px 20px; }
  .featured-info .btn { width: 100%; }

  /* Testimonials, trust, faq */
  .testimonials, .faq { padding: 0 16px; }
  .trust { padding: 32px 16px; gap: 24px; }

  /* Footer */
  .footer { padding: 48px 16px 24px; }
  .newsletter-form .btn { width: 100%; }

  /* Panier plein écran */
  .cart-drawer, .wishlist-drawer {
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    padding-top: env(safe-area-inset-top);
  }

  .cart-header { padding: 16px; }
  .cart-close { width: 44px; height: 44px; }

  .cart-items {
    padding: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .cart-footer {
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
    position: sticky;
    bottom: 0;
    z-index: 2;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  }

  #checkout-btn {
    padding: 18px;
    font-size: 0.875rem;
  }

  .cart-item img { width: 72px; height: 72px; }

  .qty-btn {
    width: 36px;
    height: 36px;
  }

  /* Modal produit — style app native */
  .product-modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal-content {
    max-height: 94vh;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 100%;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .modal-info { padding: 20px 16px 32px; }
  .modal-info h2 { font-size: 1.5rem; }

  .size-btn {
    min-width: 52px;
    min-height: 44px;
  }

  .color-swatch {
    width: 40px;
    height: 40px;
  }

  #add-to-cart {
    padding: 18px;
    font-size: 0.8125rem;
    position: sticky;
    bottom: 0;
  }

  /* Recherche */
  body.search-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }

  .search-overlay {
    display: flex;
    flex-direction: column;
    padding: calc(56px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom));
    z-index: 250;
    overflow: hidden;
    overscroll-behavior: contain;
  }

  .search-overlay .search-box {
    flex-shrink: 0;
    margin-bottom: 12px;
  }

  .search-results {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .search-box input {
    font-size: 16px;
    font-family: "DM Sans", system-ui, sans-serif;
  }

  .search-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-result-item {
    min-height: 56px;
    padding: 12px 0;
  }

  /* Toast mobile — sous le header, ne masque pas la barre du bas */
  .toast {
    top: calc(56px + 12px + env(safe-area-inset-top));
    bottom: auto;
    transform: translateX(-50%) translateY(-16px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-width: calc(100vw - 32px);
    font-size: 0.8125rem;
  }

  .toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .back-to-top {
    bottom: calc(80px + env(safe-area-inset-bottom));
    right: 16px;
    width: 44px;
    height: 44px;
  }

  /* Barre navigation bas */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
  }

  body.nav-scroll-down .mobile-bottom-bar {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 8px;
    min-width: 52px;
    min-height: 48px;
    justify-content: center;
    background: none;
    border: none;
    position: relative;
  }

  .mob-nav-item.active,
  .mob-nav-item:active { color: var(--text); }

  .mob-cart-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    background: var(--text);
    color: var(--white);
    font-size: 0.5625rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
  }

  /* Masquer la barre du bas quand panier/modal/filtres ouverts */
  body.panel-open .mobile-bottom-bar,
  body.filter-open .mobile-bottom-bar {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  /* Info modal (guide tailles) — bottom sheet */
  .info-modal {
    padding: 0;
    align-items: flex-end;
  }

  .info-modal .modal-content {
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .size-table { font-size: 0.8125rem; }
  .size-table th, .size-table td { padding: 10px 8px; }

  /* FAQ — zones tactiles larges */
  .faq-question {
    padding: 18px 16px;
    min-height: 56px;
  }

  .faq-answer p { padding: 0 16px 18px; }

  /* Newsletter */
  .newsletter-form input {
    font-size: 16px;
    padding: 14px 16px;
  }

  /* Catalogue sticky tools — compact au scroll */
  .catalogue-header {
    position: sticky;
    top: 56px;
    z-index: 40;
    background: var(--bg);
    padding: 12px 0 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    border-bottom: 1px solid var(--border);
    transition: padding 0.2s ease, gap 0.2s ease;
  }

  .catalogue-header.is-compact {
    padding: 6px 16px 4px;
    gap: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  .catalogue-header.is-compact .section-label,
  .catalogue-header.is-compact .catalogue-sub,
  .catalogue-header.is-compact .price-tier-chips {
    display: none;
  }

  .catalogue-header.is-compact h2 {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.2;
  }

  .catalogue-header.is-compact .sort-select {
    width: auto;
    min-width: 0;
    max-width: 42vw;
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  #catalogue.is-scrolled .filter-mobile-toggle {
    position: sticky;
    top: calc(56px + env(safe-area-inset-top) + 44px);
    z-index: 39;
    margin-bottom: 6px;
    padding: 10px 14px;
    font-size: 0.8125rem;
    background: var(--bg);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .filter-mobile-toggle { position: relative; z-index: 1; }

  /* Panier — bloc crème compact */
  .growth-upsell {
    margin: 0 12px 6px;
    padding: 8px 10px;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .growth-upsell strong {
    font-size: 0.6875rem;
    margin-bottom: 2px;
  }

  .growth-upsell p {
    margin: 0 0 6px;
  }

  .growth-upsell-btn {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
  }

  .shipping-progress {
    padding: 10px 16px;
  }

  .shipping-progress p {
    margin-bottom: 6px;
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .cart-header {
    padding: 12px 16px;
  }

  .cart-header h3 {
    font-size: 1rem;
  }

  /* Bloc rupture de stock — compact */
  .brand-empty-state {
    margin: 20px auto;
    padding: 20px 16px;
    max-width: 100%;
  }

  .brand-empty-icon {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
    margin-bottom: 10px;
  }

  .brand-empty-state h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }

  .brand-empty-state p {
    font-size: 0.8125rem;
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .brand-empty-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }

  .brand-empty-actions .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.8125rem;
  }

  .brand-empty-hint {
    font-size: 0.6875rem !important;
  }

  .brand-alert-guest-row {
    flex-direction: column;
  }

  .brand-alert-guest-row .btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.875rem; }
  .hero-stats strong { font-size: 1rem; }
  .carousel-card { flex: 0 0 140px; }
}

/* Account dropdown */
.account-dropdown {
  position: fixed;
  z-index: 250;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 300px;
  padding: 20px;
  animation: accountDropIn 0.2s ease;
}

@keyframes accountDropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.account-dropdown-title {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.account-dropdown-header {
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.account-dropdown-header strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.account-dropdown-header span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.account-dropdown-link {
  display: block;
  padding: 12px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-bottom: 4px;
}

.account-dropdown-link:hover { background: var(--bg); }

.account-dropdown-link.primary {
  background: var(--text);
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
}

.account-dropdown-link.primary:hover { background: #2a2a2a; }

.account-dropdown-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin: 12px 0 8px;
}

.account-dropdown-social {
  display: flex;
  gap: 6px;
}

.account-social-chip {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.account-social-chip:hover { border-color: var(--text); }

.account-dropdown-logout {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .account-dropdown {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    top: auto !important;
    border-radius: 16px 16px 0 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

/* Body class for bottom nav padding — set via JS */

/* Growth / acquisition */
.growth-upsell {
  margin: 0 16px 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.growth-upsell--bundle {
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.growth-upsell--ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.growth-upsell strong { display: block; margin-bottom: 4px; font-size: 0.75rem; }
.growth-upsell p { margin: 0 0 10px; color: var(--text-muted); }
.growth-upsell-btn { width: 100%; }

.growth-hero-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

.growth-hero-note a { font-weight: 600; text-decoration: underline; }

.sticky-cart-bar {
  display: none !important;
}

.sticky-cart-open {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 8px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sticky-cart-total {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.sticky-cart-checkout { flex-shrink: 0; }

body.has-sticky-cart .back-to-top { bottom: calc(130px + env(safe-area-inset-bottom)); }

.growth-nl-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.growth-nl-modal[hidden] { display: none; }

.growth-nl-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.growth-nl-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
}

.growth-nl-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-muted);
}

.growth-nl-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
}

.growth-nl-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 8px 0 10px;
}

.growth-nl-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.growth-nl-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.growth-nl-card input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
}

.growth-nl-skip {
  width: 100%;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
}

.growth-nl-done {
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .sticky-cart-bar { display: none !important; }
}

/* ——— Crédibilité & grilles prix ——— */
.live-orders-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f0fdf4;
  border-bottom: 1px solid #bbf7d0;
  font-size: 0.8125rem;
  color: #166534;
  text-align: center;
}

.live-orders-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: livePulse 2s ease infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.sourcing-section {
  padding: 56px 24px;
  background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
}

.sourcing-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.sourcing-lead {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  line-height: 1.65;
}

.sourcing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.sourcing-step {
  padding: 22px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.sourcing-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #141414;
  color: #c8f542;
  font-size: 0.75rem;
  font-weight: 700;
}

.sourcing-step strong {
  display: block;
  margin-bottom: 6px;
}

.sourcing-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.offers-brands-block {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.offers-brands-block .price-offers {
  padding: 0;
}

.offers-brands-block .pace-history {
  padding: 48px 0 32px;
  background: transparent;
}

.offers-brands-block .brands-section {
  max-width: none;
  margin: 28px 0 0;
  padding: 0;
}

.price-offers {
  padding: 0 24px 48px;
}

@media (min-width: 769px) {
  .offers-brands-block .brands-section {
    margin-top: 24px;
  }
}

.price-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-offer-card {
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.price-offer-card--mass {
  border-color: #c8f542;
  background: linear-gradient(180deg, #fafef0 0%, #fff 100%);
}

.price-offer-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #141414;
  color: #c8f542;
  border-radius: 999px;
}

.price-offer-card h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.price-offer-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.price-tier-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.price-tier-chips--panel {
  margin-top: 0;
}

.price-tier-chips .filter-chip {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  transition: all 0.2s;
}

.price-tier-chips .filter-chip.active {
  background: #141414;
  color: #fff;
  border-color: #141414;
}

.product-badge.tier-mass,
.trust-pill--mass {
  background: #c8f542;
  color: #141414;
  font-weight: 700;
}

.pace-icon {
  display: inline-block;
  vertical-align: -0.2em;
  flex-shrink: 0;
}

.pace-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-pill .pace-icon-label {
  gap: 4px;
}

#shipping-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pace-payment-trust {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pace-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pace-payment-logos--compact {
  margin-top: 10px;
}

.pace-pay-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-muted);
}

.pace-company-trust {
  margin-top: 16px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.pace-company-trust-sub {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.trust-identity {
  padding: 56px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-identity-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-identity-main h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.trust-identity-main > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 20px;
}

.trust-identity-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.trust-identity-contact {
  font-size: 0.875rem;
  margin-bottom: 28px;
}

.trust-identity-contact a {
  font-weight: 600;
}

.trust-identity-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trust-badge strong {
  color: var(--text);
  font-size: 0.9375rem;
}

.trust-badge-icon {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.trust-identity-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer-legal-line {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.review-card-static {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.875rem;
  line-height: 1.6;
}

.review-card-static footer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pace-stats-strip {
  padding: 10px 16px;
  background: var(--bg-alt);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pace-stats-strip + .offers-brands-block {
  padding-top: 24px;
}

@media (min-width: 769px) {
  .pace-stats-strip + .offers-brands-block {
    padding-top: 32px;
  }
}

.pace-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
}

.pace-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.pace-stat strong {
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 0;
}

.pace-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 1;
}

@media (max-width: 480px) {
  .pace-stats-inner {
    gap: 4px 12px;
  }

  .pace-stat strong {
    font-size: 0.75rem;
  }

  .pace-stat span {
    font-size: 0.6875rem;
  }
}

.pace-history {
  padding: 64px 24px;
  background: var(--bg);
}

.pace-history--bottom {
  padding: 40px 24px 48px;
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.pace-history--bottom .pace-history-inner {
  max-width: 1100px;
}

.pace-history--bottom h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.pace-history--bottom .pace-history-lead {
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .pace-history--bottom .pace-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 32px;
    border-left: none;
    padding-left: 0;
  }

  .pace-history--bottom .pace-timeline-item {
    padding: 0 0 20px 0;
    border-left: 2px solid var(--border);
    padding-left: 20px;
  }

  .pace-history--bottom .pace-timeline-item::before {
    left: -6px;
  }
}

.pace-history-inner {
  max-width: 760px;
  margin: 0 auto;
}

.pace-history-lead {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.pace-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-left: 2px solid var(--border);
}

.pace-timeline-item {
  position: relative;
  padding: 0 0 28px 24px;
}

.pace-timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text);
}

.pace-timeline-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pace-timeline-body strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.pace-timeline-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pace-history-more {
  font-size: 0.875rem;
  font-weight: 600;
}

.pace-social {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.pace-social-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pace-social-inner p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 480px;
  margin: 8px 0 0;
}

.pace-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pace-social-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
}

.pace-footer-social {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pace-footer-social span {
  font-weight: 600;
}

.catalogue-noscript {
  margin-top: 24px;
  padding: 20px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
}

.nav-admin,
.footer-admin {
  display: none !important;
}

@media (max-width: 768px) {
  .sourcing-steps,
  .price-offers-grid {
    grid-template-columns: 1fr;
  }

  .sourcing-section {
    padding: 40px 16px;
  }

  .offers-brands-block {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .offers-brands-block .brands-section {
    margin-top: 20px;
  }

  .price-offers {
    padding: 0 16px 32px;
  }

  .live-orders-ticker {
    font-size: 0.75rem;
    padding: 10px 12px;
  }

  .price-tier-chips {
    gap: 6px;
  }

  .price-tier-chips .filter-chip {
    padding: 10px 12px;
    min-height: 40px;
  }

  .catalogue-header .price-tier-chips {
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .live-orders-dot { animation: none !important; }
}