/* ═══════════════════════════════════════════════════════════════════════════
   HomeStyleDaily V4 — Design éditorial luxe déco
   Palette : crème · charbon · terracotta · or
   Typo : Cormorant Garamond (display) · DM Sans (body)
═══════════════════════════════════════════════════════════════════════════ */

:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D8;
  --white:        #FEFCF8;
  --charcoal:     #1C1C1C;
  --charcoal-2:   #2E2E2E;
  --charcoal-3:   #4A4A4A;
  --terra:        #C4714A;
  --terra-light:  #E8937A;
  --gold:         #C9A96E;
  --gold-light:   #DFC49A;
  --muted:        #6B6357;
  --border:       rgba(28,28,28,.10);
  --border-med:   rgba(28,28,28,.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --shadow-sm: 0 1px 3px rgba(28,28,28,.06), 0 4px 12px rgba(28,28,28,.04);
  --shadow-md: 0 4px 20px rgba(28,28,28,.09), 0 1px 4px rgba(28,28,28,.05);
  --shadow-lg: 0 12px 40px rgba(28,28,28,.13);
  --trans: all .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }

/* ════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: 64px;
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--charcoal); letter-spacing: .3px;
}
.main-nav { display: flex; gap: 2rem; margin-left: auto; }
.nav-link {
  font-size: 13px; font-weight: 400; letter-spacing: .3px;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.nav-link:hover { color: var(--charcoal); }
.header-cta {
  font-size: 12px; font-weight: 500; letter-spacing: .5px;
  color: var(--charcoal); text-decoration: none;
  border: 1px solid var(--border-med);
  padding: 7px 14px; border-radius: 20px;
  transition: var(--trans); flex-shrink: 0;
}
.header-cta:hover { background: var(--charcoal); color: var(--cream); }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem 7rem;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grain {
  position: absolute; inset: 0; opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .22;
}
.orb-terra {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--terra) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.orb-gold {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -80px; left: 4%;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--terra);
  border: 1px solid rgba(196,113,74,.3);
  background: rgba(196,113,74,.07);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra);
  animation: pulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -.02em; color: var(--charcoal);
  margin-bottom: 1.25rem;
  animation: fadeUp .6s ease .1s both;
}
.hero-title em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 16px; color: var(--muted);
  font-weight: 300; line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s ease .2s both;
}

/* Search box */
.search-box { animation: fadeUp .6s ease .3s both; }
.search-inner {
  background: var(--white);
  border: 1px solid var(--border-med);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.search-label {
  display: block;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: .75rem;
}
.search-textarea {
  width: 100%; border: none; outline: none; resize: none;
  font-family: var(--font-body); font-size: 15px;
  color: var(--charcoal); background: transparent;
  line-height: 1.6; min-height: 72px;
}
.search-textarea::placeholder { color: #B0A898; }
.search-chips {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin: .75rem 0; padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.chips-label { font-size: 11px; color: var(--muted); margin-right: 2px; }
.ex-chip {
  font-size: 12px; color: var(--charcoal-3);
  background: var(--cream-dark); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  cursor: pointer; transition: var(--trans); font-family: var(--font-body);
}
.ex-chip:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.search-actions { display: flex; gap: .75rem; margin-top: 1rem; }

/* Buttons */
.btn-primary {
  flex: 1; padding: 14px 24px;
  background: var(--charcoal); color: var(--cream);
  border: none; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--trans);
}
.btn-primary:hover  { background: var(--charcoal-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-arrow { font-size: 16px; transition: transform .2s; }
.btn-primary:hover .btn-arrow { transform: translateX(3px); }
.btn-spin {
  width: 16px; height: 16px;
  border: 2px solid rgba(245,240,232,.3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
.btn-ghost {
  padding: 14px 20px;
  background: transparent; color: var(--muted);
  border: 1px solid var(--border-med); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 13px;
  cursor: pointer; transition: var(--trans);
}
.btn-ghost:hover { background: var(--cream-dark); color: var(--charcoal); }

/* Status pills */
.search-status {
  display: flex; align-items: center; gap: 6px;
  margin-top: .75rem; padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.status-pill {
  font-size: 11px; font-weight: 500;
  padding: 3px 10px; border-radius: 12px;
  background: var(--cream-dark); color: var(--muted);
  border: 1px solid var(--border);
}
.status-ai    { background: rgba(196,113,74,.10); color: var(--terra); border-color: rgba(196,113,74,.25); }
.status-gemini { background: rgba(26,115,232,.10); color: #1a73e8; border-color: rgba(26,115,232,.25); }
.status-cache  { background: rgba(30,126,52,.10); color: #1e7e34; border-color: rgba(30,126,52,.25); }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 20px; color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════
   RÉSULTATS LAYOUT
════════════════════════════════════════════════════ */
.results-zone {
  background: var(--white);
  min-height: 60vh;
  padding: 3rem 0 6rem;
}
.results-layout {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ════════════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════════════ */
.sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--border-med);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.4rem;
  overflow: hidden;
}
.sidebar-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1rem; padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 3px rgba(196,113,74,.2);
  animation: pulse 2s ease-in-out infinite;
}
.sidebar-title {
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--charcoal);
}

/* Sidebar rows */
.sb-row {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
}
.sb-last { border-bottom: none; }
.sb-key {
  font-size: 10px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); margin-bottom: .2rem;
}
.sb-val { font-size: 13px; color: var(--charcoal); font-weight: 400; }

/* Score ring */
.sb-score-row { padding-bottom: .75rem; }
.score-ring-wrap {
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  margin-top: .4rem;
}
.score-ring-svg { width: 56px; height: 56px; }
.ring-track { stroke: var(--border-med); }
.ring-fill {
  stroke: var(--terra);
  stroke-linecap: round;
  transition: stroke-dashoffset 1s cubic-bezier(.4,0,.2,1);
}
.ring-value {
  position: absolute;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600; color: var(--charcoal);
}

/* SEO box */
.seo-box {
  margin-top: 1rem; padding: 1rem;
  background: linear-gradient(135deg, rgba(196,113,74,.09), rgba(201,169,110,.09));
  border: 1px solid rgba(196,113,74,.22);
  border-radius: var(--r-md);
}
.seo-box-label {
  font-size: 10px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--terra); margin-bottom: .4rem;
}
.seo-box-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400; color: var(--charcoal);
  line-height: 1.4; margin-bottom: .6rem;
}
.seo-box-link {
  font-size: 12px; color: var(--terra);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 500;
  padding: 0; text-decoration: none;
}
.seo-box-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   RESULTS MAIN
════════════════════════════════════════════════════ */
.results-head {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; margin-bottom: 2rem;
}
.results-intro {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 300; color: var(--charcoal);
  line-height: 1.4; flex: 1;
}
.results-meta {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 4px;
}
.results-count { font-size: 12px; color: var(--muted); }
.results-coh {
  font-size: 11px; padding: 3px 10px; border-radius: 10px;
  background: rgba(201,169,110,.15); color: var(--gold);
  border: 1px solid rgba(201,169,110,.3);
}

/* ── Category group ── */
.cat-group { margin-bottom: 3rem; }
.cat-group-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.25rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--border-med);
}
.cat-group-icon {
  width: 32px; height: 32px;
  background: var(--charcoal); color: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.cat-group-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400; color: var(--charcoal);
}
.cat-group-count { font-size: 12px; color: var(--muted); margin-left: auto; }
.products-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(242px, 1fr));
  gap: 1.2rem;
}

/* ── Product card ── */
.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
  animation: cardIn .4s ease both;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-med);
}

/* Image */
.product-img-wrap {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: var(--white);
}
.product-img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 12px;
  transition: transform .4s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }

/* Badge */
.product-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; padding: 3px 9px; border-radius: 20px;
}
.badge-best    { background: var(--charcoal); color: var(--gold); }
.badge-budget  { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.badge-premium { background: #FFF8E1; color: #E65100; border: 1px solid #FFD54F; }
.badge-mid     { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }

/* Score bar in image */
.product-score-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(28,28,28,.08);
}
.product-score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--terra));
  width: 0; transition: width .9s cubic-bezier(.4,0,.2,1);
}

/* Score chip on image */
.product-score-chip {
  position: absolute; top: 10px; right: 10px;
  font-size: 11px; font-weight: 600;
  background: rgba(28,28,28,.82); color: var(--cream);
  padding: 3px 8px; border-radius: 20px;
  backdrop-filter: blur(8px);
}

/* Card body */
.product-body {
  padding: 1rem 1.1rem 1.1rem;
  flex: 1; display: flex; flex-direction: column; gap: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; color: var(--charcoal);
  line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-price-row { display: flex; align-items: baseline; gap: 8px; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; color: var(--charcoal);
}
.product-score-pct {
  font-size: 11px; font-weight: 600; color: var(--terra);
  background: rgba(196,113,74,.12);
  padding: 1px 7px; border-radius: 10px;
}
.product-rating-row { font-size: 12px; color: var(--muted); }
.product-stars  { color: var(--gold); letter-spacing: -1px; }
.product-reviews { color: var(--muted); }

.product-why {
  font-size: 12px; line-height: 1.6; color: var(--charcoal-3);
  border-left: 2px solid var(--terra-light);
  padding-left: 8px; margin-top: 2px;
  flex: 1;
}
.product-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 2px; }
.product-tag {
  font-size: 10px; padding: 2px 7px; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--charcoal-3);
}
.product-tag.color { background: var(--gold-light); border-color: var(--gold); color: var(--charcoal); }
.product-cta {
  display: block; text-align: center;
  margin-top: 10px; padding: 10px;
  background: var(--charcoal); color: var(--cream);
  text-decoration: none; border-radius: 10px;
  font-size: 13px; font-weight: 500;
  transition: var(--trans);
}
.product-cta:hover { background: var(--terra); }

/* Empty state */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--muted); }
.empty-icon  { font-size: 3rem; margin-bottom: 1rem; opacity: .3; }
.empty-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .5rem; }
.empty-sub   { font-size: 14px; }

/* ════════════════════════════════════════════════════
   COLLECTIONS
════════════════════════════════════════════════════ */
.collections-section {
  padding: 6rem 2rem;
  background: var(--cream);
}
.section-wrap { max-width: 1280px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--terra); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  color: var(--charcoal); margin-bottom: 2.5rem;
}
.collections-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.coll-card {
  position: relative; height: 220px; overflow: hidden;
  border-radius: var(--r-xl); cursor: pointer;
  border: 1px solid var(--border-med);
  transition: transform .3s, box-shadow .3s;
}
.coll-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.coll-bg {
  position: absolute; inset: 0;
  transition: transform .4s ease;
}
.coll-card:hover .coll-bg { transform: scale(1.04); }
.coll-canape .coll-bg { background: linear-gradient(135deg, #D4A574 0%, #8B6355 100%); }
.coll-tapis  .coll-bg { background: linear-gradient(135deg, #7E9B8A 0%, #4A6B5A 100%); }
.coll-table  .coll-bg { background: linear-gradient(135deg, #8B7D6B 0%, #5C4A3A 100%); }
.coll-body {
  position: relative; z-index: 1;
  padding: 1.5rem; color: var(--cream);
  height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(28,28,28,.5) 0%, transparent 60%);
}
.coll-count { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; line-height: 1; margin-bottom: .25rem; }
.coll-name  { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.coll-desc  { font-size: 12px; opacity: .8; margin-top: 2px; }
.coll-cta   { font-size: 12px; font-weight: 500; margin-top: .5rem; opacity: .85; }

/* ════════════════════════════════════════════════════
   GUIDES SEO
════════════════════════════════════════════════════ */
.guides-section {
  padding: 6rem 2rem;
  background: var(--charcoal);
}
.guides-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.guide-card {
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: background .2s, transform .3s;
}
.guide-card:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.guide-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
}
.guide-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400; color: var(--cream);
  line-height: 1.4; margin-bottom: .6rem;
}
.guide-text { font-size: 13px; color: rgba(245,240,232,.6); line-height: 1.6; margin-bottom: 1rem; }
.guide-cta  { font-size: 13px; color: var(--terra-light); font-weight: 500; }
.guide-card:hover .guide-cta { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer { background: #111; padding: 2.5rem 2rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); }
.footer-legal  { font-size: 11px; color: rgba(255,255,255,.35); max-width: 500px; line-height: 1.6; }
.footer-phase  { font-size: 11px; color: rgba(255,255,255,.25); }

/* ════════════════════════════════════════════════════
   UTILITAIRES
════════════════════════════════════════════════════ */
.hidden { display: none !important; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin   { to { transform: rotate(360deg); } }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(196,113,74,.2); }
  50%     { box-shadow: 0 0 0 6px rgba(196,113,74,.08); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .results-layout   { grid-template-columns: 1fr; }
  .sidebar          { position: static; }
  .collections-grid { grid-template-columns: 1fr; }
  .guides-grid      { grid-template-columns: 1fr; }
  .main-nav         { display: none; }
  .hero-title       { font-size: clamp(2.2rem, 6vw, 3.8rem); }
}

@media (max-width: 768px) {
  /* Header */
  .header-inner     { padding: 0 1rem; gap: 1rem; }
  .header-cta       { display: none; }
  .logo-name        { font-size: 16px; }

  /* Hero */
  .hero             { padding: 3rem 1rem 5rem; }
  .hero-title       { font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1.2; }
  .hero-sub         { font-size: .9rem; }

  /* Search box */
  .search-inner     { padding: 1.25rem 1rem; border-radius: 16px; }
  .search-textarea  { font-size: 15px; min-height: 56px; }
  .search-actions   { flex-direction: column; gap: .6rem; }
  .btn-search       { width: 100%; justify-content: center; }
  .btn-clear        { width: 100%; }
  .ex-chips         { gap: .4rem; }
  .ex-chip          { font-size: 11px; padding: 5px 10px; }

  /* Collections */
  .collections-grid { grid-template-columns: 1fr; gap: .8rem; }
  .coll-card        { padding: 1.5rem 1.25rem; }
  .coll-count       { font-size: 2rem; }

  /* Products */
  .products-row     { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .product-name     { font-size: .82rem; }
  .product-price    { font-size: 1rem; }

  /* Guides */
  .guides-grid      { grid-template-columns: 1fr; }
  .guide-card       { padding: 1.25rem; }
}

@media (max-width: 480px) {
  /* Header */
  .header-inner     { height: 56px; }

  /* Hero */
  .hero             { padding: 2.5rem .875rem 4rem; }
  .hero-title       { font-size: 1.75rem; }

  /* Products : 1 colonne sur très petit écran */
  .products-row     { grid-template-columns: 1fr; }
  .product-img-wrap { aspect-ratio: 16/9; }

  /* Collections */
  .collections-grid { grid-template-columns: 1fr; }

  /* Search */
  .search-status    { flex-wrap: wrap; gap: .3rem; }
  .status-pill      { font-size: 10px; }

  /* Footer */
  .footer-inner     { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-nav       { flex-wrap: wrap; justify-content: center; gap: .5rem; }
}

/* ── Badges strict v6 ──────────────────────────────────────────────────────── */
.badge-exact {
  display: inline-block;
  background: #4a7c59;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.badge-exact-card {
  display: inline-block;
  background: #4a7c59;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 12px;
  margin-bottom: 4px;
}
.badge-enriching {
  display: inline-block;
  background: #b08040;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 8px;
}
.strict-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(74,124,89,0.08);
  border-left: 3px solid #4a7c59;
  border-radius: 6px;
  margin-bottom: 16px;
}
.strict-banner-txt {
  font-size: 0.85rem;
  color: #4a7c59;
}
.strict-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted, #888);
}
.strict-empty-icon  { font-size: 2.5rem; margin-bottom: 12px; }
.strict-empty-title { font-size: 1.1rem; font-weight: 600; color: var(--text, #333); margin-bottom: 6px; }
.strict-empty-sub   { font-size: 0.88rem; color: #999; margin-bottom: 16px; }

/* ── Footer navigation légale ─────────────────────────────────────────────── */
.footer-nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.footer-link {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-link:hover { color: var(--charcoal); }
.footer-sep { font-size: 12px; color: var(--border-med); }

/* ── Bouton relax dans strict-empty ──────────────────────────────────────── */
.btn-relax {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 20px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .3px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-relax:hover { opacity: .8; }
