/* La Maison du Riz — design system */
:root {
  --paddy: #0c3d32;
  --paddy-deep: #062820;
  --leaf: #1a6b54;
  --grain: #d4a84b;
  --grain-soft: #e8c97a;
  --steam: #eef3ef;
  --mist: #f6faf7;
  --ink: #14241f;
  --muted: #4a5c55;
  --line: rgba(12, 61, 50, 0.12);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 40, 32, 0.14);
  --radius: 2px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(212, 168, 75, 0.07), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(26, 107, 84, 0.06), transparent 50%),
    var(--mist);
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--grain);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--leaf);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--paddy);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Ancien bandeau affiliation : masqué */
.affiliate-bar {
  display: none !important;
}

.legal-note {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--paddy);
  line-height: 1.1;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--leaf);
}

.nav-cta {
  background: var(--paddy);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--leaf);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 40, 32, 0.25) 0%, rgba(6, 40, 32, 0.78) 55%, rgba(6, 40, 32, 0.92) 100%),
    url("https://images.unsplash.com/photo-1536304993881-ff6e9eefa2a6?auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(212, 168, 75, 0.18), transparent 40%);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(2%, -1%, 0);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.2rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  animation: rise 0.9s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: 18ch;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  animation: rise 0.9s var(--ease) 0.1s both;
}

.hero p {
  max-width: 38ch;
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  animation: rise 0.9s var(--ease) 0.18s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.26s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--grain);
  color: var(--paddy-deep);
}

.btn-primary:hover {
  background: var(--grain-soft);
  color: var(--paddy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-dark {
  background: var(--paddy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--leaf);
  color: var(--white);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-alt {
  background: var(--steam);
  border-top: 1px solid var(--line);
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.mt-block {
  margin-top: 1.5rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.section-head h2,
.page-hero h1,
.article h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--paddy);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-head p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Category strips */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cat-link {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  background: var(--paddy) center / cover no-repeat;
  transition: transform 0.35s var(--ease);
}

.cat-link:hover {
  transform: translateY(-4px);
  color: var(--white);
}

.cat-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 40, 32, 0.88));
}

.cat-link > * {
  position: relative;
  z-index: 1;
}

.cat-link h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.25rem;
}

.cat-link p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.92rem;
}

.cat-riz {
  background-image:
    linear-gradient(180deg, transparent 30%, rgba(6, 40, 32, 0.88)),
    url("https://images.unsplash.com/photo-1586201375761-83865001e31c?auto=format&fit=crop&w=900&q=80");
}

.cat-cuiseur {
  background-image:
    linear-gradient(180deg, transparent 30%, rgba(6, 40, 32, 0.88)),
    url("https://images.unsplash.com/photo-1585032226651-759b368d7246?auto=format&fit=crop&w=900&q=80");
}

.cat-ustensile {
  background-image:
    linear-gradient(180deg, transparent 30%, rgba(6, 40, 32, 0.88)),
    url("https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&w=900&q=80");
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.product:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paddy);
  background: rgba(26, 107, 84, 0.1);
  padding: 0.25rem 0.5rem;
}

.product h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  color: var(--paddy);
  line-height: 1.25;
}

.product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.product .btn {
  width: 100%;
}

/* Guides list */
.guide-list {
  display: grid;
  gap: 1rem;
}

.guide-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}

.guide-item:hover {
  box-shadow: var(--shadow);
  color: inherit;
}

.guide-thumb {
  min-height: 120px;
  background: var(--paddy) center / cover no-repeat;
}

.recipe-thumb-photo {
  min-height: 140px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.recipe-hero {
  margin: 1.25rem 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--paddy-deep);
}

.recipe-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.related li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.related li > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.related li > a:hover span {
  color: var(--leaf);
}

.related-thumb {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.guide-body {
  padding: 1.1rem 1.25rem 1.1rem 0;
}

.guide-body h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: var(--paddy);
}

.guide-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.recipe-thumb {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--grain-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 201, 122, 0.22), transparent 45%),
    linear-gradient(145deg, var(--paddy-deep), var(--leaf));
}

.recipe-meta {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--leaf);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink) !important;
  text-decoration: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--paddy);
  color: var(--white) !important;
  border-color: var(--paddy);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Split / why */
.why {
  background: var(--paddy);
  color: rgba(255, 255, 255, 0.88);
}

.why .section-head h2,
.why .eyebrow {
  color: var(--grain-soft);
}

.why .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.why-item p {
  margin: 0;
  font-size: 0.98rem;
}

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    linear-gradient(135deg, rgba(12, 61, 50, 0.06), rgba(212, 168, 75, 0.08)),
    var(--steam);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 16ch;
}

/* Article */
.article {
  padding: 3rem 0 4rem;
}

.article-wrap {
  max-width: 720px;
}

.article h2 {
  font-family: var(--font-display);
  color: var(--paddy);
  font-size: 1.65rem;
  margin: 2.2rem 0 0.8rem;
}

.article h3 {
  font-family: var(--font-display);
  color: var(--paddy);
  font-size: 1.25rem;
  margin: 1.6rem 0 0.55rem;
}

.article p,
.article li {
  color: var(--muted);
}

.article ul {
  padding-left: 1.2rem;
}

.callout {
  margin: 1.75rem 0;
  padding: 1.2rem 1.3rem;
  background: var(--steam);
  border-left: 3px solid var(--grain);
}

.callout strong {
  color: var(--paddy);
}

.toc {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0 2rem;
}

.toc strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--paddy);
}

.toc a {
  display: block;
  padding: 0.2rem 0;
  text-decoration: none;
}

/* Legal */
.legal {
  padding: 3rem 0 4rem;
}

.legal h2 {
  font-family: var(--font-display);
  color: var(--paddy);
  font-size: 1.4rem;
  margin: 2rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--paddy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.site-footer a {
  color: var(--grain-soft);
  text-decoration: none;
}

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

.site-footer h4 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

/* Tag warning */
.tag-warn {
  background: #fff4d6;
  border: 1px solid #e8c97a;
  color: #5c4816;
  padding: 0.85rem 1rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .cat-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .guide-item {
    grid-template-columns: 1fr;
  }

  .guide-thumb,
  .recipe-thumb {
    min-height: 150px;
  }

  .guide-body {
    padding: 1rem 1.15rem 1.15rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246, 250, 247, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.75rem;
    box-shadow: 0 16px 40px rgba(6, 40, 32, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: min(78vh, 640px);
  }

  .hero-inner {
    padding: 3.5rem 0 3rem;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sticky-cta {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    border-radius: 4px;
    justify-content: center;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-search {
    width: 100%;
  }

  .shop-search input {
    flex: 1;
    min-width: 0;
  }
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  opacity: 0.5;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--leaf);
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  margin: 1.5rem 0 2rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  background: var(--paddy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
}

.compare-table tr:nth-child(even) td {
  background: rgba(12, 61, 50, 0.03);
}

.compare-table .win {
  color: var(--leaf);
  font-weight: 700;
}

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  margin-bottom: 0.65rem;
  padding: 0.9rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--paddy);
  list-style: none;
}

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

.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.2em;
  color: var(--grain);
  font-weight: 700;
}

.faq details[open] summary::before {
  content: "–";
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

/* Recipe cards */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
}

.meta-row strong {
  color: var(--paddy);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--paddy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Ads landing */
.ads-hero {
  background:
    linear-gradient(135deg, rgba(6, 40, 32, 0.92), rgba(12, 61, 50, 0.85)),
    url("https://images.unsplash.com/photo-1585032226651-759b368d7246?auto=format&fit=crop&w=1600&q=80")
      center / cover;
  color: var(--white);
  padding: 3.5rem 0 3rem;
}

.ads-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin: 0 0 0.75rem;
  color: var(--white);
  max-width: 18ch;
}

.ads-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.trust-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.35rem 0.7rem;
  color: var(--grain-soft);
}

.pick-list {
  display: grid;
  gap: 1rem;
}

.pick {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}

.pick-rank {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--grain);
  font-weight: 600;
  min-width: 2rem;
}

.pick h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  color: var(--paddy);
  font-size: 1.2rem;
}

.pick p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  bottom: 1rem;
  right: 1rem;
  display: none;
  box-shadow: var(--shadow);
}

.js .sticky-cta.is-visible {
  display: inline-flex;
}

.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related h2 {
  font-family: var(--font-display);
  color: var(--paddy);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}

.related ul {
  margin: 0;
  padding-left: 1.1rem;
}

.related li {
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .pick {
    grid-template-columns: auto 1fr;
  }

  .pick .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* ===== Boutique / Buy system ===== */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.shop-filters button {
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  color: var(--ink);
  border-radius: var(--radius);
}

.shop-filters button.is-active,
.shop-filters button:hover {
  background: var(--paddy);
  color: var(--white);
  border-color: var(--paddy);
}

.shop-search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.shop-search input {
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
  font: inherit;
  min-width: min(100%, 220px);
  background: var(--white);
}

.shop-count {
  font-size: 0.9rem;
  color: var(--muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.shop-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.shop-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.shop-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--steam);
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.04);
}

.shop-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--grain);
  color: var(--paddy-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
}

.shop-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.shop-cat {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
}

.shop-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.shop-card-body h3 a {
  text-decoration: none;
  color: var(--paddy);
}

.shop-rating {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.stars {
  color: var(--grain);
  letter-spacing: 0.05em;
}

.shop-short {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}

.shop-price {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.shop-price strong {
  color: var(--paddy);
  font-size: 1.15rem;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
  align-items: center;
}

.btn-buy {
  background: #c97820;
  color: #fff !important;
  text-decoration: none;
  border: none;
  font-weight: 700;
}

.btn-buy:hover {
  background: #a86212;
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-buy-lg {
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 280px;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--paddy) !important;
  border: 1px solid var(--line);
  text-decoration: none;
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost-dark:hover {
  border-color: var(--paddy);
  color: var(--paddy) !important;
}

.btn-icon {
  border: 1px solid var(--line);
  background: var(--white);
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--muted);
}

.btn-icon.is-on {
  color: #c0392b;
  border-color: #e8b4b0;
  background: #fff5f4;
}

.shop-empty {
  color: var(--muted);
  padding: 2rem 0;
}

/* PDP */
.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  margin: 1rem 0 2.5rem;
  align-items: start;
}

.pdp-gallery {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.pdp-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pdp-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--paddy);
  margin: 0.35rem 0 0.6rem;
  line-height: 1.15;
}

.pdp-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.pdp-price-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: var(--steam);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
  margin: 1.25rem 0;
}

.pdp-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--paddy);
  margin: 0.2rem 0;
  font-weight: 600;
}

.pdp-price-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.pdp-trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.pdp-trust li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}

.pdp-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 700;
}

.pdp-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pdp-grid-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.pdp-grid-details section {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}

.pdp-grid-details h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--paddy);
  margin: 0 0 0.75rem;
}

.feature-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.feature-chips li {
  background: rgba(26, 107, 84, 0.1);
  color: var(--paddy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
}

.related-buy h2 {
  font-family: var(--font-display);
  color: var(--paddy);
  margin: 0 0 1rem;
}

/* Buy bar sticky */
.buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(6, 40, 32, 0.96);
  color: #fff;
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
  padding: 0.75rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.buy-bar.is-visible {
  transform: translateY(0);
}

body:has(.buy-bar.is-visible) {
  padding-bottom: 4.5rem;
}

body:has(#cookie-banner) {
  padding-bottom: 7rem;
}

body:has(#cookie-banner):has(.buy-bar.is-visible) {
  padding-bottom: 12rem;
}

body:has(.buy-bar.is-visible) #cookie-banner {
  bottom: 4.35rem;
}

.buy-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 700px) {
  .buy-bar-inner {
    flex-wrap: wrap;
  }

  .buy-bar-inner .btn-buy {
    width: 100%;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }
}

.buy-bar-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
}

.buy-bar-text span {
  opacity: 0.8;
}

.sel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(212, 168, 75, 0.2);
  color: var(--paddy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  min-width: 1.2rem;
  justify-content: center;
}

.nav-sel {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
}

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

  .pdp-grid-details {
    grid-template-columns: 1fr;
  }

  .pdp-price-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-buy-lg {
    max-width: none;
  }
}

/* Legal */
.legal-box {
  background: #fff8e8;
  border: 1px solid var(--grain);
  border-left: 4px solid var(--grain);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0 1.75rem;
  color: #5c4816;
}

.legal-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--paddy);
}

.legal-update {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.legal .lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal h1 {
  font-family: var(--font-display);
  color: var(--paddy);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  z-index: 90;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem;
  background: rgba(6, 40, 32, 0.97);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
}

.cookie-banner-inner {
  width: min(100% - 0.5rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text {
  flex: 1 1 280px;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--grain-soft);
  font-size: 0.95rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-banner-text a {
  color: var(--grain-soft);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner-actions .btn-ghost-dark {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.65rem 1rem;
}

.cookie-banner-actions .btn-dark {
  background: var(--grain);
  color: var(--paddy-deep) !important;
  padding: 0.65rem 1rem;
}

/* ===== Boutique pro (v2) ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-hero-shop {
  padding-bottom: 1.5rem;
}

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

.cat-teaser {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.75rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.cat-teaser:hover {
  border-color: var(--leaf);
  transform: translateY(-2px);
  color: inherit;
}

.cat-teaser img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  background: var(--steam);
}

.cat-teaser h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--paddy);
}

.cat-teaser p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.shop-toolbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.shop-sort select {
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  min-height: 2.6rem;
}

.shop-legal-foot {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.shop-empty-box {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.shop-empty-box h2,
.shop-empty-box h1 {
  font-family: var(--font-display);
  color: var(--paddy);
  margin-top: 0;
}

.pdp-meta {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.pdp-meta li {
  padding: 0.45rem 0.7rem;
  background: var(--steam);
  border-left: 3px solid var(--leaf);
}

.pdp-meta strong {
  color: var(--paddy);
  margin-right: 0.35rem;
}

.pdp-body {
  margin-bottom: 2.5rem;
}

.pdp-block {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}

.pdp-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--paddy);
  margin: 0 0 0.85rem;
}

.pdp-block > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pdp-list-plus,
.pdp-list-minus {
  margin: 0;
  padding-left: 1.1rem;
}

.pdp-list-plus li::marker {
  color: var(--leaf);
}

.pdp-list-minus li::marker {
  color: #c0392b;
}

.pdp-specs-wrap {
  overflow-x: auto;
}

.pdp-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pdp-specs th,
.pdp-specs td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.pdp-specs th {
  width: 38%;
  color: var(--paddy);
  font-weight: 600;
  background: var(--steam);
}

.pdp-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.pdp-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--paddy);
  list-style-position: outside;
}

.pdp-faq-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.pdp-affiliate-note {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 1rem 1.1rem;
  background: #fff8e8;
  border-left: 4px solid var(--grain);
}

.pdp-affiliate-note strong {
  color: var(--paddy);
}

.shop-card-media img {
  object-fit: contain;
  padding: 0.75rem;
  background: var(--steam);
}

.shop-actions .btn,
.shop-actions .btn-ghost-dark,
.shop-actions .btn-buy {
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

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

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar-right {
    width: 100%;
  }

  .shop-search {
    flex: 1;
  }

  .shop-search input {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-actions {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .shop-actions .btn-buy {
    grid-column: 1 / -1;
  }

  .buy-bar-text strong {
    font-size: 0.85rem;
  }
}

/* ===== Boutique v3 — layout shop clair ===== */
.page-hero-shop {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(212, 168, 75, 0.18), transparent 55%),
    linear-gradient(145deg, #0a342b 0%, #0c3d32 42%, #134f42 100%);
  border-bottom: none;
  color: #f3f7f4;
  padding: 3.25rem 0 2.4rem;
}

.page-hero-shop .breadcrumb a,
.page-hero-shop .breadcrumb {
  color: rgba(243, 247, 244, 0.72);
}

.page-hero-shop .eyebrow {
  color: var(--grain-soft);
}

.page-hero-shop h1 {
  max-width: 18ch;
  color: #fff;
}

.page-hero-shop .lead {
  color: rgba(243, 247, 244, 0.88);
  max-width: 42ch;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(6, 40, 32, 0.05);
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.shop-filters button {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 2px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  color: var(--ink);
}

.shop-filters button.is-active,
.shop-filters button:hover {
  background: var(--paddy);
  color: #fff;
  border-color: var(--paddy);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.35rem;
  width: 100%;
}

.shop-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.shop-card-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 168, 75, 0.12), transparent 50%),
    var(--steam);
}

.shop-card-media img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  padding: 0;
  mix-blend-mode: normal;
}

.shop-card-media {
  background: #fff;
}

.shop-badge {
  background: var(--paddy);
  color: #fff;
}

.shop-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.shop-card-body h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  min-height: 2.5em;
}

.shop-short {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.shop-price {
  margin-top: auto;
  padding-top: 0.35rem;
}

.shop-actions {
  margin-top: 0.35rem;
}

#shop-pager {
  margin-top: 2rem;
}

.cat-teaser img {
  object-fit: contain;
  padding: 0.35rem;
  background: var(--steam);
}

/* ===== Comparatifs hub ===== */
.brand-hero-line {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--grain-soft);
  line-height: 1.15;
}

.page-hero-shop .brand-hero-line {
  color: var(--grain-soft);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(243, 247, 244, 0.45);
  background: transparent;
  color: #f3f7f4;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  min-height: 2.75rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-ghost-light:hover {
  background: rgba(243, 247, 244, 0.1);
  border-color: #f3f7f4;
  color: #fff;
}

.cmp-hero .lead {
  margin-bottom: 1.25rem;
}

.cmp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.cmp-section-head {
  margin-bottom: 1.35rem;
  max-width: 40rem;
}

.cmp-section-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  color: var(--paddy);
  letter-spacing: -0.02em;
}

.cmp-section-head p {
  margin: 0;
  color: var(--muted);
}

.cmp-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cmp-path {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem 1.25rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--grain);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cmp-path:hover {
  color: inherit;
  border-color: var(--leaf);
  border-left-color: var(--leaf);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 40, 32, 0.08);
}

.cmp-path-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
}

.cmp-path strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paddy);
  letter-spacing: -0.02em;
}

.cmp-path span:last-child {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.cmp-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cmp-row {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem 0.85rem 0.85rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.cmp-row:hover {
  color: inherit;
  border-color: var(--leaf);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(6, 40, 32, 0.07);
}

.cmp-row:hover .cmp-row-go {
  color: var(--paddy);
  transform: translateX(3px);
}

.cmp-row-media {
  width: 112px;
  height: 84px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--line);
}

.cmp-row-media-soft {
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 168, 75, 0.22), transparent 55%),
    linear-gradient(145deg, #eef3ef, #dce8e2);
}

.cmp-row-body {
  min-width: 0;
}

.cmp-tag {
  display: inline-block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--leaf);
}

.cmp-row-body h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--paddy);
  letter-spacing: -0.02em;
}

.cmp-row-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.cmp-row-go {
  font-size: 1.25rem;
  color: var(--grain);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.cmp-decide {
  background:
    linear-gradient(180deg, rgba(238, 243, 239, 0.65), transparent);
}

.cmp-decide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 1.5rem;
}

.cmp-decide-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--paddy);
}

.cmp-decide-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.cmp-cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(212, 168, 75, 0.12), transparent 55%),
    var(--paddy);
  color: #f3f7f4;
  padding-block: 2.75rem;
}

.cmp-cta-band h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: #fff;
}

.cmp-cta-band p {
  margin: 0;
  color: rgba(243, 247, 244, 0.82);
  max-width: 42ch;
}

.cmp-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.cmp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cmp-cta-band .btn-ghost-dark {
  border-color: rgba(243, 247, 244, 0.4);
  color: #f3f7f4;
}

.cmp-cta-band .btn-ghost-dark:hover {
  background: rgba(243, 247, 244, 0.1);
  color: #fff;
  border-color: #fff;
}

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

  .cmp-decide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cmp-row {
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    padding: 0.7rem;
  }

  .cmp-row-media {
    width: 72px;
    height: 72px;
  }

  .cmp-row-go {
    display: none;
  }

  .cmp-decide-grid {
    grid-template-columns: 1fr;
  }

  .cmp-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cmp-hero-actions .btn {
    width: 100%;
  }
}

@keyframes cmp-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cmp-path,
.cmp-row {
  animation: cmp-rise 0.55s var(--ease) both;
}

.cmp-path:nth-child(1) { animation-delay: 0.04s; }
.cmp-path:nth-child(2) { animation-delay: 0.1s; }
.cmp-path:nth-child(3) { animation-delay: 0.16s; }
.cmp-row:nth-child(1) { animation-delay: 0.05s; }
.cmp-row:nth-child(2) { animation-delay: 0.1s; }
.cmp-row:nth-child(3) { animation-delay: 0.15s; }
.cmp-row:nth-child(4) { animation-delay: 0.2s; }
.cmp-row:nth-child(5) { animation-delay: 0.25s; }
.cmp-row:nth-child(6) { animation-delay: 0.3s; }

/* —— Newsletter / prospects —— */
.nl-hero {
  padding: 3.5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(12, 61, 50, 0.96), rgba(6, 40, 32, 0.92)),
    radial-gradient(600px 280px at 80% 20%, rgba(212, 168, 75, 0.25), transparent 60%);
  color: var(--white);
}
.nl-hero .eyebrow { color: var(--grain-soft); }
.nl-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0.4rem 0 0.8rem;
  font-weight: 600;
}
.nl-hero .lead { color: rgba(255, 255, 255, 0.86); max-width: 36rem; }
.nl-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 860px) {
  .nl-hero-grid { grid-template-columns: 1.2fr 0.9fr; gap: 3rem; }
}
.nl-bullets {
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}
.nl-bullets li { margin: 0.35rem 0; }
.nl-card {
  background: var(--white);
  color: var(--ink);
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.nl-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
}
.nl-card > p { margin-top: 0; color: var(--muted); font-size: 0.98rem; }
.nl-form { display: grid; gap: 0.55rem; margin-top: 1rem; }
.nl-label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.nl-label span { font-weight: 500; opacity: 0.8; }
.nl-form input[type="email"],
.nl-form input[type="text"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--mist);
}
.nl-form .btn { width: 100%; margin-top: 0.35rem; }
.nl-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
.nl-legal { font-size: 0.78rem; color: var(--muted); margin: 0.4rem 0 0; line-height: 1.45; }
.nl-status { font-size: 0.9rem; margin: 0.2rem 0 0; }
.nl-status.is-error { color: #9b1c1c; }

.nl-band {
  padding: 2.6rem 0;
  background: linear-gradient(120deg, var(--paddy-deep), var(--paddy));
  color: var(--white);
}
.nl-band-inner {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}
@media (min-width: 800px) {
  .nl-band-inner { grid-template-columns: 1.1fr 0.9fr; gap: 2rem; }
}
.nl-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0.25rem 0 0.5rem;
}
.nl-band p { margin: 0; color: rgba(255, 255, 255, 0.88); }
.nl-band .nl-form input[type="email"],
.nl-band .nl-form input[type="text"] {
  background: rgba(255, 255, 255, 0.96);
}
.nl-band .nl-legal { color: rgba(255, 255, 255, 0.72); }
.nl-band .nl-legal a { color: var(--grain-soft); }
.nl-band .nl-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: stretch;
}
@media (max-width: 560px) {
  .nl-band .nl-inline { grid-template-columns: 1fr; }
}
