*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1428A0;
  --blue-dark:  #0b1f7a;
  --blue-light: #1a3bc4;
  --blue-pale:  #e8ebf9;
  --green:      #25D366;
  --green-dark: #1ebe5d;
  --white:      #ffffff;
  --gray-bg:    #f4f6fc;
  --gray-text:  #555;
  --black:      #111;
  --shadow-sm:  0 2px 12px rgba(20,40,160,.08);
  --shadow-md:  0 8px 30px rgba(20,40,160,.14);
  --shadow-lg:  0 16px 50px rgba(20,40,160,.18);
  --radius:     14px;
  --radius-lg:  22px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; padding-top: 72px; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,.08), var(--shadow-sm); z-index: 1000; height: 72px; }
.header-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; height: 100%; display: flex; align-items: center; gap: 24px; }
.logo img { height: 40px; width: auto; object-fit: contain; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 14px; padding: 8px 12px; border-radius: 8px; transition: background .2s, color .2s; white-space: nowrap; }
.nav a:hover, .nav a.active { background: var(--blue-pale); color: var(--blue); }
.btn-wa-header { background: var(--green); color: var(--white); padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px; white-space: nowrap; transition: all .25s; box-shadow: 0 4px 15px rgba(37,211,102,.35); display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.btn-wa-header:hover { background: var(--green-dark); transform: translateY(-2px); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--blue); margin-left: auto; }
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; box-shadow: 0 10px 30px rgba(0,0,0,.1); display: none; z-index: 999; border-top: 2px solid var(--blue-pale); }
  .nav.open { display: flex; }
  .nav a { font-size: 16px; padding: 14px 16px; border-radius: 10px; }
  .menu-toggle { display: block; }
  .btn-wa-header { display: none; }
}

/* HERO CATÉGORIES */
.cat-hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #1d4ed8 100%);
  padding: 90px 20px 70px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.cat-hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  top: -320px; left: -150px;
  pointer-events: none;
}
.cat-hero::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  background: rgba(37,211,102,.08);
  border-radius: 50%;
  bottom: -200px; right: -80px;
  pointer-events: none;
}
.cat-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cat-hero-eyebrow { display: inline-block; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.cat-hero-content h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 900; margin-bottom: 14px; letter-spacing: -.5px; }
.cat-hero-content p { font-size: clamp(.9rem, 2vw, 1.05rem); opacity: .85; line-height: 1.65; }

/* BREADCRUMB */
.breadcrumb { background: var(--gray-bg); border-bottom: 1px solid #e0e4f0; padding: 14px 20px; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.breadcrumb a { color: var(--blue); font-weight: 600; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #999; }
.breadcrumb .current { color: var(--black); font-weight: 700; }

/* GRILLE CATÉGORIES */
.categories-main { background: var(--white); padding: 60px 20px 70px; }
.categories-main-inner { max-width: 1200px; margin: 0 auto; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cat-tile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid #eaecf5;
  border-radius: var(--radius-lg);
  padding: 26px;
  text-decoration: none;
  color: var(--black);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.cat-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.cat-tile-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: var(--blue-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: transform .3s, background .3s;
}
.cat-tile:hover .cat-tile-icon { transform: scale(1.08) rotate(-4deg); }

.cat-tile-body { flex: 1; min-width: 0; }
.cat-tile-body h2 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.cat-tile-body p { font-size: 13.5px; color: var(--gray-text); line-height: 1.5; margin-bottom: 8px; }
.cat-tile-count {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 12px;
  border-radius: 20px;
}

.cat-tile-arrow {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .3s;
}
.cat-tile:hover .cat-tile-arrow { transform: translateX(6px); }

/* Variante électroménager mise en avant */
.cat-tile--electromenager { border-color: rgba(37,211,102,.4); background: linear-gradient(135deg, rgba(37,211,102,.04), rgba(20,40,160,.02)); }
.cat-tile--electromenager .cat-tile-icon { background: rgba(37,211,102,.14); }
.cat-tile--electromenager .cat-tile-count { color: var(--green-dark); background: rgba(37,211,102,.14); }
.cat-tile--electromenager:hover { border-color: var(--green); }
.cat-tile--electromenager:hover .cat-tile-arrow { color: var(--green-dark); }

/* Variante "tous les produits" */
.cat-tile--all { background: var(--gray-bg); border-style: dashed; }
.cat-tile--all .cat-tile-icon { background: var(--white); }

@media (max-width: 700px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-tile { padding: 20px; gap: 16px; }
  .cat-tile-icon { width: 54px; height: 54px; font-size: 24px; }
}

/* SPOTLIGHT ÉLECTROMÉNAGER */
.cat-spotlight {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.cat-spotlight::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  top: -200px; right: -100px;
  pointer-events: none;
}
.cat-spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.cat-spotlight-text { color: white; max-width: 480px; }
.cat-spotlight-eyebrow { color: var(--green); }
.cat-spotlight-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin: 10px 0 14px; line-height: 1.2; }
.cat-spotlight-text p { font-size: 14.5px; opacity: .85; line-height: 1.7; margin-bottom: 26px; }
.cat-spotlight-arrow { display: inline-block; margin-left: 4px; }

.cat-spotlight-icons { display: flex; gap: 16px; flex-shrink: 0; }
.spotlight-icon-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 32px;
  color: white;
  text-align: center;
  transition: transform .3s;
}
.spotlight-icon-card:hover { transform: translateY(-6px); }
.spotlight-icon-card span { font-size: 11px; font-weight: 700; opacity: .85; }

@media (max-width: 900px) {
  .cat-spotlight-inner { flex-direction: column; text-align: center; }
  .cat-spotlight-text { max-width: 100%; }
  .cat-spotlight-icons { flex-wrap: wrap; justify-content: center; }
}

/* BOUTONS GLOBAUX */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all .25s; cursor: pointer; border: none; }
.btn-wa { background: var(--green); color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.15); color: var(--white); border: 2px solid rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: white; }

/* TRUST */
.trust { padding: 60px 20px; background: var(--gray-bg); }
.trust-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.trust h2 { font-size: 22px; font-weight: 800; margin-bottom: 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card { background: white; border-radius: var(--radius); padding: 28px 20px; box-shadow: var(--shadow-sm); transition: .3s; text-align: center; }
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-icon { font-size: 36px; margin-bottom: 14px; }
.trust-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
.trust-card p { font-size: 13px; color: var(--gray-text); line-height: 1.6; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; } }

/* CTA FINAL */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 90px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before { content: ""; position: absolute; width: 500px; height: 500px; background: rgba(255,255,255,.04); border-radius: 50%; top: -200px; right: -100px; pointer-events: none; }
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 16px; opacity: .85; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
.footer { background: #0a0f2e; color: rgba(255,255,255,.7); padding: 70px 20px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,.6); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-col p { font-size: 14px; line-height: 1.8; }
.footer-socials { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.footer-socials a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-socials a:hover { color: var(--green); }
.footer-bottom { text-align: center; padding-top: 24px; font-size: 13px; opacity: .5; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 550px) { .footer-inner { grid-template-columns: 1fr; } }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.5); z-index: 1000; transition: all .3s; }
.whatsapp-float:hover { transform: scale(1.12); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }