/* =============================================
   FENVO — CSS COMPLET UNIFIÉ
   Couleurs : bleu #0047AB, rouge #cc0000, or #ffaa00
   ============================================= */

:root {
  --blue: #0047AB;
  --blue-dark: #001f5b;
  --blue-mid: #003a8c;
  --red: #cc0000;
  --gold: #ffaa00;
  --black: #111;
  --gray-light: #f4f6f9;
  --gray-border: #e4eaf2;
  --text-muted: #777;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Arial, sans-serif; background: var(--gray-light); color: var(--black); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

.fv-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ TOPBAR ============ */
.fv-topbar {
  background: var(--blue-dark);
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.fv-topbar span { color: #a0c0f0; font-size: 11px; }
.fv-topbar b { color: var(--gold); }
.fv-topbar .sep { color: rgba(255,255,255,.2); margin: 0 8px; }
.fv-topbar-right { display: flex; align-items: center; gap: 4px; }

/* ============ HEADER ============ */
.fv-header {
  background: var(--blue);
  padding: 12px 24px;
  position: sticky;
  top: 28px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  border-bottom: 3px solid var(--blue-dark);
}
.fv-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.fv-logo { flex-shrink: 0; display: flex; align-items: center; }
.fv-logo img { height: 52px; width: auto; display: block; }

/* Logo texte (fallback si pas d'image) */
.fv-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fv-logo-name {
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 1;
  -webkit-text-stroke: 1px #fff;
}
.fv-logo-sub {
  background: #c8161d;
  color: white;
  font-size: 9px;
  font-style: italic;
  padding: 2px 10px;
  border-radius: 3px;
  margin-top: 3px;
  font-family: Georgia, serif;
  font-weight: bold;
}

/* Search bar */
.fv-search {
  flex: 1;
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  min-width: 200px;
  height: 44px;
  max-width: 700px;
}
.fv-search input {
  flex: 1;
  border: none;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
}
.fv-search button {
  background: var(--gold);
  border: none;
  padding: 0 26px;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border-radius: 30px;
  margin: 3px;
  white-space: nowrap;
}
.fv-search button:hover { background: #e89900; }

/* Actions Compte/Favoris/Panier */
.fv-header-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  align-items: center;
}
.fv-header-actions .fv-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  min-width: 48px;
  transition: color .15s;
}
.fv-header-actions .fv-action:hover { color: var(--gold); }
.fv-header-actions .fv-action:hover i { color: var(--gold); }
.fv-action-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 2px;
}
.fv-action-icon i,
.fv-header-actions .fv-action i {
  color: #fff;
  font-size: 22px;
}
.fv-header-actions .fv-action:hover .fv-action-icon i { color: var(--gold); }
.fv-cart-count {
  position: absolute;
  top: -4px;
  right: 4px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ NAV ============ */
.fv-nav {
  background: var(--blue-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 105px;
  z-index: 998;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.fv-nav-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4px;
}
.fv-nav a {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.fv-nav a:hover, .fv-nav a.fv-active {
  color: #fff;
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,.05);
}
.fv-nav a.fv-hot { color: var(--gold); }
.fv-nav a.fv-hot:hover { color: #fff; background: rgba(255,170,0,.15); }

/* ============ TRUST BAR ============ */
.fv-trustbar {
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
  padding: 10px 24px;
}
.fv-trustbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px;
}
.fv-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #555;
}
.fv-trust-item i { color: var(--blue); font-size: 15px; }

/* ============ HOME WRAP ============ */
.fv-home-wrap {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}
.fv-home-section {
  margin-bottom: 32px;
}

/* ============ SLIDER ============ */
.fv-slider {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
  padding: 40px;
  display: flex;
  align-items: center;
}
.fv-slide.fv-active { opacity: 1; }
.fv-sl1 { background: linear-gradient(120deg, #0047AB, #001f5b); }
.fv-sl2 { background: linear-gradient(120deg, #cc0000, #6a0000); }
.fv-sl3 { background: linear-gradient(120deg, #1a1a2e, #0f3460); }
.fv-sl-content { color: #fff; max-width: 60%; }
.fv-sl-tag {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.fv-sl-content h2 { font-size: 26px; line-height: 1.2; margin-bottom: 10px; }
.fv-sl-content p { font-size: 13px; opacity: .9; margin-bottom: 18px; }
.fv-sl-btn {
  background: var(--gold);
  color: #000;
  padding: 10px 26px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 800;
  display: inline-block;
}
.fv-sl-btn:hover { background: #fff; }
.fv-sl-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  pointer-events: none;
}
.fv-sl-arr {
  pointer-events: all;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}
.fv-sl-arr:hover { background: rgba(255,255,255,.35); }
.fv-sl-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.fv-sl-dot {
  width: 22px;
  height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
}
.fv-sl-dot.fv-on { background: var(--gold); width: 34px; }

/* ============ SERVICES ============ */
.fv-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.fv-svc {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gray-border);
}
.fv-svc-ico {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fv-svc-ico i { font-size: 16px; }
.fv-svc.sv1 .fv-svc-ico { background: #fff0f0; }
.fv-svc.sv1 .fv-svc-ico i { color: var(--red); }
.fv-svc.sv2 .fv-svc-ico i { color: var(--blue); }
.fv-svc.sv3 .fv-svc-ico { background: #fff7e6; }
.fv-svc.sv3 .fv-svc-ico i { color: var(--gold); }
.fv-svc strong { display: block; font-size: 13px; color: #111; }
.fv-svc span { display: block; font-size: 11px; color: #666; }

/* ============ SECTION HEADER ============ */
.fv-sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 14px;
  border-left: 4px solid var(--red);
  padding-left: 10px;
}
.fv-sec-hdr h3 { font-size: 18px; color: #111; }
.fv-sec-hdr a { color: var(--blue); font-size: 12px; font-weight: 700; }

/* ============ PRODUITS GRID ============ */
.fv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.fv-pcard {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.fv-pcard:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.1); }
.fv-pcard-img {
  position: relative;
  aspect-ratio: 1;
  background: #f8f9fc;
  overflow: hidden;
}
.fv-pcard-img img { width: 100%; height: 100%; object-fit: cover; }
.fv-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}
.fv-badge.bdg-r { background: var(--red); }
.fv-badge.bdg-b { background: var(--blue); }
.fv-badge.bdg-g { background: var(--gold); color: #000; }
.fv-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.fv-fav i { color: #999; font-size: 12px; }
.fv-fav:hover i { color: var(--red); }
.fv-pcard-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.fv-pcard h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 36px;
  color: #111;
}
.fv-prices { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.fv-new-price { font-size: 15px; font-weight: 800; color: var(--red); }
.fv-old-price { font-size: 12px; color: #999; text-decoration: line-through; }
.fv-sold-count { font-size: 11px; color: #666; }
.fv-add-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  width: 100%;
  transition: background .15s;
}
.fv-add-btn:hover { background: var(--blue-dark); }

/* ============ BANNERS ============ */
.fv-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.fv-bnr {
  border-radius: 12px;
  padding: 24px 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv-bnr.bnr-blue { background: linear-gradient(135deg, #0047AB, #001f5b); }
.fv-bnr.bnr-red { background: linear-gradient(135deg, #cc0000, #6a0000); }
.fv-bnr h4 { font-size: 18px; margin-bottom: 6px; }
.fv-bnr p { font-size: 12px; opacity: .9; margin-bottom: 12px; }
.fv-bnr a {
  background: rgba(255,255,255,.2);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}
.fv-bnr a:hover { background: rgba(255,255,255,.35); }

/* ============ PAGE BOUTIQUE — LAYOUT ============ */
.fv-breadcrumb { font-size: 12px; color: #666; padding: 14px 0 6px; }
.fv-breadcrumb a { color: var(--blue); }

.fv-shop-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 20px;
  margin: 16px 0 30px;
}
.fv-shop-filter { background: transparent; height: fit-content; }
.fv-shop-main { min-width: 0; }

.fv-filter-box {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  padding: 14px;
  margin-bottom: 12px;
}
.fv-filter-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fv-filter-list li { padding: 2px 0; }
.fv-filter-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: #333;
  font-size: 13px;
  border-radius: 6px;
  transition: all .15s;
}
.fv-filter-list li a:hover,
.fv-filter-list li.active a {
  background: #f0f5ff;
  color: var(--blue);
  font-weight: 600;
}
.fv-filter-list li a i { color: var(--blue); width: 16px; }

.fv-price-range { padding: 6px 0; }
.fv-price-range input[type=range] { width: 100%; accent-color: var(--blue); }
.fv-price-labels { display: flex; justify-content: space-between; font-size: 12px; color: #555; margin-top: 4px; }

.fv-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
}
.fv-result-count { font-size: 13px; color: #555; }
.fv-sort select {
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  color: #333;
  outline: none;
  cursor: pointer;
}

.fv-grid-shop {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.fv-pagination { display: flex; gap: 6px; margin-top: 20px; justify-content: center; }
.fv-page-btn {
  padding: 8px 14px;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  color: #333;
}
.fv-page-btn.active, .fv-page-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ============ FOOTER ============ */
.fv-footer {
  background: var(--blue-dark);
  color: #ccc;
  padding: 40px 0 0;
  margin-top: 40px;
}
.fv-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}
.fv-footer h5 { color: #fff; font-size: 14px; margin-bottom: 12px; }
.fv-footer ul li { padding: 4px 0; font-size: 13px; }
.fv-footer ul li a { color: #ccc; transition: color .15s; }
.fv-footer ul li a:hover { color: var(--gold); }
.fv-footer-logo img { height: 45px; }
.fv-footer-desc { font-size: 13px; color: rgba(255,255,255,.7); margin: 14px 0; line-height: 1.5; }
.fv-contact-line { font-size: 13px; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.fv-contact-line i { color: rgba(255,255,255,.6); font-size: 13px; }

.fv-social-links { display: flex; gap: 10px; margin-top: 12px; }
.fv-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .15s;
}
.fv-social i { color: #fff; font-size: 15px; }
.fv-social:hover { transform: translateY(-2px) scale(1.08); }
.fv-social.fb { background: #1877F2; }
.fv-social.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fv-social.tt { background: #000; }
.fv-social.wa { background: #25D366; }

.fv-footer-bottom { background: #00154a; padding: 16px 0; margin-top: 30px; }
.fv-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fv-footer-bottom p { font-size: 12px; color: rgba(255,255,255,.5); }
.fv-pay-badges { display: flex; gap: 6px; }
.fv-pay { background: rgba(255,255,255,.1); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; }

/* ============ CONTACT PAGE ============ */
.fv-contact-wrap {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}
.fv-contact-form-box {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  padding: 28px;
}
.fv-contact-form-box h2 {
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fv-form-group { margin-bottom: 16px; }
.fv-form-group label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
.fv-form-group input,
.fv-form-group select,
.fv-form-group textarea {
  width: 100%;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.fv-form-group input:focus,
.fv-form-group select:focus,
.fv-form-group textarea:focus { border-color: var(--blue); }
.fv-form-group textarea { height: 120px; resize: vertical; }
.fv-submit-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
}
.fv-submit-btn:hover { background: var(--blue-dark); }

.fv-contact-info-box { display: flex; flex-direction: column; gap: 12px; }
.fv-info-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fv-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fv-info-icon i { color: var(--blue); font-size: 16px; }
.fv-info-card strong { display: block; font-size: 13px; color: #111; }
.fv-info-card span { display: block; font-size: 12px; color: #666; }
.fv-wa-btn {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
}
.fv-wa-btn:hover { background: #1da851; }

/* ============ CHATBOT AWA ============ */
#fv-awa-btn {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99995;
  box-shadow: 0 4px 20px rgba(0,71,171,.4);
  border: none;
  color: #fff;
  font-size: 22px;
}
#fv-awa-btn i { color: #fff; font-size: 22px; }
#fv-awa-box {
  position: fixed !important;
  bottom: 94px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 130px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  z-index: 99994;
  overflow: hidden;
  transform: scale(.8) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  transform-origin: bottom right;
}
#fv-awa-box.fv-on { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 900px) {
  .fv-shop-layout { grid-template-columns: 1fr; }
  .fv-shop-filter { display: none; }
  .fv-services { grid-template-columns: 1fr 1fr; }
  .fv-banners { grid-template-columns: 1fr; }
  .fv-footer-grid { grid-template-columns: 1fr 1fr; }
  .fv-contact-wrap { grid-template-columns: 1fr; }
}

/* ===== MOBILE : header style Jumia ===== */
@media (max-width: 768px) {
  /* Topbar : masquer infos secondaires */
  .fv-topbar { font-size: 10px; padding: 5px 12px; }
  .fv-topbar-right { display: none; }

  /* Header : row 1 = logo + icônes, row 2 = barre de recherche */
  .fv-header {
    padding: 0;
    top: 0;
    position: sticky;
  }
  .fv-header-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
  }

  /* Row 1 : logo + actions */
  .fv-logo {
    order: 1;
    padding: 8px 14px;
    flex: 1;
  }
  .fv-logo img {
    height: 34px;
  }
  .fv-logo-name { font-size: 20px; }
  .fv-logo-sub { font-size: 7px; padding: 1px 6px; }

  .fv-header-actions {
    order: 2;
    gap: 0;
    padding: 6px 10px;
    flex-shrink: 0;
  }
  .fv-header-actions .fv-action {
    min-width: 38px;
    padding: 4px 6px;
    gap: 0;
  }
  /* Masquer les labels texte (Compte, Favoris, Panier) sur mobile */
  .fv-header-actions .fv-action > span:not(.fv-action-icon):not(.fv-cart-count) {
    display: none;
  }
  .fv-action-icon { font-size: 22px; margin-bottom: 0; }
  .fv-action-icon i,
  .fv-header-actions .fv-action i { font-size: 22px; }

  /* Badge panier repositionné */
  .fv-cart-count {
    top: -2px;
    right: 2px;
    width: 17px;
    height: 17px;
    font-size: 9px;
  }

  /* Row 2 : barre de recherche pleine largeur */
  .fv-search {
    order: 3;
    width: 100%;
    max-width: 100%;
    flex: none;
    border-radius: 0;
    height: 42px;
    border-top: 1px solid rgba(255,255,255,.15);
    margin: 0;
  }
  .fv-search input {
    font-size: 13px;
    padding: 0 14px;
  }
  .fv-search button {
    border-radius: 0;
    margin: 0;
    padding: 0 18px;
    font-size: 13px;
  }

  /* Nav sticky juste sous le header */
  .fv-nav { top: 97px; }
  .fv-nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .fv-nav-inner::-webkit-scrollbar { display: none; }
  .fv-nav a {
    padding: 10px 14px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Trustbar */
  .fv-trustbar { padding: 8px 12px; }
  .fv-trustbar-inner { gap: 8px; justify-content: flex-start; }
  .fv-trust-item { font-size: 11px; }

  /* Slider */
  .fv-slider { height: 200px; border-radius: 8px; }
  .fv-sl-content { max-width: 100%; }
  .fv-sl-content h2 { font-size: 17px; }
  .fv-slide { padding: 24px 20px; }

  /* Grilles produits */
  .fv-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fv-pcard h4 { font-size: 12px; min-height: 32px; }
  .fv-new-price { font-size: 13px; }

  /* Sections */
  .fv-sec-hdr h3 { font-size: 15px; }
  .fv-services { grid-template-columns: 1fr; }

  /* Footer */
  .fv-footer-grid { grid-template-columns: 1fr; }
  .fv-footer-bottom-inner { flex-direction: column; text-align: center; }
  .fv-home-wrap { padding: 0 10px; }
}

@media (max-width: 480px) {
  .fv-topbar { display: none; }
  .fv-header { top: 0; }
  .fv-nav { top: 83px; }
  .fv-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  #fv-awa-btn { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  #fv-awa-box { bottom: 80px; right: 16px; left: 16px; width: auto; }
}
