/* ============================================
   electromenager.ninja — Mobile First
   Base = mobile · min-width pour tablette/desktop
   ============================================ */

/* --- Variables -------------------------------- */
:root {
  --primary:       #1d4ed8;
  --primary-dark:  #1e3a8a;
  --primary-light: #dbeafe;
  --accent:        #ea580c;
  --accent-light:  #fff7ed;
  --success:       #16a34a;
  --warning:       #d97706;
  --danger:        #dc2626;

  --bg:            #f8fafc;
  --bg-white:      #ffffff;
  --border:        #e2e8f0;
  --border-dark:   #cbd5e1;

  --text:          #0f172a;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;

  --shadow-sm:     0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 1px 3px rgba(0,0,0,.10);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,.10);

  --radius:        8px;
  --radius-lg:     12px;
  --radius-xl:     16px;

  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --max-w:         1200px;
  --header-h:      56px;

  /* Touch targets */
  --tap-min:       44px;
}

/* --- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: 1rem; }
button { cursor: pointer; }

/* --- Conteneur -------------------------------- */
.container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}
@media (min-width: 640px)  { .container { padding: 0 1.25rem; } }
@media (min-width: 1280px) { .container { max-width: var(--max-w); } }

/* --- Utilitaires ------------------------------ */
.sr-only { position:absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }

/* --- HEADER ----------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary-dark);
  height: var(--header-h);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: .75rem;
}
.site-logo { flex-shrink: 0; }
.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
}
.logo-dot { color: var(--accent); }

/* Hamburger — toujours visible sur mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  margin-left: auto;
  padding: .5rem;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav — drawer mobile */
.site-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--primary-dark);
  overflow-y: auto;
  z-index: 199;
  padding: .5rem 0 2rem;
}
.site-nav.open { display: block; }
.site-nav ul {
  display: flex;
  flex-direction: column;
}
.site-nav a {
  display: flex;
  align-items: center;
  padding: .875rem 1.5rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.07);
  min-height: var(--tap-min);
  transition: background .15s;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
}
.site-nav a.active { border-left: 3px solid var(--accent); }

/* Desktop nav */
@media (min-width: 768px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: none; }

  .site-nav {
    display: flex !important;
    position: static;
    background: none;
    padding: 0;
    overflow: visible;
    margin-left: auto;
  }
  .site-nav ul { flex-direction: row; gap: .25rem; }
  .site-nav a {
    padding: .5rem .75rem;
    font-size: .875rem;
    border: none;
    border-radius: var(--radius);
    min-height: auto;
  }
  .site-nav a.active { border-left: none; background: rgba(255,255,255,.15); }
}

/* --- HERO ------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}
.hero h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .75rem;
}
.hero p {
  font-size: .95rem;
  opacity: .85;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

/* Search bar — colonne sur mobile */
.hero-search {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-search input {
  padding: .875rem 1.25rem;
  border: none;
  outline: none;
  font-size: 1rem;
  min-height: var(--tap-min);
}
.hero-search button {
  padding: .875rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  min-height: var(--tap-min);
  transition: background .15s;
}
.hero-search button:hover { background: #c2410c; }

@media (min-width: 480px) {
  .hero { padding: 3.5rem 0; }
  .hero h1 { font-size: 2.1rem; }
  .hero-search { flex-direction: row; border-radius: 50px; }
  .hero-search button { border-radius: 0; }
}
@media (min-width: 768px) {
  .hero h1 { font-size: 2.6rem; }
}

/* --- Sections --------------------------------- */
.section { padding: 2rem 0; }
@media (min-width: 768px) { .section { padding: 3rem 0; } }

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
@media (min-width: 768px) { .section-title { font-size: 1.5rem; } }

/* --- Grilles ---------------------------------- */
/* Mobile : 1 colonne */
.grid-2,
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 768px) {
  .grid-2 { gap: 1.5rem; }
}

/* --- Carte produit --------------------------- */
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
@media (min-width: 768px) {
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }
}

.product-card-img {
  aspect-ratio: 4/3;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: .75rem;
}

.product-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.product-card-cat  { font-size: .7rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
.product-card-name { font-size: .95rem; font-weight: 700; line-height: 1.3; }
.product-card-model { font-size: .75rem; color: var(--text-muted); font-family: monospace; }

.product-card-score {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}
.score-label-text { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.product-card-footer { padding: .875rem 1rem; border-top: 1px solid var(--border); }

.btn-avis {
  display: block;
  width: 100%;
  padding: .7rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
  min-height: var(--tap-min);
  transition: background .15s;
}
.btn-avis:hover { background: var(--primary-dark); text-decoration: none; }

/* --- Carte catégorie ------------------------- */
.cat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  transition: transform .2s, box-shadow .2s;
}
.cat-card:hover { text-decoration: none; }
@media (min-width: 768px) {
  .cat-card { padding: 1.5rem; }
  .cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
}
.cat-icon {
  font-size: 1.6rem;
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.cat-info h3 { font-size: .9rem; font-weight: 700; color: var(--text); }
.cat-info p  { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; display: none; }
.cat-count {
  display: inline-block;
  margin-top: .4rem;
  padding: .1rem .5rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
}
@media (min-width: 640px) { .cat-info p { display: block; } }

/* --- Page catégorie -------------------------- */
.cat-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
@media (min-width: 768px) { .cat-header { padding: 2rem 0; } }
.cat-header h1 { font-size: 1.4rem; font-weight: 700; }
.cat-header p  { color: var(--text-muted); margin-top: .4rem; font-size: .9rem; }
@media (min-width: 768px) { .cat-header h1 { font-size: 2rem; } }

.cat-breadcrumb {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.cat-breadcrumb a { color: var(--primary); }

/* Layout cat : colonne sur mobile, sidebar+content sur desktop */
.cat-layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0;
}
@media (min-width: 1024px) {
  .cat-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
  }
}

.cat-filters {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .cat-filters {
    padding: 1.5rem;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}
.cat-filters h3 { font-size: .9rem; font-weight: 700; margin-bottom: .875rem; }

/* Sur mobile, filtres en ligne */
.cat-filters form {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .cat-filters form { display: block; }
}

.filter-group { flex: 1; min-width: 140px; }
@media (min-width: 1024px) { .filter-group { margin-bottom: 1.1rem; } }
.filter-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.filter-group select {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: .875rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748b' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .5rem center;
  background-size: 1.25rem;
  padding-right: 2rem;
  cursor: pointer;
  min-height: var(--tap-min);
}

/* --- Page produit ---------------------------- */
.product-hero {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
@media (min-width: 768px) { .product-hero { padding: 2rem 0; } }

/* Mobile : image au-dessus, infos en-dessous */
.product-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .product-hero-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.product-hero-img {
  background: #f1f5f9;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}
.product-hero-img img { max-height: 220px; object-fit: contain; }
@media (min-width: 900px) {
  .product-hero-img { max-width: none; margin: 0; }
  .product-hero-img img { max-height: 270px; }
}

.product-hero-meta { display: flex; flex-direction: column; gap: .875rem; }
.product-hero-cat { font-size: .75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; }
.product-hero-title { font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
@media (min-width: 768px) { .product-hero-title { font-size: 2rem; } }
.product-hero-model {
  font-family: monospace;
  font-size: .85rem;
  color: var(--text-muted);
  background: var(--bg);
  padding: .2rem .5rem;
  border-radius: 4px;
  display: inline-block;
}

.product-hero-score-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.score-big {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  font-size: 1.3rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
@media (min-width: 768px) { .score-big { width: 4rem; height: 4rem; font-size: 1.5rem; } }
.score-big-label { font-size: .8rem; color: var(--text-muted); }
.score-big-text  { font-size: 1rem; font-weight: 700; }

/* Liens affiliation */
.affiliate-links { display: flex; flex-direction: column; gap: .6rem; }
.aff-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  min-height: var(--tap-min);
  text-decoration: none;
  transition: opacity .15s;
}
.aff-btn:hover { opacity: .9; text-decoration: none; }
.aff-btn.amazon    { background: #FF9900; color: #111; }
.aff-btn.fnac      { background: #E2A020; color: #fff; }
.aff-btn.darty     { background: #E30613; color: #fff; }
.aff-btn.boulanger { background: #0066CC; color: #fff; }
.aff-btn.default   { background: var(--primary); color: #fff; }
.aff-btn-arrow { font-size: 1.1rem; }
.aff-disclaimer { font-size: .72rem; color: var(--text-light); margin-top: .25rem; }

/* --- Layout fiche produit -------------------- */
/* Mobile : tout en colonne */
.product-page-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem 0 2rem;
}
/* Desktop : contenu + sidebar droite */
@media (min-width: 1024px) {
  .product-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
  }
}
.product-main-col { display: flex; flex-direction: column; gap: 1.5rem; }
.product-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .product-sidebar-col { position: sticky; top: calc(var(--header-h) + 1rem); }
}

/* --- Pros/Cons -------------------------------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}
.pros-box, .cons-box { border-radius: var(--radius-lg); padding: 1.1rem; }
.pros-box { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-box { background: #fff7ed; border: 1px solid #fed7aa; }
.pros-box h3 { color: var(--success); }
.cons-box h3 { color: var(--accent); }
.pros-cons h3 { font-size: .9rem; font-weight: 700; margin-bottom: .65rem; display: flex; align-items: center; gap: .5rem; }
.pros-cons ul { display: flex; flex-direction: column; gap: .45rem; }
.pros-cons li { font-size: .875rem; display: flex; gap: .45rem; align-items: flex-start; }
.pros-box li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.cons-box li::before { content: '×'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* --- Notes barres ----------------------------- */
.scores-grid { display: flex; flex-direction: column; gap: .875rem; }
.score-item  { display: flex; flex-direction: column; gap: .3rem; }
.score-item-label { font-size: .82rem; color: var(--text-muted); display: flex; justify-content: space-between; }
.score-item-label strong { color: var(--text); font-weight: 600; }
.score-bar { height: 8px; background: var(--border); border-radius: 50px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 50px; width: 0; transition: width .6s ease; }

/* --- Description produit --------------------- */
.product-description {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
@media (min-width: 768px) { .product-description { padding: 2rem; } }
.product-description h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-top: 1.25rem; margin-bottom: .6rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--primary-light);
}
.product-description h3:first-child { margin-top: 0; }
.product-description p  { margin-bottom: .65rem; }
.product-description ul { margin: .65rem 0 .65rem 1.25rem; list-style: disc; }
.product-description li { margin-bottom: .3rem; }

/* --- Specs table ----------------------------- */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: #f8fafc; }
.specs-table td {
  padding: .65rem .875rem;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
  vertical-align: top;
}
.specs-table td:first-child { color: var(--text-muted); width: 42%; font-weight: 500; }

/* --- Comparateur ----------------------------- */
.compare-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px)  { .compare-selector { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .compare-selector { grid-template-columns: repeat(3, 1fr); } }

.compare-slot {
  background: var(--bg-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  min-height: 160px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
}
.compare-slot.filled { border-style: solid; border-color: var(--primary); }

/* Table avec scroll horizontal sur mobile */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.compare-table th, .compare-table td {
  padding: .75rem .875rem;
  text-align: center;
  border: 1px solid var(--border);
  font-size: .85rem;
}
.compare-table th { background: var(--primary-dark); color: #fff; font-weight: 600; }
.compare-table tr:nth-child(even) td { background: #f8fafc; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--text-muted); background: var(--bg); }
.compare-best { color: var(--success); font-weight: 700; }

/* --- Card générique -------------------------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
}
@media (min-width: 768px) { .card { padding: 1.5rem; } }

/* --- Breadcrumb ------------------------------ */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem;
  font-size: .8rem; color: var(--text-muted);
  padding: .875rem 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb-sep { color: var(--border-dark); }

/* --- Pagination ------------------------------ */
.pagination {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .4rem; margin-top: 1.5rem;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.5rem; height: 2.5rem; padding: 0 .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 500;
  background: var(--bg-white); color: var(--text);
  min-height: var(--tap-min);
  transition: background .15s;
}
.pagination a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* --- Alerts ---------------------------------- */
.alert {
  padding: .875rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
}
.alert-info    { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.alert-success { background: #f0fdf4; border-color: var(--success); color: #14532d; }
.alert-warning { background: #fffbeb; border-color: var(--warning); color: #92400e; }
.alert-danger  { background: #fef2f2; border-color: var(--danger); color: #991b1b; }

/* --- Footer ---------------------------------- */
.site-footer { background: #0f172a; color: rgba(255,255,255,.65); margin-top: 3rem; }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}
@media (min-width: 640px) {
  .footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding: 3rem 0; }
}

.footer-logo { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.footer-desc { font-size: .82rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: .875rem; font-weight: 600; margin-bottom: .6rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .35rem; }
.footer-col a  { color: rgba(255,255,255,.6); font-size: .82rem; min-height: var(--tap-min); display: flex; align-items: center; transition: color .15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.4); text-align: center; }

/* --- Overlay nav mobile --------------------- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 198;
}
.nav-overlay.open { display: block; }
@media (min-width: 768px) { .nav-overlay { display: none !important; } }
