/* ============================================================
   BLOG ALTERSMOKE — WAHOU
   Home blog redesign. Ported from claude.ai/design bundle.
   Scoped via tokens + .ab-page--home-wahou wrapper on capitalize.
   ============================================================ */

.ab-page--home-wahou {
  /* Escape .ab-page max-width 1200 + theme padding to go full-bleed. */
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  /* Brand color tokens — fallbacks if theme does not define them */
  --as-red: #E62249;
  --as-red-hover: #C51F41;
  --as-ink: #0F0F0F;
  --as-charcoal: #202020;
  --as-graphite: #353535;
  --as-mute: #777777;
  --as-line: #DDE1E3;
  --as-surface: #EDEDF3;
  --as-cream: #FFEFD0;
  --as-gradient-card: linear-gradient(159deg, #000000 20.53%, #202020 85.89%);
  --fg-primary: var(--as-ink);
  --fg-secondary: var(--as-graphite);
  /* Radii + motion */
  --r-sm: 8px;
  --r-lg: 16px;
  --r-pill: 999px;
  --ease-std: cubic-bezier(.2, .8, .2, 1);
  background: var(--as-surface);
  color: var(--fg-primary);
}
.ab-page--home-wahou h1,
.ab-page--home-wahou h2,
.ab-page--home-wahou h3,
.ab-page--home-wahou h4 { text-transform: none; }
.ab-page--home-wahou em { font-style: italic; font-weight: 400; color: var(--as-red); }

/* Generic gradient placeholder (replace once real cover available) */
.ab-page--home-wahou .ph {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #2a2a2e 0%, #0f0f0f 100%);
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
}
.ab-page--home-wahou .ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(230, 34, 73, 0.32) 0%, transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(230, 34, 73, 0.18) 0%, transparent 55%);
  mix-blend-mode: screen;
}
.ab-page--home-wahou .ph--cover {
  background-size: cover;
  background-position: center;
}
.ab-page--home-wahou .ph--cover::before { display: none; }

/* Section wrapper kept around w-* below */
/* ============================================================
   SHARED RULE (section heading)
   ============================================================ */
.w-section {
  padding: 64px 64px;
  background: #fff;
  border-top: 1px solid var(--as-line);
}
.w-section--surface { background: var(--as-surface); }
.w-section--dark    { background: var(--as-ink); color: #fff; border-top: 0; }
.w-section--cream   { background: var(--as-cream); border-top: 0; }

.w-rule {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 22px;
  margin-bottom: 36px;
  border-bottom: 1.5px solid var(--as-ink);
}
.w-rule h2 {
  font-size: 44px; line-height: 1; font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.w-rule__num {
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
  display: inline-block;
  margin-right: 12px;
  vertical-align: 0.18em;
}
.w-rule__lede {
  font-size: 15px; line-height: 1.5; color: var(--fg-secondary);
  margin: 0; max-width: 420px;
  align-self: end; padding-bottom: 4px;
}
.w-rule__more, .w-rule__updated {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 500;
  color: var(--as-ink);
  align-self: end; padding-bottom: 6px;
  white-space: nowrap;
}
.w-rule__more:hover { color: var(--as-red); text-decoration: none; }
.w-rule__filters {
  align-self: end; display: flex; gap: 6px; padding-bottom: 4px;
}
.w-rule--light { border-bottom-color: rgba(255,255,255,.30); }
.w-rule--light h2 { color: #fff; }
.w-rule__lede--light { color: rgba(255,255,255,.70); }
.w-rule__updated { color: rgba(255,255,255,.55); }
.w-section--dark .w-rule__more { color: #fff; }

.w-pill {
  background: #fff; border: 1px solid var(--as-line); color: var(--fg-primary);
  padding: 7px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all .25s var(--ease-std); font-family: inherit;
}
.w-pill.is-on, .w-pill:hover { background: var(--as-ink); color: #fff; border-color: var(--as-ink); }

/* ============================================================
   1. HERO
   ============================================================ */
.w-hero {
  background: var(--as-ink);
  color: #fff;
  padding: 28px 64px 56px;
  position: relative;
  overflow: hidden;
}
.w-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, rgba(230,34,73,.16) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(230,34,73,.08) 0%, transparent 45%);
}
.w-hero > * { position: relative; z-index: 1; }

.w-hero__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 500;
}
.w-hero__crumb { color: rgba(255,255,255,.60); }
.w-hero__crumb a { color: rgba(255,255,255,.60); }
.w-hero__crumb a:hover { color: var(--as-red); text-decoration: none; }
.w-hero__crumb strong { color: #fff; font-weight: 600; }
.w-hero__edition { color: rgba(255,255,255,.60); letter-spacing: 2px; }
.w-hero__live { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); }
.w-hero__pulse {
  width: 8px; height: 8px; border-radius: 999px; background: #16C172;
  box-shadow: 0 0 0 0 rgba(22,193,114,.6);
  animation: w-pulse 2s var(--ease-std) infinite;
}
@keyframes w-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,193,114,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(22,193,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,193,114,0); }
}

.w-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}

.w-hero__feat {
  display: flex; flex-direction: column; gap: 28px;
}
.w-hero__cover {
  display: block; position: relative;
  border-radius: var(--r-lg); overflow: hidden;
}
.w-hero__cover .ph { border-radius: var(--r-lg); }
.w-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.35) 100%);
}
.w-hero__chip {
  position: absolute; top: 18px; left: 18px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px; border-radius: var(--r-sm);
  backdrop-filter: blur(8px);
}

.w-hero__body { display: flex; flex-direction: column; gap: 18px; }
.w-hero__eyebrow {
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-hero__h1 {
  font-size: 64px; line-height: 1.02; font-weight: 500;
  letter-spacing: -0.035em;
  margin: 0;
  color: #fff;
  text-wrap: balance;
}
.w-hero__lede {
  font-size: 17px; line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin: 0; max-width: 720px;
}
.w-hero__by {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 4px;
}
.w-hero__byav { width: 48px; height: 48px; }
.w-hero__byav .ph { border-radius: 999px; aspect-ratio: 1/1; }
.w-hero__bytxt { display: flex; flex-direction: column; gap: 2px; }
.w-hero__bytxt strong { font-size: 14px; font-weight: 600; color: #fff; }
.w-hero__bytxt span { font-size: 12px; color: rgba(255,255,255,.55); }
.w-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--as-red); color: #fff;
  padding: 12px 18px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s var(--ease-std);
}
.w-hero__cta:hover { background: var(--as-charcoal); color: #fff; text-decoration: none; }

/* side list */
.w-hero__side {
  padding-left: 32px;
  border-left: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column;
}
.w-hero__sidehead {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.w-hero__sideeyebrow {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.6px;
  color: var(--as-red); font-weight: 600;
}
.w-hero__sidecount {
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.6px;
  color: rgba(255,255,255,.50); font-weight: 500;
}
.w-hero__sidelist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.w-hero__sidelist li {
  display: grid; grid-template-columns: 28px 1fr; column-gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.w-hero__sidelist li:last-child { border-bottom: 0; }
.w-hero__sidenum {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.40);
  letter-spacing: 1.6px;
  padding-top: 16px;
}
.w-hero__sidecat {
  display: block;
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
  margin-bottom: 4px;
}
.w-hero__sidelist a {
  display: block;
  font-size: 14px; line-height: 1.35; color: #fff;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.w-hero__sidelist a:hover { color: var(--as-red); text-decoration: none; }
.w-hero__sidemeta {
  display: block; margin-top: 4px;
  font-size: 11px; color: rgba(255,255,255,.45);
}
.w-hero__sideall {
  margin-top: 18px;
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
  color: #fff; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.w-hero__sideall:hover { color: var(--as-red); text-decoration: none; }

/* ============================================================
   1.b SEARCH — large discovery bar inside hero
   ============================================================ */
.w-search {
  margin-top: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.w-search__lbl {
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,.50); font-weight: 600;
}
.w-search__row {
  display: grid; grid-template-columns: 220px 1fr auto;
  gap: 8px; align-items: stretch;
}
.w-search__cat {
  position: relative;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  display: flex;
}
.w-search__cat::after {
  content: "▾"; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: rgba(255,255,255,.55);
  pointer-events: none; font-size: 11px;
}
.w-search__cat select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0; color: #fff;
  font-family: inherit; font-size: 14px;
  padding: 14px 36px 14px 16px;
  width: 100%; outline: none; cursor: pointer;
}
.w-search__cat select option { color: var(--as-ink); }
.w-search input[type="search"] {
  background: #fff; border: 0; border-radius: var(--r-sm);
  padding: 14px 18px; font-family: inherit; font-size: 15px;
  outline: none; color: var(--as-ink);
  min-width: 0;
}
.w-search input[type="search"]::placeholder { color: var(--as-mute); }
.w-search button {
  background: var(--as-red); color: #fff; border: 0; border-radius: var(--r-sm);
  padding: 0 22px; font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s var(--ease-std);
  white-space: nowrap;
}
.w-search button:hover { background: var(--as-charcoal); }
.w-search__sugg {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  align-items: center;
  font-size: 12px; color: rgba(255,255,255,.50);
}
.w-search__sugg span { letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.w-search__sugg a {
  color: rgba(255,255,255,.85); font-size: 12px;
  text-decoration: underline; text-decoration-color: rgba(255,255,255,.18);
  text-underline-offset: 3px;
}
.w-search__sugg a:hover { color: #fff; text-decoration-color: var(--as-red); }

/* ============================================================
   2. TICKER
   ============================================================ */
.w-ticker {
  background: var(--as-red);
  color: #fff;
  overflow: hidden;
}
.w-ticker__rail {
  display: flex; align-items: center; gap: 32px;
  padding: 12px 0;
  white-space: nowrap;
  animation: w-ticker 60s linear infinite;
  font-size: 13px; font-weight: 500;
  width: max-content;
}
.w-ticker__item { display: inline-flex; align-items: center; gap: 12px; }
.w-ticker__tag {
  background: #000; color: #fff;
  padding: 3px 8px;
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600;
  border-radius: var(--r-sm);
}
.w-ticker__sep { color: rgba(255,255,255,.55); font-size: 9px; }
@keyframes w-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   3. RUBRICS
   ============================================================ */
.w-rubrics {
  background: #fff;
  padding: 36px 64px 36px;
  border-bottom: 1px solid var(--as-line);
}
.w-rubrics__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 22px;
}
.w-rubrics__h {
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.w-rubrics__num {
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
  display: inline-block; margin-right: 12px;
  vertical-align: 0.16em;
}
.w-rubrics__total {
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--as-mute); font-weight: 500;
  padding-bottom: 4px;
}
.w-rubrics__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.w-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--as-surface);
  border: 1px solid var(--as-line);
  border-radius: var(--r-pill);
  color: var(--as-ink);
  font-size: 13px; font-weight: 500;
  transition: all .2s var(--ease-std);
}
.w-chip b {
  font-size: 11px; color: var(--as-mute); font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.w-chip:hover, .w-chip.is-on {
  background: var(--as-ink); color: #fff; border-color: var(--as-ink);
  text-decoration: none;
}
.w-chip:hover b, .w-chip.is-on b { color: rgba(255,255,255,.65); }

/* ============================================================
   4. PICKS — sélection rédac (lead + 3 row cards)
   ============================================================ */
.w-picks {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 32px;
}

/* Lead — big featured */
.w-pick--lead {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease-std), box-shadow .25s var(--ease-std);
}
.w-pick--lead:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15,15,15,.08); }
.w-pick__media { position: relative; display: block; overflow: hidden; }
.w-pick__media .ph { border-radius: 0; }
.w-pick__chip {
  position: absolute; top: 18px; left: 18px;
  background: rgba(0,0,0,.78); color: #fff;
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px; border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
}
.w-pick__body { padding: 28px 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.w-pick__cat {
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-pick__h { margin: 0; }
.w-pick__h a {
  font-size: 30px; line-height: 1.15; font-weight: 500;
  letter-spacing: -0.02em; color: var(--as-ink);
  text-wrap: balance;
}
.w-pick__h a:hover { color: var(--as-red); text-decoration: none; }
.w-pick__excerpt {
  font-size: 15px; line-height: 1.55; color: var(--fg-secondary);
  margin: 2px 0 0;
}

.w-pick__rating {
  display: flex; align-items: baseline; gap: 10px;
  padding: 12px 0; margin: 6px 0 0;
  border-top: 1px solid var(--as-line);
  border-bottom: 1px solid var(--as-line);
}
.w-pick__rstars { color: var(--as-red); letter-spacing: 2px; font-size: 14px; }
.w-pick__rating strong { font-size: 16px; font-weight: 600; color: var(--as-ink); font-variant-numeric: tabular-nums; }
.w-pick__rdiv { width: 1px; height: 12px; background: var(--as-line); display: inline-block; }
.w-pick__rby { font-size: 12px; color: var(--as-mute); letter-spacing: 0.5px; }

.w-pick__by {
  display: grid; grid-template-columns: 44px 1fr auto;
  align-items: center; gap: 14px;
  margin-top: 4px;
}
.w-pick__byav { width: 44px; height: 44px; }
.w-pick__byav .ph { border-radius: 999px; aspect-ratio: 1/1; }
.w-pick__bytxt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.w-pick__bytxt strong { font-size: 14px; font-weight: 600; color: var(--as-ink); }
.w-pick__bytxt span { font-size: 12px; color: var(--as-mute); }
.w-pick__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--as-ink); color: #fff;
  padding: 12px 18px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s var(--ease-std);
}
.w-pick__cta:hover { background: var(--as-red); color: #fff; text-decoration: none; }

/* Side stack — 3 horizontal cards */
.w-pick__stack { display: flex; flex-direction: column; gap: 16px; }
.w-pick--row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s var(--ease-std), box-shadow .25s var(--ease-std);
}
.w-pick--row:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(15,15,15,.06); }
.w-pick__media--row { display: block; height: 100%; }
.w-pick__media--row .ph { aspect-ratio: auto; height: 100%; border-radius: 0; }
.w-pick__body--row {
  padding: 16px 18px 16px 0;
  gap: 6px;
  justify-content: center;
}
.w-pick__h--row a {
  font-size: 17px; line-height: 1.3; font-weight: 500;
  letter-spacing: -0.005em;
}
.w-pick__excerpt--row {
  font-size: 13px; line-height: 1.5; color: var(--fg-secondary);
  margin: 4px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.w-pick__meta {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  font-size: 11px; color: var(--as-mute);
  margin-top: auto;
}
.w-pick__meta strong { color: var(--as-ink); font-weight: 500; }
.w-pick__dot { color: var(--as-line); }

/* ============================================================
   5. GRID — articles récents
   ============================================================ */
.w-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.w-card {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-std), box-shadow .25s var(--ease-std);
}
.w-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15,15,15,.08); }
.w-card__media { display: block; }
.w-card__media .ph { border-radius: 0; aspect-ratio: 3/2; }
.w-card__body {
  padding: 18px 20px 18px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.w-card__cat {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-card__h { margin: 0; }
.w-card__h a {
  font-size: 17px; line-height: 1.3; font-weight: 500;
  letter-spacing: -0.005em; color: var(--as-ink);
  text-wrap: balance;
}
.w-card__h a:hover { color: var(--as-red); text-decoration: none; }
.w-card__foot {
  margin-top: auto;
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--as-line);
  font-size: 12px; color: var(--as-mute);
}
.w-card__foot strong { color: var(--as-ink); font-weight: 500; }
.w-card__dot { color: var(--as-line); }

.w-loadmore {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
  margin-top: 40px;
}
.w-loadmore__count { font-size: 12px; color: var(--as-mute); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   6. TOP 5 — ranking propre, sans barre de progression
   ============================================================ */
.w-top5 {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.w-top5__row {
  display: grid;
  grid-template-columns: 80px 72px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  transition: background .2s var(--ease-std);
}
.w-top5__row:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.w-top5__row:hover { background: rgba(255,255,255,.03); }
.w-top5__rank {
  font-size: 56px; line-height: 1; font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.85);
  font-variant-numeric: tabular-nums;
}
.w-top5__row:first-child .w-top5__rank { color: var(--as-red); }
.w-top5__thumb { width: 72px; height: 72px; }
.w-top5__thumb .ph { border-radius: var(--r-sm); aspect-ratio: 1/1; }
.w-top5__body {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.w-top5__cat {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-top5__title {
  font-size: 17px; line-height: 1.3; font-weight: 500;
  letter-spacing: -0.005em; color: #fff;
  text-wrap: balance;
}
.w-top5__title:hover { color: var(--as-red); text-decoration: none; }
.w-top5__by { font-size: 11px; color: rgba(255,255,255,.55); }
.w-top5__by strong { color: rgba(255,255,255,.85); font-weight: 500; }

.w-top5__views {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 24px;
}
.w-top5__views strong {
  font-size: 28px; line-height: 1; color: #fff; font-weight: 500;
  letter-spacing: -0.02em;
}
.w-top5__row:first-child .w-top5__views strong { color: var(--as-red); }
.w-top5__views span {
  font-size: 10px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: 1.4px; font-weight: 500;
  line-height: 1.3;
  margin-top: 2px;
}

/* ============================================================
   7. RDV — prise de rendez-vous en boutique
   ============================================================ */
.w-rdv {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

/* LEFT — 3 steps + sujets fréquents */
.w-rdv__steps {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: flex; flex-direction: column;
}
.w-rdv__steps li {
  display: grid; grid-template-columns: 64px 1fr;
  align-items: center; gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--as-line);
}
.w-rdv__steps li:last-child { border-bottom: 1px solid var(--as-line); }
.w-rdv__no {
  font-size: 44px; line-height: 1; font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--as-red);
  font-variant-numeric: tabular-nums;
}
.w-rdv__steps strong {
  display: block; font-size: 19px; font-weight: 500;
  color: var(--as-ink); margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.w-rdv__steps span {
  font-size: 14px; line-height: 1.5;
  color: var(--fg-secondary);
}

.w-rdv__cases {}
.w-rdv__caseslbl {
  display: block;
  font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--as-mute); font-weight: 600;
  margin-bottom: 14px;
}
.w-rdv__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.w-rdv__chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: var(--r-pill);
  color: var(--as-ink);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0;
}

/* RIGHT — booking widget (dark card) */
.w-rdv__r {
  background: var(--as-gradient-card); color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 24px 48px rgba(15,15,15,.10);
}
.w-rdv__rhead {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.w-rdv__rlbl {
  font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-rdv__rfree {
  font-size: 13px; color: rgba(255,255,255,.70);
}

.w-rdv__field { display: flex; flex-direction: column; gap: 8px; }
.w-rdv__field label {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,.60); font-weight: 500;
}
.w-rdv__select {
  position: relative;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.10);
}
.w-rdv__select::after {
  content: "▾"; position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%); color: rgba(255,255,255,.55);
  pointer-events: none; font-size: 12px;
}
.w-rdv__select select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 0; color: #fff;
  font-family: inherit; font-size: 15px; font-weight: 500;
  padding: 14px 36px 14px 16px;
  width: 100%; outline: none; cursor: pointer;
}
.w-rdv__select select option { color: var(--as-ink); }

.w-rdv__locate {
  margin-top: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  padding: 11px 14px; border-radius: var(--r-sm);
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  transition: all .2s var(--ease-std);
}
.w-rdv__locate:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.35);
}
.w-rdv__locate svg { color: var(--as-red); }

.w-rdv__hint {
  display: grid; grid-template-columns: 16px 1fr;
  gap: 10px; align-items: start;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-sm);
  border: 1px dashed rgba(255,255,255,.14);
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,.70);
}
.w-rdv__hint svg { color: var(--as-red); margin-top: 3px; }

.w-rdv__cta {
  margin-top: 8px;
  background: var(--as-red); color: #fff; border: 0;
  padding: 18px 22px; border-radius: var(--r-sm);
  font-family: inherit; font-size: 14px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  transition: background .25s var(--ease-std);
}
.w-rdv__cta:hover { background: var(--as-charcoal); }
.w-rdv__legal {
  font-size: 12px; color: rgba(255,255,255,.55);
  text-align: center; line-height: 1.5;
}

/* ── Lot 11 : RDV booking front (parcours interactif) ─────────── */
.w-rdv__notice {
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.w-rdv__notice--warn {
  background: rgba(255, 153, 0, .14);
  color: rgba(255,255,255,.95);
}
.w-rdv__notice strong { font-size: 15px; font-weight: 700; }
.w-rdv__notice p { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.5; margin: 0; }
.w-rdv__notice .w-rdv__cta { margin-top: 4px; }

.w-rdv__date-picker {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.w-rdv__date {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background .2s var(--ease-std), border-color .2s var(--ease-std);
}
.w-rdv__date:hover { background: rgba(255,255,255,.14); }
.w-rdv__date--active {
  background: var(--as-red);
  border-color: var(--as-red);
  color: #fff;
}

.w-rdv__slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.w-rdv__slot {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px 8px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background .2s var(--ease-std), border-color .2s var(--ease-std);
}
.w-rdv__slot:hover:not([disabled]) { background: rgba(255,255,255,.14); }
.w-rdv__slot--active {
  background: var(--as-red);
  border-color: var(--as-red);
  color: #fff;
}
.w-rdv__slot--full,
.w-rdv__slot[disabled] {
  opacity: .35; cursor: not-allowed;
}
.w-rdv__slots-empty {
  color: rgba(255,255,255,.7);
  font-size: 13px; line-height: 1.5;
  padding: 8px 0;
}

.w-rdv__purpose-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.w-rdv__purpose-chip {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: background .2s var(--ease-std), border-color .2s var(--ease-std);
}
.w-rdv__purpose-chip:hover { background: rgba(255,255,255,.14); }
.w-rdv__purpose-chip--active {
  background: var(--as-red);
  border-color: var(--as-red);
  color: #fff;
}
.w-rdv__notelbl {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.w-rdv__purpose textarea {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #fff;
  font-family: inherit; font-size: 13px;
  padding: 10px 12px;
  resize: vertical;
}

.w-rdv__status {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px; line-height: 1.5;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}
.w-rdv__status[data-severity="error"] {
  background: rgba(225, 60, 60, .18);
  color: #ffe2e2;
}

.w-rdv__confirm {
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(64, 200, 120, .18);
  color: #d8ffe6;
  display: flex; flex-direction: column; gap: 6px;
}
.w-rdv__confirm strong { font-size: 15px; }
.w-rdv__confirm p { font-size: 13px; color: rgba(255,255,255,.85); margin: 0; line-height: 1.5; }

/* ============================================================
   8. PAIR — article → produit (article dominant)
   ============================================================ */
.w-pair {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.w-pair__item {
  background: #fff;
  border: 1px solid var(--as-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-std), box-shadow .25s var(--ease-std);
}
.w-pair__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15,15,15,.10);
}

/* article — the dominant top */
.w-pair__article {
  display: flex; flex-direction: column;
  color: inherit;
}
.w-pair__article:hover { text-decoration: none; }
.w-pair__article:hover .w-pair__title { color: var(--as-red); }
.w-pair__photo { display: block; }
.w-pair__photo .ph { border-radius: 0; }
.w-pair__body {
  padding: 26px 30px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.w-pair__cat {
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-pair__title {
  font-size: 26px; line-height: 1.2; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--as-ink); margin: 2px 0 0;
  text-wrap: balance;
  transition: color .2s var(--ease-std);
}
.w-pair__excerpt {
  font-size: 15px; line-height: 1.55; color: var(--fg-secondary);
  margin: 0;
}
.w-pair__by {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 14px; margin-top: 6px;
  border-top: 1px solid var(--as-line);
  font-size: 13px; color: var(--as-mute);
}
.w-pair__by strong { color: var(--as-ink); font-weight: 500; }
.w-pair__read {
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--as-ink); font-weight: 500;
  white-space: nowrap;
}
.w-pair__article:hover .w-pair__read { color: var(--as-red); }

/* product strip — natural extension at the bottom */
.w-pair__product {
  background: var(--as-gradient-card);
  color: #fff;
  display: block;
  padding: 18px 24px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  transition: background .25s var(--ease-std);
}
.w-pair__product:hover { text-decoration: none; }
.w-pair__plbl {
  display: block;
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
  margin-bottom: 12px;
}
.w-pair__prow {
  display: grid; grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center; gap: 16px;
}
.w-pair__pthumb {
  width: 72px; height: 72px;
  background: #F2F2F5;
  border-radius: var(--r-sm);
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
}
.w-pair__pthumb .ph {
  width: 100%; height: 100%; aspect-ratio: 1/1;
  border-radius: var(--r-sm);
}
.w-pair__pinfo { display: flex; flex-direction: column; min-width: 0; }
.w-pair__pinfo strong {
  font-size: 17px; font-weight: 600; color: #fff;
  letter-spacing: -0.005em; line-height: 1.2;
}
.w-pair__pbrand {
  font-size: 10px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 500;
  margin-top: 4px;
}
.w-pair__pspec {
  font-size: 12px; color: rgba(255,255,255,.78);
  margin-top: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.w-pair__pprice {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  text-align: right;
}
.w-pair__pprice strong {
  font-size: 22px; font-weight: 600; color: var(--as-red);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.w-pair__pcta {
  font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(255,255,255,.85); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}
.w-pair__product:hover .w-pair__pcta { color: #fff; }

.w-shop__foot {
  margin-top: 32px;
  padding: 18px 24px;
  background: var(--as-ink); color: rgba(255,255,255,.85);
  border-radius: var(--r-lg);
  font-size: 13px; text-align: center;
  letter-spacing: 0.2px;
}
.w-shop__foot strong { color: #fff; font-weight: 600; }

/* ============================================================
   7. NEWSLETTER MAGAZINE
   ============================================================ */
.w-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 80px 64px 96px;
  background: var(--as-surface);
  align-items: center;
  border-top: 1px solid var(--as-line);
}
.w-news__l { max-width: 480px; }
.w-news__eyebrow {
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}
.w-news__h {
  font-size: 48px; line-height: 1; font-weight: 500;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
}
.w-news__p {
  font-size: 16px; line-height: 1.5; color: var(--fg-secondary);
  margin: 0 0 24px;
}
.w-news__form {
  display: flex; gap: 8px;
  margin-bottom: 14px;
}
.w-news__form input {
  flex: 1; min-width: 0;
  background: #fff; border: 1px solid var(--as-line);
  padding: 14px 18px; border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; outline: none;
  color: var(--as-ink);
}
.w-news__form button {
  background: var(--as-ink); color: #fff; border: 0;
  padding: 0 22px; border-radius: var(--r-sm);
  font-family: inherit; font-size: 12px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  transition: background .25s var(--ease-std);
}
.w-news__form button:hover { background: var(--as-red); }
.w-news__trust {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 12px; color: var(--as-mute);
}
.w-news__trust strong { color: var(--as-ink); font-weight: 600; }

.w-news__r {
  position: relative;
  display: flex; justify-content: center;
}
.w-news__stack {
  position: relative;
  width: 300px; height: 400px;
}
.w-news__sheet {
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15,15,15,.18);
}
.w-news__sheet .ph { border-radius: var(--r-lg); aspect-ratio: auto; height: 100%; }
.w-news__sheet--3 { transform: rotate(6deg) translate(36px, 18px); opacity: .82; }
.w-news__sheet--2 { transform: rotate(-4deg) translate(-28px, 10px); opacity: .92; }
.w-news__sheet--1 { transform: rotate(2deg); z-index: 3; }

.w-news__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.78) 100%);
}
.w-news__cover {
  position: absolute; inset: 0;
  padding: 22px 22px 24px;
  color: #fff;
  display: flex; flex-direction: column;
  z-index: 2;
}
.w-news__cmast {
  font-size: 10px; letter-spacing: 2.4px; text-transform: uppercase;
  font-weight: 600; color: #fff;
}
.w-news__cedition {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 500;
  margin-top: 4px;
}
.w-news__cover h4 {
  font-size: 24px; line-height: 1.1; font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff; margin: auto 0 12px;
  text-wrap: balance;
}
.w-news__cfoot {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--as-red); font-weight: 600;
}

/* ============================================================
   RESPONSIVE — tablet (≤1199px) + mobile (≤767px)
   Bundle is designed for 1440px desktop. These breakpoints
   keep the layout usable on smaller viewports without
   redesigning each section.
   ============================================================ */

/* ============================================================
   RESPONSIVE — large desktop (≥1600px)
   The base bundle is designed for 1440px. Without this breakpoint,
   .w-card and .w-pair__item grow too wide on big screens (≥1600px).
   We cap section content width so reading stays comfortable while
   the dark hero background stays full-bleed.
   Also centers .ph--cover so hero photos don't get cropped on
   the right at very wide viewports.
   ============================================================ */
@media (min-width: 1600px) {
  .w-hero,
  .w-section,
  .w-rubrics,
  .w-news,
  .w-rdv {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
  .ab-page--home-wahou .ph--cover { background-position: center; }
}

/* Remove PrestaShop wrapper paddings on blog pages so the dark hero
   spans edge-to-edge instead of sitting in a white frame. */
body#module-alterblog-blog #wrapper,
body#module-alterblog-article #wrapper {
  padding: 0;
}
body#module-alterblog-blog .page-content.card.card-block,
body#module-alterblog-article .page-content.card.card-block {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1199px) {
  .w-hero { padding: 24px 32px 40px; }
  .w-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .w-hero__side { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .w-hero__h1 { font-size: 44px; }
  .w-search__row { grid-template-columns: 1fr; gap: 8px; }
  .w-search__cat { width: 100%; }
  .w-section { padding: 48px 32px; }
  .w-rubrics { padding: 32px 32px; }
  .w-rule { grid-template-columns: 1fr; gap: 12px; }
  .w-rule h2 { font-size: 32px; }
  .w-picks { grid-template-columns: 1fr; gap: 24px; }
  .w-pick__h a { font-size: 24px; }
  .w-pick--row { grid-template-columns: 140px 1fr; }
  .w-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .w-top5__row { grid-template-columns: 56px 64px 1fr; row-gap: 8px; }
  .w-top5__rank { font-size: 40px; }
  .w-top5__views { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-end; padding-left: 0; border-left: 0; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.10); gap: 8px; text-align: right; }
  .w-top5__views strong { font-size: 20px; }
  .w-top5__views span { margin-top: 0; }
  .w-rdv { grid-template-columns: 1fr; gap: 32px; }
  .w-pair { grid-template-columns: 1fr; gap: 24px; }
  .w-pair__title { font-size: 22px; }
  .w-pair__prow { grid-template-columns: 64px 1fr auto; gap: 12px; }
  .w-news { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
  .w-news__h { font-size: 36px; }
  .w-news__stack { width: 240px; height: 320px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .w-hero { padding: 20px 18px 32px; }
  .w-hero__bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .w-hero__h1 { font-size: 32px; }
  .w-hero__lede { font-size: 15px; }
  .w-hero__by { grid-template-columns: 40px 1fr; row-gap: 12px; }
  .w-hero__cta { grid-column: 1 / -1; justify-content: center; }
  .w-search { padding: 16px 14px; }
  .w-section { padding: 36px 18px; }
  .w-rubrics { padding: 24px 18px; }
  .w-rule h2 { font-size: 26px; }
  .w-pick__h a { font-size: 20px; }
  .w-pick__body { padding: 20px 20px; }
  .w-pick--row { grid-template-columns: 110px 1fr; gap: 12px; }
  .w-pick__body--row { padding: 12px 12px 12px 0; }
  .w-pick__h--row a { font-size: 15px; }
  .w-grid { grid-template-columns: 1fr; gap: 18px; }
  .w-top5__row { grid-template-columns: 48px 56px 1fr; gap: 14px; padding: 16px 0; }
  .w-top5__rank { font-size: 32px; }
  .w-top5__title { font-size: 15px; }
  .w-rdv__r { padding: 22px 20px; }
  .w-rdv__steps li { grid-template-columns: 48px 1fr; gap: 14px; }
  .w-rdv__no { font-size: 32px; }
  .w-pair__body { padding: 20px 20px 16px; }
  .w-pair__title { font-size: 19px; }
  .w-pair__by { flex-direction: column; align-items: flex-start; gap: 8px; }
  .w-pair__product { padding: 16px 18px; }
  .w-pair__prow { grid-template-columns: 56px 1fr; row-gap: 10px; }
  .w-pair__pprice { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; }
  .w-news { padding: 40px 18px; gap: 28px; }
  .w-news__h { font-size: 28px; }
  .w-news__form { flex-direction: column; }
  .w-news__stack { width: 200px; height: 280px; }
}
