/** Shopify CDN: Minification failed

Line 2910:0 Unexpected "}"

**/
/* =========================================================
   BOWFLEX RÉUNION — Reproduction fidèle de global.bowflex.com
   Palette : Blanc / Noir / Gris #969696 / Rouge #e32202 (accent rare)
   Police : Inter (proche de "Rauschen A" propriétaire BowFlex)
   ========================================================= */

:root {
  --c-black: #000000;
  --c-dark: #1a1a1a;
  --c-gray-900: #414042;
  --c-gray-700: #545759;
  --c-gray-600: #767676;
  --c-gray-500: #969696;
  --c-gray-400: #A3A3A3;
  --c-gray-300: #CBCDCE;
  --c-gray-200: #e7e8e9;
  --c-gray-100: #efefef;
  --c-gray-50: #f7f7f7;
  --c-white: #ffffff;
  --c-red: #e32202;
  --c-red-dark: #b71b00;
  --c-link: #0076c0;

  --font-default: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1500px;
  --header-h: 96px;
  --utility-h: 0px;

  --transition: 0.2s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-default);
  color: var(--c-black);
  background: var(--c-white);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Système de tailles type Bowflex (alpha/beta/gamma…) */
.alpha { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; line-height: 1.1; }
.beta  { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.15; }
.gamma { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 600; line-height: 1.2; }
.delta { font-size: 1.2rem; font-weight: 600; }
.hecto { font-size: 1.05rem; }
.gram  { font-size: 0.95rem; }
.centi { font-size: 0.85rem; }
.deci  { font-size: 0.75rem; }

h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-black);
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.ta-c { text-align: center; }
.mb-16 { margin-bottom: 4rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }

/* ---------- Boutons (style btn-sqr btn-sec h-ghost original) ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 2px solid var(--c-black);
  background: transparent;
  color: var(--c-black);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  min-width: 200px;
  text-transform: none;
}
.btn:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.btn-primary {
  background: var(--c-black);
  color: var(--c-white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--c-black);
}

.btn-light {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
}
.btn-light:hover {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}

/* btn-secondary = alias du ghost (transparent + bordure noire) */
.btn-secondary {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn-secondary:hover {
  background: var(--c-black);
  color: var(--c-white);
}

/* ============================================================
   HEADER (BLANC comme l'original)
   ============================================================ */
.utility-bar {
  background: var(--c-black);
  color: var(--c-white);
  font-size: 0.85rem;
  height: var(--utility-h);
  display: flex;
  align-items: center;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.utility-bar .util-left,
.utility-bar .util-right {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.utility-bar .schwinn-logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 16px;
  position: relative;
}
.utility-bar .schwinn-logo img {
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.utility-bar .schwinn-logo::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
}

.utility-bar a {
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.utility-bar a:hover { color: var(--c-gray-300); }

.utility-bar .country-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--c-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  color: var(--c-black);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.brand-logo img {
  height: 32px;
  width: auto;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a,
.main-nav > ul > li > button {
  color: var(--c-black);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 36px 0;
  display: inline-block;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  text-transform: none;
  letter-spacing: 0;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > button:hover,
.main-nav > ul > li.active > a {
  color: var(--c-black);
}

.main-nav > ul > li > a.has-arrow::after,
.main-nav > ul > li > button.has-arrow::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 8px;
  vertical-align: 2px;
}

/* Onglet "Produits" en surbrillance quand le mégamenu est ouvert */
.main-nav > ul > li:hover > button.has-mega,
.main-nav > ul > li:focus-within > button.has-mega {
  background: var(--c-gray-100);
}
.main-nav > ul > li > button.has-mega {
  padding-left: 24px;
  padding-right: 24px;
  transition: background var(--transition);
}

/* ---------- Mégamenu Produits (PLEIN LARGEUR comme l'original) ---------- */
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--utility-h) + var(--header-h));
  background: var(--c-white);
  color: var(--c-black);
  width: 100vw;
  padding: 40px 24px 48px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  display: none;
  z-index: 99;
  border-top: 1px solid var(--c-gray-200);
}

.main-nav li:hover > .mega-menu,
.main-nav li:focus-within > .mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.mega-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 12px 8px;
  color: var(--c-gray-900);
  font-size: 0.95rem;
  font-weight: 400;
  transition: opacity var(--transition);
}
.mega-item a:hover {
  opacity: 0.7;
  color: var(--c-black);
}

.mega-item .thumb {
  background: transparent;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-item .thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* ---------- Mégamenu compact (Pourquoi BowFlex) — dropdown sous le bouton ---------- */
.mega-menu.mega-menu-compact {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: 240px !important;
  max-width: 90vw !important;
  background: var(--c-white) !important;
  padding: 12px 0 !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
  border-top: none !important;
  z-index: 110 !important;
}
.mega-link-list {
  display: block;
  max-width: none;
  margin: 0;
  padding: 0;
}
.mega-link-list a {
  display: block;
  padding: 12px 24px;
  color: var(--c-black);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.mega-link-list a:hover {
  color: var(--c-red);
  background: var(--c-gray-100);
}

/* ---------- Mégamenu JRNY (COMPACT, sous le bouton du menu) ---------- */
.mega-menu.mega-menu-sm {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 100% !important;
  bottom: auto !important;
  transform: translateX(-50%) !important;
  width: 480px !important;
  max-width: 90vw !important;
  background: var(--c-white) !important;
  color: var(--c-black);
  padding: 24px !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
  border-top: none !important;
  z-index: 110 !important;
}

.mega-menu.mega-menu-sm .mega-jrny {
  display: block;
  max-width: none;
  margin: 0;
}

.mega-jrny-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-gray-100);
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  transition: background var(--transition);
  color: var(--c-black);
}
.mega-jrny-card:hover { background: var(--c-gray-200); }

.mega-jrny-img {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  object-fit: contain;
}

.mega-jrny-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--c-black);
  line-height: 1.2;
}

.mega-jrny-text span {
  font-size: 0.9rem;
  color: var(--c-gray-700);
  line-height: 1.3;
}

.mega-jrny-cta {
  display: block;
  width: 100%;
  text-align: center;
  min-width: 0;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ---------- Header actions ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bouton WhatsApp stylé */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--c-white);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.search-toggle, .menu-toggle {
  background: none;
  border: none;
  color: var(--c-black);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 6px;
}
.search-toggle:hover, .menu-toggle:hover { color: var(--c-red); }
.menu-toggle { display: none; }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 200;
  display: none;
  padding: 100px 24px;
}
.search-overlay.open { display: block; }
.search-overlay form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  border-bottom: 2px solid var(--c-black);
  padding-bottom: 12px;
}
.search-overlay input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--c-black);
  font-size: 1.5rem;
  outline: none;
  padding: 12px 0;
  font-family: inherit;
}
.search-overlay input::placeholder { color: var(--c-gray-500); }
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--c-black);
  font-size: 1.6rem;
}

/* ============================================================
   HERO (avec vidéo de fond comme l'original)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  background: var(--c-black) url('https://global.bowflex.com/on/demandware.static/-/Sites-nautilus-international-Library/default/dw1e7c91e7/bfx/homepage/posters/bowflex-hp-rebrand-launch-1920x800-poster-d.jpg') center / cover no-repeat;
  overflow: hidden;
  margin-bottom: 5rem;
  height: calc(100vh - var(--header-h) - var(--utility-h));
  min-height: 480px;
  max-height: 800px;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 56px;
  color: var(--c-white);
}

.hero-eyebrow {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  color: var(--c-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--c-white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================ */
section { padding: 0; }

.section-wrap {
  max-width: var(--container-max);
  margin: 0 auto 5rem;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  margin: 0 auto 4rem;
  max-width: 800px;
}

/* ============================================================
   SECTIONS THÉMATIQUES (compatibilité héritée)
   ============================================================ */
.section-dark {
  background: var(--c-black);
  color: var(--c-white);
  padding: 5rem 0;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--c-white);
}
.section-dark p { color: var(--c-gray-200); }

.section-gray {
  background: var(--c-gray-50);
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 800px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-header .lead,
.section-header p.lead {
  color: var(--c-gray-700);
  font-size: 1.05rem;
}
.section-dark .section-header h2 { color: var(--c-white); }
.section-dark .section-header .lead { color: var(--c-gray-300); }

.lead {
  font-size: 1.05rem;
  color: var(--c-gray-700);
}

/* Eyebrow : étiquette texte avant un titre (pages produits) */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}

/* Variante feature-row utilisée dans pages produit (jrny, pourquoi-bowflex)
   N'entre pas en conflit avec featured-products > .featured-row (avec d) */
.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.feature-row > .feature-img {
  flex: 1 1 50%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: var(--c-gray-100);
}
.feature-row > .feature-text {
  flex: 1 1 50%;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-row > .feature-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 600;
}
.feature-row > .feature-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 480px;
}
.feature-row.dark { background: var(--c-black); color: var(--c-white); }
.feature-row.dark > .feature-text h3 { color: var(--c-white); }
.feature-row.dark > .feature-text p { color: var(--c-gray-200); }
.feature-row.dark > .feature-text .eyebrow { color: var(--c-white); opacity: 0.7; }

/* Section-dark + feature-list (pages JRNY/contact) */
.section-dark .feature-item {
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: var(--c-white);
}
.section-dark .feature-item h3 { color: var(--c-white); }
.section-dark .feature-item p { color: var(--c-gray-300); }

/* ============================================================
   GRILLE CATÉGORIES (style original : petites cartes)
   ============================================================ */
.category-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

.category-card {
  flex: 1 1 180px;
  max-width: 200px;
  background: var(--c-gray-200);
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: block;
  padding: 12px;
  text-align: center;
}

.category-card:hover {
  border-color: var(--c-gray-400);
  background: var(--c-gray-100);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 4px;
  background: var(--c-white);
}

.category-card .label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-black);
  display: block;
}

.category-card:hover .label { color: var(--c-red); }

/* ============================================================
   FEATURED PRODUCTS (style original : 2 lignes 50/50)
   ============================================================ */
.featured-products {
  max-width: 1920px;
  margin: 0 auto 5rem;
  padding: 0 24px;
}

.featured-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0;
}

.featured-row.reverse {
  flex-direction: row-reverse;
}

.featured-row .img-col {
  flex: 1 1 50%;
  min-width: 0;
}

.featured-row .img-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.featured-row .text-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.featured-row .text-col-inner {
  width: 100%;
  max-width: 480px;
}

.featured-row h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--c-black);
}

.featured-row p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--c-black);
  line-height: 1.6;
}

/* ============================================================
   SECTION 2 PHOTOS CÔTE-À-CÔTE (Move to feel)
   ============================================================ */
.dual-images {
  max-width: 1920px;
  margin: 0 auto 5rem;
  display: flex;
  flex-wrap: wrap;
}
.dual-images > div {
  flex: 1 1 50%;
  min-width: 0;
}
.dual-images img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   BARRE DE MARQUES
   ============================================================ */
.brand-strip {
  background: var(--c-white);
  padding: 32px 0;
  border-top: 1px solid var(--c-gray-200);
  border-bottom: 1px solid var(--c-gray-200);
}
.brand-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.brand-strip img {
  height: 24px;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.brand-strip img:hover { opacity: 1; }

/* ============================================================
   FOOTER (style fidèle global.bowflex.com — tout aligné à gauche)
   ============================================================ */
.bfx-footer { background: var(--c-white); }

/* Bannière JRNY (fond noir, contenu centré) */
.ftr-jrny {
  background: var(--c-black);
  color: var(--c-white);
  padding: 24px;
}
.ftr-jrny-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 24px;
}
.ftr-jrny-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.ftr-jrny-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(180deg, #e32202 0%, #6e1cff 100%);
  border-radius: 2px;
  flex-shrink: 0;
}
.ftr-jrny-text {
  flex: 1;
  font-size: 1.05rem;
  margin: 0;
  color: var(--c-white);
  min-width: 240px;
}
.ftr-jrny-cta {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-white);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}
.ftr-jrny-cta:hover {
  background: var(--c-white);
  color: var(--c-black);
}

/* Logo BowFlex (aligné à GAUCHE) */
.ftr-logo-row {
  background: var(--c-gray-200);
  padding: 64px 0 32px;
}
.ftr-logo-row > div {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  border-bottom: 1px solid var(--c-gray-400);
  padding-bottom: 32px;
}
.ftr-logo-row img {
  height: 36px;
  width: auto;
  display: block;
}

/* 2 colonnes Product Info / Support (alignées à GAUCHE) */
.ftr-links-wrap {
  background: var(--c-gray-200);
  padding: 56px 0;
}
.ftr-links {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--c-gray-400);
  padding-bottom: 56px;
}
.ftr-col {
  text-align: left;
}
.ftr-col h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 20px;
  padding: 0;
  border: none;
}
.ftr-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ftr-col ul li { margin-bottom: 8px; }
.ftr-col a {
  color: var(--c-gray-600);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.ftr-col a:hover {
  color: var(--c-black);
  text-decoration: underline;
}

/* Our Brands (aligné à GAUCHE) */
.ftr-brands {
  background: var(--c-gray-200);
  padding: 32px 0 64px;
}
.ftr-brands-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: left;
}
.ftr-brands h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-black);
  margin: 0 0 20px;
}
.ftr-brands-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ftr-brands-logos a {
  display: inline-block;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.ftr-brands-logos a:hover { opacity: 1; }
.ftr-brands-logos img {
  height: 32px;
  width: auto;
}

/* Bas légal */
.ftr-legal {
  background: var(--c-white);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}
.ftr-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ftr-legal ul li {
  border-right: 1px solid var(--c-gray-400);
  padding-right: 24px;
}
.ftr-legal ul li:last-child { border-right: none; padding-right: 0; }
.ftr-legal a {
  color: var(--c-black);
  font-size: 0.9rem;
  text-decoration: none;
}
.ftr-legal a:hover { text-decoration: underline; }
.ftr-legal p {
  color: var(--c-black);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   PRODUCT LINE PAGE (= page catégorie style global.bowflex.com/en/maxtrainer/)
   ============================================================ */

/* Sub-nav horizontale (Max Trainer Home / MT40 / M9 / M6...) */
.pl-subnav {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gray-200);
  padding: 16px 0;
}
.pl-subnav .container {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
}
.pl-subnav a {
  color: var(--c-gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.pl-subnav a:hover { color: var(--c-black); }
.pl-subnav a.active {
  color: var(--c-black);
  border-bottom-color: var(--c-black);
  font-weight: 600;
}

/* Hero collection — vidéo + tagline + H1 */
.pl-hero {
  position: relative;
  width: 100%;
  background: var(--c-black);
  overflow: hidden;
  margin-bottom: 32px;
  height: calc(100vh - var(--header-h) - var(--utility-h));
  min-height: 440px;
  max-height: 700px;
  color: var(--c-white);
}
.pl-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%, transparent 100%);
  z-index: 1;
}
.pl-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 56px;
}
.pl-hero-tagline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  color: var(--c-white);
  letter-spacing: -0.02em;
}
.pl-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--c-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Cards produits pleine largeur (alternées fond gris) */
.pl-prod-cards { padding: 0 0 64px; }

.pl-card {
  background: var(--c-gray-200);
  margin-bottom: 16px;
}
.pl-card.bg-white { background: var(--c-white); }
.pl-card .container {
  max-width: 1500px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 64px 24px;
  gap: 32px;
}
.pl-card .pl-card-img,
.pl-card .pl-card-text {
  flex: 1 1 calc(50% - 16px);
  min-width: 0;
}
.pl-card .pl-card-text { padding: 0 16px; }
.pl-card .pl-card-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.pl-card.reverse .container { flex-direction: row-reverse; }

/* Mobile : image au-dessus du texte */
@media (max-width: 768px) {
  .pl-card .container,
  .pl-card.reverse .container {
    flex-direction: column;
  }
  .pl-card .pl-card-img,
  .pl-card .pl-card-text { flex: 1 1 100%; }
  .pl-card .container { padding: 32px 16px; }
}

.pl-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--c-black);
}
.pl-card h2 a {
  color: inherit;
  transition: opacity var(--transition);
}
.pl-card h2 a:hover { opacity: 0.7; }

.pl-card .pl-desc {
  font-size: 1rem;
  color: var(--c-gray-700);
  margin-bottom: 24px;
  max-width: 540px;
}

.pl-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pl-icons img {
  height: 28px;
  width: auto;
}
.pl-icons .plus {
  font-size: 0.85rem;
  color: var(--c-gray-600);
}
.pl-icons .label {
  font-size: 0.9rem;
  color: var(--c-black);
  font-weight: 500;
  margin-left: 8px;
}

.pl-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pl-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-gray-700);
}
.pl-watch-video::before {
  content: '▶';
  font-size: 0.7rem;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pl-watch-video:hover { color: var(--c-black); }

/* Section "Compare" */
.pl-compare-cta {
  text-align: center;
  padding: 48px 24px;
  background: var(--c-white);
  margin-bottom: 16px;
}
.pl-compare-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 600;
}
.pl-compare-cta p {
  color: var(--c-gray-700);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Awards */
.pl-awards {
  background: var(--c-white);
  padding: 64px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.pl-awards img {
  height: 120px;
  margin: 0 auto 24px;
  display: block;
  width: auto;
}
.pl-awards h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 600;
}
.pl-awards p {
  color: var(--c-gray-700);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Tableau comparatif */
.pl-compare-table {
  background: var(--c-white);
  padding: 64px 0;
}
.pl-compare-table table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
}
.pl-compare-table thead img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.pl-compare-table th,
.pl-compare-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--c-gray-200);
  font-size: 0.95rem;
}
.pl-compare-table th {
  font-weight: 600;
  vertical-align: top;
}
.pl-compare-table tbody th {
  text-align: left;
  background: var(--c-gray-50);
}
.pl-compare-table tr:last-child th,
.pl-compare-table tr:last-child td { border-bottom: none; }

/* ============================================================
   PAGE AWARDS / RÉCOMPENSES (calque exact bowflex-awards.html)
   ============================================================ */

/* Hero : image plein écran avec H1 superposé */
.awards-hero {
  position: relative;
  width: 100%;
  margin-bottom: 64px;
  overflow: hidden;
}
.awards-hero img.hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}
.awards-hero h1 {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--c-white);
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
  margin: 0;
  z-index: 2;
}

/* Trophy case (centré, 1200px max) */
.trophy-case {
  background: var(--c-white);
  padding: 0 24px 64px;
}
.trophy-case .container {
  max-width: 1200px;
  margin: 0 auto;
}
.trophy-case h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
  color: var(--c-black);
}

/* Ligne rouge décorative (sous les H2) */
.line-red {
  width: 60px;
  height: 4px;
  background: var(--c-red);
  margin: 0 auto 64px;
  border-radius: 2px;
}

/* Liste verticale des trophées (IMAGE GAUCHE + TEXTE DROITE forcés en ligne sauf très petits écrans) */
.trophy-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.trophy-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
}
.trophy-img {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.trophy-img img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.trophy-text {
  flex: 0 1 45%;
  max-width: 45%;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-black);
  text-align: left;
}
.trophy-text p {
  margin-bottom: 24px;
}

/* Mobile uniquement (≤ 540px) : passer en colonne */
@media (max-width: 540px) {
  .trophy-row {
    flex-direction: column !important;
    gap: 16px;
    text-align: center;
  }
  .trophy-img,
  .trophy-text {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .trophy-text { text-align: center; }
}
.trophy-text .btn-read {
  display: inline-block;
  padding: 14px 56px;
  background: var(--c-black);
  color: var(--c-white);
  border: 2px solid var(--c-black);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition);
  margin-top: 8px;
}
.trophy-text .btn-read:hover {
  background: transparent;
  color: var(--c-black);
}

/* Section Media Contact */
.media-contact {
  background: var(--c-gray-200);
  padding: 64px 24px;
  text-align: center;
}
.media-contact .container {
  max-width: 1200px;
  margin: 0 auto;
}
.media-contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--c-black);
}
.media-contact p {
  color: var(--c-black);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.media-contact .uppercase {
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 16px;
}
.media-contact a {
  color: var(--c-black);
  text-decoration: underline;
}
.media-contact a:hover {
  color: var(--c-red);
}

/* ============================================================
   PAGE JRNY (style global.bowflex.com/en/jrny.html)
   ============================================================ */

/* Hero JRNY avec CTAs et boutons App Store / Google Play */
.jrny-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a1057 50%, #c2185b 100%);
  color: var(--c-white);
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}
.jrny-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://global.bowflex.com/on/demandware.static/-/Sites-nautilus-international-Library/default/dwc7c181b6/bfx/homepage/jrny-now-mt-vid-bg-1x.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.jrny-hero .container { position: relative; z-index: 1; }

.jrny-hero img.jrny-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}

.jrny-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--c-white);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.jrny-hero-cta {
  margin-bottom: 24px;
  text-align: center;
}

.jrny-hero-cta .btn,
.jrny-hero-cta .btn-light {
  display: inline-block;
  width: auto !important;
  font-weight: 600;
  margin: 0 8px;
}

.jrny-stores {
  margin-bottom: 24px;
  text-align: center;
  font-size: 0;
}
.jrny-stores a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-black);
  color: var(--c-white);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid var(--c-white);
  transition: all var(--transition);
  width: auto;
  min-width: 170px;
  text-decoration: none;
  font-weight: 500;
  margin: 4px 6px;
  vertical-align: middle;
}
.jrny-stores a:hover {
  background: var(--c-white);
  color: var(--c-black);
}
.jrny-stores .store-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.jrny-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-white);
  text-decoration: underline;
  font-size: 0.95rem;
}
.jrny-watch:hover { opacity: 0.85; color: var(--c-white); }

/* Carousel d'introduction (5 cartes) */
.jrny-experience {
  background: var(--c-white);
  padding: 64px 0;
}
.jrny-experience .section-title {
  margin-bottom: 48px;
}

.jrny-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.jrny-card {
  background: var(--c-gray-100);
  padding: 24px;
  border-radius: 6px;
  text-align: center;
  transition: transform var(--transition);
}
.jrny-card:hover {
  transform: translateY(-4px);
  background: var(--c-gray-200);
}
.jrny-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.jrny-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--c-black);
}
.jrny-card p {
  font-size: 0.85rem;
  color: var(--c-gray-700);
  line-height: 1.5;
}

/* Section catégories d'équipements compatibles */
.jrny-compat {
  background: var(--c-gray-50);
  padding: 64px 0;
}
.jrny-compat .section-title { margin-bottom: 32px; }
.jrny-compat .lead-sub {
  text-align: center;
  color: var(--c-gray-700);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.jrny-cat-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.jrny-cat-icon {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: 6px;
  padding: 32px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.jrny-cat-icon:hover {
  border-color: var(--c-black);
  transform: translateY(-2px);
}
.jrny-cat-icon img {
  height: 64px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
}
.jrny-cat-icon span {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-black);
}

/* 3 sous-sections fonctionnalités clés */
.jrny-feature {
  padding: 64px 0;
}
.jrny-feature.alt { background: var(--c-gray-50); }

.jrny-feature .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.jrny-feature.reverse .feature-grid { direction: rtl; }
.jrny-feature.reverse .feature-grid > * { direction: ltr; }

.jrny-feature-img img {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.jrny-feature-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  font-weight: 600;
}
.jrny-feature-text > p {
  font-size: 1.05rem;
  color: var(--c-gray-700);
  margin-bottom: 24px;
  line-height: 1.6;
}

.jrny-sublist {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}
.jrny-sublist .item {
  display: flex;
  gap: 16px;
}
.jrny-sublist .item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.jrny-sublist .item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.jrny-sublist .item p {
  color: var(--c-gray-700);
  font-size: 0.9rem;
}

/* Onglets de produits compatibles */
.jrny-prods {
  padding: 64px 0;
  background: var(--c-white);
}
.jrny-prods .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.jrny-tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--c-gray-200);
  margin-bottom: 32px;
  justify-content: center;
}
.jrny-tabs button {
  background: none;
  border: none;
  padding: 16px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-gray-700);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.jrny-tabs button.active {
  color: var(--c-black);
  border-bottom-color: var(--c-black);
  font-weight: 600;
}

.jrny-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jrny-prod-card {
  text-align: center;
  border: 1px solid var(--c-gray-200);
  padding: 16px;
  border-radius: 6px;
  transition: all var(--transition);
}
.jrny-prod-card:hover {
  border-color: var(--c-black);
}
.jrny-prod-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 12px;
}
.jrny-prod-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.jrny-prod-card .access {
  font-size: 0.8rem;
  color: var(--c-gray-700);
  margin-bottom: 12px;
}
.jrny-prod-card a.view-link {
  font-size: 0.85rem;
  color: var(--c-black);
  text-decoration: underline;
}

/* Reviews */
.jrny-reviews {
  background: var(--c-gray-50);
  padding: 64px 0;
}
.jrny-rating {
  text-align: center;
  margin-bottom: 32px;
}
.jrny-rating .big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-black);
}
.jrny-rating .stars { font-size: 1.5rem; }
.jrny-rating .from {
  display: block;
  color: var(--c-gray-700);
  font-size: 0.95rem;
  margin-top: 8px;
}

.jrny-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.jrny-review {
  background: var(--c-white);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--c-gray-200);
}
.jrny-review .stars {
  color: #f5b700;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.jrny-review p {
  font-size: 0.9rem;
  color: var(--c-gray-900);
  margin-bottom: 12px;
  line-height: 1.5;
}
.jrny-review .meta {
  font-size: 0.8rem;
  color: var(--c-gray-700);
  border-top: 1px solid var(--c-gray-200);
  padding-top: 8px;
}

/* FAQ */
.jrny-faq {
  background: var(--c-white);
  padding: 64px 0;
}
.jrny-faq .container { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.faq-item {
  border-bottom: 1px solid var(--c-gray-200);
}
.faq-item summary {
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 0 24px;
  color: var(--c-gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA bottom essai gratuit */
.jrny-trial-cta {
  background: var(--c-black);
  color: var(--c-white);
  padding: 64px 24px;
  text-align: center;
}
.jrny-trial-cta h2 {
  color: var(--c-white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  font-weight: 600;
}
.jrny-trial-cta p {
  color: var(--c-gray-200);
  margin-bottom: 24px;
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.jrny-trial-cta .jrny-stores { margin-top: 16px; }
.jrny-trial-cta .jrny-stores a {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
}
.jrny-trial-cta .jrny-stores a:hover {
  background: transparent;
  color: var(--c-white);
}

/* ============================================================
   PAGE INTÉRIEURE (catégories / produits) — versions simplifiées
   ============================================================ */
.page-banner {
  position: relative;
  background: var(--c-black);
  color: var(--c-white);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  color: var(--c-white);
}
.page-banner p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  color: var(--c-gray-200);
}

/* Cartes produits */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--c-gray-400);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.product-card .img-wrap {
  aspect-ratio: 4 / 3;
  background: var(--c-gray-100);
  overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.04); }
.product-card .body { padding: 24px; }
.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.product-card .desc {
  color: var(--c-gray-700);
  font-size: 0.95rem;
  margin-bottom: 16px;
  min-height: 50px;
}
.product-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-black);
}

/* Section padding */
.padded-section { padding: 5rem 0; }

/* Form */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-gray-300);
  font-family: inherit;
  font-size: 1rem;
  background: var(--c-white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--c-black);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.feature-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: 6px;
}
.feature-item .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.feature-item h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.feature-item p { color: var(--c-gray-700); font-size: 0.95rem; }

/* Stores */
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.store-card {
  padding: 28px;
  border: 1px solid var(--c-gray-200);
  background: var(--c-white);
  border-radius: 6px;
}
.store-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--c-black);
  font-weight: 600;
}
.store-card h3::after {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--c-red);
  margin-top: 8px;
}
.store-card p { color: var(--c-gray-700); margin-bottom: 6px; font-size: 0.95rem; }
.store-card strong { color: var(--c-black); }

/* CTA Banner */
.cta-strip {
  background: var(--c-black);
  color: var(--c-white);
  text-align: center;
  padding: 80px 24px;
}
.cta-strip h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; color: var(--c-white); font-weight: 600; }
.cta-strip p { font-size: 1.05rem; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; color: var(--c-gray-200); }
.cta-strip .btn { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }
.cta-strip .btn:hover { background: transparent; color: var(--c-white); border-color: var(--c-white); }

/* ============================================================
   PAGE PRODUIT (PDP)
   ============================================================ */
.breadcrumb {
  padding: 14px 0;
  background: var(--c-gray-50);
  border-bottom: 1px solid var(--c-gray-200);
  font-size: 0.85rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  color: var(--c-gray-700);
}
.breadcrumb a { color: var(--c-gray-700); }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--c-gray-400);
}
.breadcrumb li:last-child { color: var(--c-black); font-weight: 600; }

.pdp-main { padding: 40px 0 64px; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 620px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--c-gray-400) transparent;
}
.pdp-thumbs::-webkit-scrollbar { width: 4px; }
.pdp-thumbs::-webkit-scrollbar-thumb { background: var(--c-gray-400); border-radius: 2px; }
.pdp-thumbs button {
  flex: 0 0 auto;
  border: 2px solid var(--c-gray-200);
  background: var(--c-white);
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  transition: border-color var(--transition);
}
.pdp-thumbs button.active, .pdp-thumbs button:hover { border-color: var(--c-black); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-main-image {
  position: relative;
  background: #f6f6f6;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
}
.pdp-main-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 24px;
}
.pdp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--c-red);
  color: var(--c-white);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 3px;
}

.pdp-purchase h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 8px;
  font-weight: 600;
}
.pdp-purchase .tagline {
  display: inline-block;
  background: var(--c-gray-100);
  color: var(--c-black);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 16px;
  border-radius: 3px;
}
.pdp-purchase .price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pdp-purchase .price small {
  font-size: 0.9rem;
  color: var(--c-gray-700);
  font-weight: 400;
}
.pdp-purchase .reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--c-gray-700);
}
.stars { color: #f5b700; letter-spacing: 1px; }

.pdp-features {
  list-style: none;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--c-gray-200);
  border-bottom: 1px solid var(--c-gray-200);
}
.pdp-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.pdp-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--c-black);
  font-weight: 700;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.pdp-actions .btn { width: 100%; }
.pdp-meta {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--c-gray-700);
  display: grid;
  gap: 6px;
}
.pdp-meta strong { color: var(--c-black); }

.feature-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--c-white);
  padding: 64px 0;
}
.feature-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
}
.feature-banner.right::before {
  background: linear-gradient(-90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
}
.feature-banner .container { position: relative; z-index: 1; }
.feature-banner .banner-content { max-width: 540px; }
.feature-banner.right .banner-content { margin-left: auto; text-align: right; }
.feature-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--c-white);
  font-weight: 600;
}
.feature-banner p { font-size: 1.05rem; line-height: 1.6; }

.specs-section { background: var(--c-gray-50); padding: 64px 0; }
.specs-table {
  max-width: 960px;
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: 6px;
  overflow: hidden;
}
.specs-table dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.specs-table dt, .specs-table dd {
  padding: 16px 24px;
  border-bottom: 1px solid var(--c-gray-200);
}
.specs-table dt {
  font-weight: 600;
  background: var(--c-gray-100);
  font-size: 0.9rem;
}
.specs-table dd:last-of-type, .specs-table dt:last-of-type { border-bottom: none; }

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.included-item {
  text-align: center;
  padding: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: 6px;
}
.included-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 12px;
}
.included-item .label {
  font-size: 0.9rem;
  font-weight: 600;
}

.reviews-section { background: var(--c-white); padding: 64px 0; }
.review-card {
  background: var(--c-gray-50);
  padding: 20px;
  margin-bottom: 12px;
  border-left: 3px solid var(--c-black);
  border-radius: 4px;
}
.review-card h4 {
  font-size: 1.05rem;
  margin: 6px 0;
  font-weight: 600;
}
.review-card p {
  color: var(--c-gray-700);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.review-card .author {
  font-size: 0.8rem;
  color: var(--c-gray-600);
  font-style: italic;
}

.suggested-section { background: var(--c-gray-100); padding: 64px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .featured-row { flex-direction: column !important; }
  .featured-row .text-col { padding: 32px 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-table dl { grid-template-columns: 1fr; }
  .specs-table dt { background: var(--c-gray-200); }
}

/* ============================================================
   MOBILE — calque sur global.bowflex.com (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ---------- Header mobile : hamburger | logo centré | actions ---------- */
  .menu-toggle { display: inline-flex; }
  .utility-bar { display: none; }

  .site-header { height: 64px; }
  .header-inner { gap: 8px; }

  .brand-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    order: 2;
  }
  .brand-logo img { height: 22px; }

  .header-actions {
    gap: 4px;
    order: 3;
  }
  /* hamburger à gauche du logo */
  .menu-toggle {
    order: 1;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }
  .search-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }

  /* WhatsApp mobile : icône ronde sans texte */
  .btn-whatsapp {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .btn-whatsapp span { display: none; }

  /* Drawer mobile plein écran */
  .main-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    bottom: 0;
    background: var(--c-white);
    padding: 0;
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .main-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid var(--c-gray-200);
    position: static;
  }
  .main-nav > ul > li:last-child { border-bottom: none; }
  .main-nav > ul > li > a, .main-nav > ul > li > button {
    padding: 18px 24px;
    width: 100%;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav > ul > li:hover > button.has-mega {
    background: transparent;
  }
  /* chevron accordéon (▾) qui pivote quand ouvert */
  .main-nav > ul > li > button.has-mega::after {
    content: '▾';
    font-size: 0.85rem;
    margin-left: 0;
    transition: transform var(--transition);
    border: none;
    width: auto;
    height: auto;
    transform: none;
  }
  .main-nav > ul > li > button.has-mega[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  /* Mégamenu en mobile : accordéon vertical (déclenché par classe .open via JS) */
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    box-shadow: none;
    background: var(--c-gray-50);
    padding: 0;
    display: none;
    border-top: none;
    top: auto;
  }
  .main-nav li:hover > .mega-menu,
  .main-nav li:focus-within > .mega-menu { display: none; }
  .mega-menu.open { display: block; }

  .mega-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .mega-item {
    border-bottom: 1px solid var(--c-gray-200);
  }
  .mega-item:last-child { border-bottom: none; }
  .mega-item a {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 14px 32px 14px 48px;
    font-size: 0.95rem;
    align-items: center;
  }
  .mega-item .thumb {
    width: 48px;
    height: 48px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
  }

  /* ---------- Hero accueil : portrait avec gradient bas ---------- */
  .hero {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 720px;
    margin-bottom: 2rem;
  }
  .hero::after { display: none; }
  .hero-overlay::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  }
  .hero-overlay { align-items: flex-end; padding-bottom: 32px; }
  .hero-content {
    padding: 0 24px;
    max-width: none;
  }
  .hero h1 { font-size: 2rem; line-height: 1.15; }
  .hero-eyebrow { font-size: 0.85rem; }
  .hero-actions .btn { min-width: auto; width: 100%; padding: 14px; }

  /* ---------- Catégories accueil : 3 col ---------- */
  .section-wrap { margin-bottom: 3rem; padding: 0 16px; }
  .section-title { margin-bottom: 2rem; }
  .section-title h2 { font-size: 1.6rem; padding: 0 8px; }

  .category-strip {
    gap: 8px;
    margin: 0;
  }
  .category-card {
    flex: 1 1 calc(33.333% - 8px);
    max-width: none;
    padding: 6px;
  }
  .category-card img { margin-bottom: 6px; }
  .category-card .label { font-size: 0.78rem; line-height: 1.2; }

  /* ---------- Featured products accueil ---------- */
  .featured-products { margin-bottom: 3rem; padding: 0 16px; }
  .featured-row { flex-direction: column !important; gap: 16px; margin-bottom: 32px; }
  .featured-row.reverse { flex-direction: column !important; }
  .featured-row .img-col,
  .featured-row .text-col { flex: 1 1 100%; padding: 0; }
  .featured-row .text-col { padding: 8px 8px 16px; text-align: center; }
  .featured-row h3 { font-size: 1.5rem; }
  .featured-row .text-col-inner { max-width: none; }
  .featured-row .btn { width: 100%; min-width: 0; }

  /* ---------- Dual images (Move to feel) ---------- */
  .dual-images { flex-direction: column; margin-bottom: 3rem; }
  .dual-images > div { flex: 1 1 100%; }

  /* ---------- Brand strip ---------- */
  .brand-strip .container { gap: 24px; }
  .brand-strip img { height: 18px; }

  /* ---------- Footer (style fidèle Bowflex, aligné à gauche) ---------- */
  .ftr-jrny { padding: 24px 16px; }
  .ftr-jrny-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 16px 0;
  }
  .ftr-jrny-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #e32202 0%, #6e1cff 100%);
  }
  .ftr-jrny-text { min-width: 0; font-size: 0.95rem; }
  .ftr-jrny-cta { display: block; width: 100%; }

  .ftr-logo-row { padding: 32px 0 16px; }
  .ftr-logo-row > div { padding: 0 24px 16px; }
  .ftr-logo-row img { height: 24px; }

  .ftr-links-wrap { padding: 24px 0; }
  .ftr-links {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 24px 24px;
  }
  .ftr-col {
    border-bottom: 1px solid var(--c-gray-400);
    padding: 16px 0;
  }
  .ftr-col:last-child { border-bottom: none; }
  .ftr-col h5 { margin-bottom: 12px; }

  .ftr-brands { padding: 24px 0 40px; }
  .ftr-brands-inner { padding: 0 24px; text-align: left; }
  .ftr-brands-logos { gap: 24px; }
  .ftr-brands-logos img { height: 26px; }

  .ftr-legal {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px 24px;
    gap: 12px;
  }
  .ftr-legal ul { gap: 16px; }
  .ftr-legal ul li { padding-right: 16px; }

  /* ---------- Pages catégories (Product Line) ---------- */
  .pl-subnav {
    padding: 12px 0;
  }
  .pl-subnav .container {
    gap: 20px;
    padding: 0 16px;
  }
  .pl-subnav a { font-size: 0.85rem; }

  .pl-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    min-height: 0;
    max-height: 600px;
    margin-bottom: 24px;
  }
  .pl-hero::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
  }
  .pl-hero-content {
    padding: 0 24px;
    justify-content: flex-end;
    padding-bottom: 32px;
  }
  .pl-hero-tagline {
    font-size: 4rem;
    margin-bottom: 12px;
    line-height: 0.9;
  }
  .pl-hero h1 { font-size: 1.4rem; }

  .pl-card { margin-bottom: 8px; }
  .pl-card .container,
  .pl-card.reverse .container {
    flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }
  .pl-card .pl-card-img,
  .pl-card .pl-card-text { flex: 1 1 100%; padding: 0; }
  .pl-card h2 { font-size: 1.6rem; }
  .pl-card .pl-desc { font-size: 0.95rem; margin-bottom: 16px; }
  .pl-icons { gap: 6px; margin-bottom: 16px; }
  .pl-icons .label { font-size: 0.85rem; }
  .pl-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .pl-cta-row .btn { width: 100%; min-width: 0; }
  .pl-watch-video { justify-content: center; }

  .pl-compare-cta { padding: 32px 16px; }
  .pl-compare-cta h2 { font-size: 1.4rem; }

  .pl-awards { padding: 40px 16px; }
  .pl-awards img { height: 80px; }
  .pl-awards h2 { font-size: 1.4rem; }

  /* Tableau comparatif scrollable horizontal */
  .pl-compare-table { padding: 40px 0; }
  .pl-compare-table .container { padding: 0 16px; }
  .pl-compare-table table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .pl-compare-table thead img { max-width: 90px; }
  .pl-compare-table th, .pl-compare-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
    min-width: 110px;
    white-space: normal;
  }
  .pl-compare-table tbody th { min-width: 140px; text-align: left; }

  /* ---------- Page produit (PDP) ---------- */
  .breadcrumb { padding: 12px 16px; font-size: 0.8rem; }
  .pdp-main { padding: 24px 0 48px; }
  .pdp-main .container { padding: 0 16px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 24px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs {
    order: 2;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .pdp-main-image { order: 1; aspect-ratio: 1 / 1; }
  .pdp-main-image img { padding: 16px; }
  .pdp-thumbs button { flex: 0 0 60px; }
  .pdp-purchase h1 { font-size: 1.6rem; }
  .pdp-purchase .price { font-size: 1.5rem; }
  .pdp-actions .btn { width: 100%; min-width: 0; }

  .feature-banner { min-height: 320px; padding: 40px 0; }
  .feature-banner .container { padding: 0 16px; }
  .feature-banner h2 { font-size: 1.5rem; }
  .feature-banner p { font-size: 0.95rem; }
  .feature-banner.right .banner-content { text-align: left; margin-left: 0; }
  .feature-banner::before, .feature-banner.right::before {
    background: rgba(0,0,0,0.6);
  }

  .specs-section { padding: 40px 0; }
  .specs-section .container { padding: 0 16px; }
  .specs-table dl { grid-template-columns: 1fr; }
  .specs-table dt {
    background: var(--c-gray-200);
    padding: 12px 16px 4px;
    font-weight: 600;
  }
  .specs-table dd { padding: 4px 16px 12px; }

  .included-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .included-item { padding: 12px; }
  .included-item .label { font-size: 0.8rem; }

  .reviews-section, .suggested-section { padding: 40px 0; }
  .reviews-section .container, .suggested-section .container { padding: 0 16px; }

  /* Product grid (anciennes cartes) */
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card .body { padding: 16px; }
  .product-card h3 { font-size: 1.2rem; }

  /* CTA strip */
  .cta-strip { padding: 40px 16px; }
  .cta-strip h2 { font-size: 1.6rem; }
  .cta-strip p { font-size: 1rem; }

  /* Page banner pages utilitaires */
  .page-banner { padding: 64px 16px 48px; }
  .page-banner h1 { font-size: 2rem; }
  .page-banner p { font-size: 1rem; }

  /* Stores */
  .store-grid { grid-template-columns: 1fr; gap: 12px; }
  .store-card { padding: 20px; }

  /* Form contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 0 16px; }
  .feature-list { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 28px; padding: 0 16px; }
}

  /* ---------- Page Awards ---------- */
  .awards-hero { margin-bottom: 32px; }
  .awards-hero img.hero-img { max-height: 280px; }
  .awards-hero h1 { font-size: 2.4rem; bottom: 16px; }
  .trophy-case { padding: 0 16px 32px; }
  .trophy-case h2 { font-size: 1.8rem; }
  .line-red { margin-bottom: 32px; }
  .trophy-list { gap: 32px; }
  /* Garder le côte-à-côte tant qu'on a la place — passe en colonne uniquement sous 540px (règle plus haut) */
  .trophy-row { gap: 24px; }
  .trophy-img img { max-height: 200px; }
  .trophy-text { font-size: 0.9rem; }
  .trophy-text .btn-read { padding: 12px 32px; font-size: 0.85rem; }
  .media-contact { padding: 40px 16px; }

  /* Mégamenu liste de liens responsive */
  .mega-link-list { padding: 16px 24px; }
  .mega-link-list a { padding: 14px 16px; }

  /* ---------- Page JRNY ---------- */
  .jrny-hero { padding: 48px 16px; }
  .jrny-hero img.jrny-logo { height: 40px; }
  .jrny-hero h1 { font-size: 1.6rem; }
  .jrny-hero-cta .btn { width: 100%; min-width: 0; }
  .jrny-stores { flex-direction: column; align-items: stretch; }
  .jrny-stores a { justify-content: center; }

  .jrny-experience { padding: 40px 0; }
  .jrny-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .jrny-card { padding: 20px 16px; }

  .jrny-compat { padding: 40px 0; }
  .jrny-cat-icons {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .jrny-cat-icon { padding: 20px 12px; }
  .jrny-cat-icon img { height: 48px; }

  .jrny-feature { padding: 40px 0; }
  .jrny-feature .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  .jrny-feature.reverse .feature-grid { direction: ltr; }
  .jrny-feature-text h2 { font-size: 1.5rem; }

  .jrny-prods { padding: 40px 0; }
  .jrny-prods .container { padding: 0 16px; }
  .jrny-tabs {
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    white-space: nowrap;
  }
  .jrny-tabs button { font-size: 0.9rem; }
  .jrny-prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .jrny-prod-card { padding: 12px; }

  .jrny-reviews { padding: 40px 0; }
  .jrny-reviews-grid { grid-template-columns: 1fr; padding: 0 16px; }

  .jrny-faq { padding: 40px 0; }
  .jrny-faq .container { padding: 0 16px; }
  .faq-item summary { font-size: 1rem; padding: 16px 0; }

  .jrny-trial-cta { padding: 48px 16px; }
  .jrny-trial-cta h2 { font-size: 1.5rem; }

  /* Mini-mégamenu JRNY responsive */
  .mega-menu.mega-menu-sm {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-top: none;
    background: var(--c-gray-50);
  }
}

/* ---------- Très petits écrans ---------- */
@media (max-width: 480px) {
  .category-card {
    flex: 1 1 calc(50% - 8px);
  }
  .pl-hero-tagline { font-size: 3rem; }
  .hero h1 { font-size: 1.6rem; }
  .pdp-thumbs button { flex: 0 0 52px; }
  .included-grid { grid-template-columns: 1fr; }
  .pl-subnav .container { gap: 16px; }
  .pl-subnav a { font-size: 0.8rem; }
}

/* ============================================================
   PDP feature grid (cartes feature pour les pages produit)
   ============================================================ */
.pdp-tagline-line {
  text-align: center;
  font-size: 1.25rem;
  color: var(--c-gray-700, #5f6368);
  margin: 32px auto;
  max-width: 800px;
}

.pdp-feature-grid-section {
  padding: 48px 0;
  background: #fff;
}

.pdp-feature-grid-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pdp-feature-grid-section .section-header h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #000;
}

/* Carousel horizontal scrollable (snap) - sans scrollbar visible */
/* === Carousel header avec titre + fleches navigation === */
.pdp-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 24px 16px;
}
.pdp-carousel-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: #000;
}
.pdp-carousel-header.dark h2 { color: #fff; }
.pdp-carousel-arrows { display: flex; gap: 8px; }
.pdp-carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d0d0d0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.15s ease;
}
.pdp-carousel-arrow:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.pdp-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pdp-carousel-header.dark .pdp-carousel-arrow {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.pdp-carousel-header.dark .pdp-carousel-arrow:hover {
  background: #fff;
  color: #000;
}

/* === Carousel horizontal scrollable (snap, scrollbar cachee) === */
.pdp-feature-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 32px;
  margin: 0 auto;
  max-width: 1600px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pdp-feature-grid::-webkit-scrollbar { display: none; }

.pdp-feature-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.pdp-feature-card:hover {
  transform: translateY(-4px);
}
.pdp-feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f5f5f5;
  border-radius: 8px;
}
.pdp-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 16px 4px 8px;
  color: #000;
  line-height: 1.3;
}
.pdp-feature-card p {
  font-size: 0.92rem;
  color: var(--c-gray-700, #5f6368);
  margin: 0 4px 20px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pdp-carousel-header { padding: 24px 16px 12px; }
  .pdp-carousel-header h2 { font-size: 1.5rem; }
  .pdp-feature-grid { gap: 12px; padding: 8px 16px 16px; }
  .pdp-feature-card { flex: 0 0 220px; }
  .pdp-feature-card h3 { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .pdp-feature-card { flex: 0 0 75%; }
}

/* Section "JRNY adaptive fitness" : grille fond noir */
.jrny-workouts-section {
  background: #000;
  color: #fff;
  padding: 64px 24px;
}
.jrny-workouts-section .pdp-carousel-header {
  padding: 0 24px 24px;
  max-width: 1600px;
}
.jrny-workouts-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.jrny-workouts-grid::-webkit-scrollbar { display: none; }

.jrny-workout-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.jrny-workout-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.jrny-workout-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.jrny-workout-card p {
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .jrny-workouts-section { padding: 40px 0; }
  .jrny-workouts-section .pdp-carousel-header { padding: 0 16px 16px; }
  .jrny-workouts-grid { gap: 12px; padding: 0 16px 12px; }
  .jrny-workout-card { flex: 0 0 280px; }
}
@media (max-width: 480px) {
  .jrny-workout-card { flex: 0 0 80%; }
}

/* ============================================================
   PDP : Sub-navigation, JRNY trial banner, video play overlay
   ============================================================ */

/* === Sub-navigation tabs (Bikes Home | IC Bike SEi | C7 Bike) === */
.pl-subnav {
  background: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 0;
}
.pl-subnav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pl-subnav a {
  padding: 16px 20px;
  text-decoration: none;
  color: #5f6368;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.15s ease;
}
.pl-subnav a:hover {
  color: #000;
}
.pl-subnav a.active {
  color: #000;
  font-weight: 600;
  border-bottom-color: #000;
}

/* === JRNY trial banner (gradient outline) === */
.jrny-trial-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin: 16px 0 24px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #ff8a00 0%, #e52e71 50%, #4a90e2 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.jrny-trial-banner img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}
.jrny-trial-banner div {
  display: flex;
  flex-direction: column;
}
.jrny-trial-banner strong {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
}
.jrny-trial-banner span {
  font-size: 0.875rem;
  color: #5f6368;
}

/* === Video play overlay sur les thumbnails === */
.pdp-thumbs button {
  position: relative;
}
.thumb-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* === Bouton "Voir la démonstration" sous la galerie === */
.pdp-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 16px auto 0;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.15s ease;
  width: max-content;
}
.pdp-watch-video:hover {
  background: #000;
  color: #fff;
}
.pdp-watch-video svg circle {
  fill: rgba(0,0,0,0.7);
}
.pdp-watch-video:hover svg circle {
  fill: rgba(255,255,255,0.2);
}
/* === Bouton video : place sous la grille gallery (col 2 grid) === */
.pdp-gallery .pdp-watch-video {
  grid-column: 1 / -1;
  justify-self: center;
}

/* === Section "L'essentiel" (features bullet list) === */
.pdp-features-section {
  padding: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.pdp-features-section .section-header h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pl-subnav .container {
    padding: 0 16px;
  }
  .pl-subnav a {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  .jrny-trial-banner {
    padding: 12px 16px;
  }
  .jrny-trial-banner img { width: 48px; }
}

/* ============================================================
   PDP Buy block : Product Overview + Also Included
   ============================================================ */
.product-overview,
.product-also-included {
  margin: 24px 0;
}
.product-overview h3,
.product-also-included h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px;
}
.product-overview ul,
.product-also-included ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.product-overview li,
.product-also-included li {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.6;
  padding: 4px 0;
}
.product-also-included {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 24px;
}
.product-also-included h3 {
  margin-bottom: 8px;
}

/* Le bouton "Voir la démonstration" ne s'écrase plus la grille gallery */
.pdp-gallery .pdp-watch-video {
  grid-column: 1 / -1;
  justify-self: center;
}

/* ============================================================
   CART : Add-to-cart button + WhatsApp green + cart icon + drawer
   ============================================================ */

/* Bouton "Ajouter au panier" (form) - noir BowFlex, full width */
.pdp-actions form { width: 100%; margin: 0 0 12px; }
.btn-add-to-cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn-add-to-cart:hover { background: #1a1a1a; border-color: #1a1a1a; }
.btn-add-to-cart:disabled { background: #999; border-color: #999; cursor: not-allowed; }

/* Bouton "Nous contacter via WhatsApp" - VERT WhatsApp, full width sous le panier */
.btn-whatsapp-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #25D366;
  color: #fff !important;
  border: 2px solid #25D366;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-whatsapp-cta:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff !important;
}

/* === Header : icône panier === */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease;
}
.cart-toggle:hover { color: #000; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e32202;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count[hidden] { display: none; }

/* === Cart drawer (slide-out à droite) === */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cart-drawer-backdrop.open { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e5e5;
}
.cart-drawer-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.cart-drawer-count {
  color: #5f6368;
  font-weight: 400;
  font-size: 1rem;
}
.cart-drawer-close {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 50%;
  transition: background 0.15s ease;
}
.cart-drawer-close:hover { background: #f5f5f5; }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #5f6368;
  gap: 16px;
}
.cart-empty svg { color: #c0c0c0; }
.cart-empty .btn { margin-top: 8px; padding: 12px 32px; }

.cart-items { list-style: none; padding: 0; margin: 0; }
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cart-item-title:hover { text-decoration: underline; }
.cart-item-price {
  font-size: 0.95rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 8px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty button:hover { background: #e5e5e5; }
.cart-item-qty span { padding: 0 12px; font-size: 0.95rem; min-width: 24px; text-align: center; }
.cart-item-remove {
  margin-left: auto;
  color: #5f6368;
}
.cart-item-remove:hover { color: #e32202 !important; background: transparent !important; }

.cart-drawer-foot {
  border-top: 1px solid #e5e5e5;
  padding: 20px 24px;
  background: #fafafa;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 1rem;
}
.cart-subtotal strong { font-size: 1.15rem; }
.cart-shipping-note {
  font-size: 0.85rem;
  color: #5f6368;
  margin: 0 0 16px;
}
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  margin-bottom: 8px;
  text-align: center;
  display: block;
}
.cart-view-btn {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
  text-align: center;
  display: block;
}

@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
}

/* === Cart loading state === */
.cart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
}
.cart-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top-color: #000;
  border-radius: 50%;
  animation: cart-spin 0.6s linear infinite;
}
@keyframes cart-spin {
  to { transform: rotate(360deg); }
}

/* Animation d'apparition du drawer plus rapide et fluide */
.cart-drawer { transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-drawer-backdrop { transition: opacity 0.15s ease; }

/* Confirmation button "Ajouté" en vert */
.btn-add-to-cart:disabled:not([disabled-reason="loading"]) {
  background: #25D366 !important;
  border-color: #25D366 !important;
  cursor: default;
}

/* ============================================================================
   SEARCH OVERLAY (live search) + page de resultats
   ============================================================================ */

/* === Overlay : full-screen modal === */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.search-overlay.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.search-overlay-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px 20px;
}

/* === Top : input + close === */
.search-overlay-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 16px;
  border-bottom: 2px solid #000;
  margin-bottom: 24px;
}
.search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.search-form-icon {
  color: #666;
  flex-shrink: 0;
}
.search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  padding: 12px 0;
  background: transparent;
  font-family: inherit;
  color: #000;
}
.search-form input::placeholder {
  color: #999;
}
.search-clear {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  flex-shrink: 0;
}
.search-clear:hover { background: #e0e0e0; color: #000; }
.search-close {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  padding: 8px 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-close:hover { color: #555; }
.search-close-icon { display: none; }

/* === Body : empty / loading / results === */
.search-overlay-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Empty state */
.search-empty-state { padding: 16px 0; }
.search-empty-title {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 16px;
}
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.search-sugg-label {
  font-size: 0.85rem;
  color: #666;
  margin-right: 4px;
}
.search-sugg-tag {
  display: inline-flex;
  padding: 8px 14px;
  background: #f5f5f5;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #000;
  text-decoration: none;
  transition: background 0.15s ease;
}
.search-sugg-tag:hover {
  background: #000;
  color: #fff;
}

/* Loading */
.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

/* Sections */
.search-section {
  margin-bottom: 32px;
}
.search-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  margin: 0 0 12px;
  font-weight: 600;
}

/* Products grid */
.search-products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.search-product-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  transition: all 0.15s ease;
}
.search-product-card:hover {
  border-color: #000;
  background: #fafafa;
}
.search-product-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}
.search-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-product-info { flex: 1; min-width: 0; }
.search-product-info h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.search-product-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
}
.search-product-type {
  font-size: 0.78rem;
  color: #666;
  margin-top: 2px;
}

/* Pages list */
.search-pages {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-pages li {
  border-bottom: 1px solid #f0f0f0;
}
.search-pages a {
  display: block;
  padding: 12px 8px;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
}
.search-pages a:hover {
  background: #fafafa;
  padding-left: 16px;
}

/* See all */
.search-see-all {
  margin-top: 16px;
  padding: 16px 0;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.search-see-all a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.search-see-all a:hover { text-decoration: underline; }

/* No results */
.search-no-results {
  text-align: center;
  padding: 48px 16px;
  color: #666;
}
.search-no-results p:first-child {
  font-size: 1.05rem;
  color: #000;
  margin-bottom: 8px;
}
.search-no-results-sub { font-size: 0.9rem; }

/* === Search PAGE (templates/search.liquid) === */
.search-page {
  padding: 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.search-page-header { margin-bottom: 32px; }
.search-page-header h1 {
  font-size: 2rem;
  margin: 0 0 20px;
}
.search-page-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  max-width: 720px;
}
.search-page-form svg { color: #666; flex-shrink: 0; }
.search-page-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 10px 0;
  background: transparent;
  font-family: inherit;
}
.search-page-form button { flex-shrink: 0; min-width: auto; }
.search-page-count {
  margin-top: 16px;
  color: #555;
  font-size: 0.95rem;
}
.search-page-count em { font-style: normal; font-weight: 500; color: #000; }

.search-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.search-result-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.15s ease;
}
.search-result-card:hover {
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}
.search-result-img {
  display: block;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-result-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-result-type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
  font-weight: 600;
}
.search-result-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}
.search-result-body h3 a {
  color: #000;
  text-decoration: none;
}
.search-result-body h3 a:hover { text-decoration: underline; }
.search-result-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
}
.search-result-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}
.search-result-cta, .search-result-link {
  margin-top: auto;
  align-self: start;
}
.search-result-link {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.search-result-link:hover { text-decoration: underline; }
.search-result-page { background: #fafafa; }

.search-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.search-page-empty {
  text-align: center;
  padding: 64px 16px;
  color: #666;
}
.search-page-empty svg { color: #c0c0c0; margin-bottom: 16px; }
.search-page-empty h2 {
  font-size: 1.5rem;
  margin: 16px 0 8px;
  color: #000;
}
.search-page-empty p { margin: 8px 0; max-width: 480px; margin-left: auto; margin-right: auto; }
.search-page-suggestions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.search-page-suggestions .btn { min-width: auto; padding: 10px 20px; }


/* ============================================================
   Carrousel galerie produit (fleches, compteur, transitions)
   ============================================================ */
.pdp-main-image img {
  transition: opacity 0.18s ease;
}
.pdp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--c-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  color: var(--c-black);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pdp-nav:hover {
  background: var(--c-black);
  color: var(--c-white);
  transform: translateY(-50%) scale(1.06);
}
.pdp-nav.prev { left: 14px; }
.pdp-nav.next { right: 14px; }
.pdp-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .pdp-nav { width: 38px; height: 38px; }
  .pdp-nav.prev { left: 8px; }
  .pdp-nav.next { right: 8px; }
  .pdp-counter { bottom: 10px; right: 10px; }
}


/* ============================================================
   Fusion automatique des fonds d'images produits :
   le blanc des images se fond dans le fond gris des cadres
   ============================================================ */
.sel-img img,
.pdp-main-image img,
.pdp-thumbs img,
.mega-item .thumb img,
.mobile-menu-grid img,
.product-card .img-wrap img {
  mix-blend-mode: multiply;
}


/* ============================================================
   Barème livraison / installation (page produit)
   ============================================================ */
.delivery-box {
  border: 1px solid var(--c-gray-200);
  border-radius: 12px;
  padding: 18px;
  margin: 20px 0;
  background: #fff;
}
.delivery-head { margin-bottom: 14px; }
.delivery-head-title { display: block; font-weight: 700; font-size: 1rem; color: var(--c-black); }
.delivery-head-sub { display: block; font-size: 0.82rem; color: var(--c-gray-700); margin-top: 2px; }
.delivery-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.delivery-opt:hover { border-color: var(--c-gray-400); }
.delivery-opt.is-selected {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px #16a34a inset;
}
.delivery-opt input { position: absolute; opacity: 0; pointer-events: none; }
.delivery-opt-ico { font-size: 1.4rem; line-height: 1; }
.delivery-opt-main { flex: 1; min-width: 0; }
.delivery-opt-name { display: block; font-weight: 600; font-size: 0.95rem; color: var(--c-black); }
.delivery-opt-desc { display: block; font-size: 0.8rem; color: var(--c-gray-700); margin-top: 2px; }
.delivery-opt-price { font-weight: 700; font-size: 0.95rem; white-space: nowrap; color: var(--c-black); }
.delivery-opt-price.is-free { color: #16a34a; }
.delivery-summary {
  border: 1px solid var(--c-gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 14px;
}
.delivery-sum-row { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--c-gray-700); padding: 4px 0; }
.delivery-sum-row span:last-child { color: var(--c-black); font-weight: 500; }
.delivery-sum-row .is-free { color: #16a34a; font-weight: 600; }
.delivery-sum-total {
  border-top: 1px solid var(--c-gray-200);
  margin-top: 8px;
  padding-top: 12px;
  font-size: 1.05rem;
}
.delivery-sum-total span { font-weight: 700 !important; }
.delivery-sum-total span:last-child { color: #16a34a !important; font-size: 1.15rem; }
.delivery-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #1e40af;
}
