/* =============================================
   FENVO — STYLESHEET COMPLET
   Couleurs : #0047AB #cc0000 #ffaa00 #000000
   ============================================= */

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

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

.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;
}
.fv-topbar span { color: #a0c0f0; font-size: 11px; }
.fv-topbar span 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: #ffffff !important; padding: 12px 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important; border-bottom: 3px solid var(--blue) !important; }
.fv-header-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.fv-logo a { display: block; }
.fv-logo-text { font-size: 32px; font-weight: 900; color: white; letter-spacing: -1px; line-height: 1; display: block; }
.fv-logo-text em { color: var(--gold); font-style: normal; }
.fv-logo-sub { font-size: 9px; color: #a0c0ff; letter-spacing: 3px; text-transform: uppercase; display: block; }

.fv-search { flex: 1; display: flex; background: white; border-radius: 6px; overflow: hidden; min-width: 200px; }
.fv-search input { flex: 1; border: none; padding: 11px 16px; font-size: 13px; outline: none; }
.fv-search button { background: var(--gold); border: none; padding: 11px 20px; font-weight: 800; font-size: 13px; color: #000; cursor: pointer; white-space: nowrap; transition: background .2s; }
.fv-search button:hover { background: #e89900; }

.fv-header-actions { display: flex; gap: 18px; }
.fv-action { color: var(--blue-dark) !important; font-size: 11px; text-align: center; cursor: pointer; opacity: .9; transition: opacity .2s; position: relative; }
.fv-action:hover { opacity: 1; }
.fv-action-icon { font-size: 20px; display: block; margin-bottom: 2px; }
.fv-cart-count {
  position: absolute;
  top: -4px; right: -8px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  width: 16px; height: 16px;
  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); }
.fv-nav-inner { display: flex; flex-wrap: wrap; }
.fv-nav a {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  display: block;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.fv-nav a:hover, .fv-nav a.fv-active { color: white; border-bottom-color: var(--gold); }
.fv-nav a.fv-hot { color: var(--gold); }
.fv-nav a.fv-hot:hover { color: white; }

/* ---- TRUST BAR ---- */
.fv-trustbar { background: white; border-bottom: 1px solid var(--gray-border); padding: 9px 24px; }
.fv-trustbar-inner { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.fv-trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #333; font-weight: 600; }

/* ---- BODY LAYOUT ---- */
.fv-body { display: flex; gap: 14px; padding: 14px 20px; align-items: flex-start; max-width: 1200px; margin: 0 auto; }

/* ---- SIDEBAR ---- */
.fv-sidebar { width: 175px; flex-shrink: 0; }

.fv-catbox { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); overflow: hidden; margin-bottom: 12px; }
.fv-catbox-hdr { background: var(--blue); color: white; font-size: 12px; font-weight: 700; padding: 11px 14px; }
.fv-catlist { list-style: none; }
.fv-catlist li { border-bottom: 1px solid #f0f4f8; }
.fv-catlist li a { display: flex; align-items: center; gap: 9px; padding: 9px 14px; font-size: 12px; color: #333; transition: all .2s; }
.fv-catlist li a:hover { background: #f0f5ff; color: var(--blue); padding-left: 18px; }

.fv-why-box { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); padding: 14px; }
.fv-why-box h4 { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.fv-why-row { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.fv-why-row:last-child { margin-bottom: 0; }
.fv-why-ico { width: 32px; height: 32px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; background: #f0f5ff; }
.fv-why-row strong { font-size: 11px; color: #111; display: block; font-weight: 700; }
.fv-why-row span { font-size: 10px; color: #888; }

/* ---- MAIN ---- */
.fv-main { flex: 1; min-width: 0; }

/* ---- SLIDER ---- */
.fv-slider { position: relative; border-radius: 10px; overflow: hidden; height: 230px; margin-bottom: 14px; }
.fv-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; padding: 0 50px; }
.fv-slide.fv-active { opacity: 1; }
.fv-sl1 { background: linear-gradient(120deg, #0047AB 0%, #001f5b 100%); }
.fv-sl2 { background: linear-gradient(120deg, #cc0000 0%, #6a0000 100%); }
.fv-sl3 { background: linear-gradient(120deg, #1a1a2e 0%, #0f3460 100%); }
.fv-sl-grid { position: absolute; inset: 0; opacity: .05; background-image: repeating-linear-gradient(0deg,#fff,#fff 1px,transparent 1px,transparent 22px), repeating-linear-gradient(90deg,#fff,#fff 1px,transparent 1px,transparent 22px); }
.fv-sl-circle { position: absolute; right: 36px; top: 50%; transform: translateY(-50%); width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,.06); border: 2px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 66px; }
.fv-sl-content { position: relative; z-index: 2; max-width: 56%; }
.fv-sl-tag { background: var(--gold); color: #000; font-size: 10px; font-weight: 800; padding: 3px 12px; border-radius: 20px; display: inline-block; margin-bottom: 10px; letter-spacing: 1px; text-transform: uppercase; }
.fv-sl-content h2 { color: white; font-size: 26px; font-weight: 900; line-height: 1.2; margin-bottom: 8px; }
.fv-sl-content p { color: rgba(255,255,255,.8); font-size: 13px; margin-bottom: 18px; }
.fv-sl-btn { background: var(--gold); color: #000; padding: 10px 22px; border-radius: 25px; font-size: 13px; font-weight: 800; display: inline-block; transition: all .2s; }
.fv-sl-btn:hover { background: white; }
.fv-sl-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 12px; z-index: 5; pointer-events: none; }
.fv-sl-arr { background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25); color: white; width: 34px; height: 34px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; pointer-events: all; transition: all .2s; }
.fv-sl-arr:hover { background: rgba(255,255,255,.35); }
.fv-sl-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.fv-sl-dot { width: 22px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); cursor: pointer; transition: all .3s; }
.fv-sl-dot.fv-on { background: var(--gold); width: 34px; }

/* ---- SERVICES ---- */
.fv-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.fv-svc { background: white; border-radius: var(--radius); padding: 12px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--gray-border); transition: all .2s; }
.fv-svc:hover { border-color: var(--blue); }
.fv-svc-ico { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.fv-svc-ico.red { background: #fff0f0; }
.fv-svc-ico.blue { background: #f0f5ff; }
.fv-svc-ico.gold { background: #fff8e0; }
.fv-svc strong { font-size: 12px; color: #111; display: block; font-weight: 700; }
.fv-svc span { font-size: 10px; color: var(--text-muted); }

/* ---- SECTION HEADER ---- */
.fv-sec-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fv-sec-hdr h3 { font-size: 15px; font-weight: 800; color: #111; display: flex; align-items: center; gap: 8px; }
.fv-sec-hdr h3::before { content: ''; display: inline-block; width: 4px; height: 20px; background: var(--red); border-radius: 2px; flex-shrink: 0; }
.fv-sec-hdr a { font-size: 11px; color: var(--blue); font-weight: 700; border: 1.5px solid var(--blue); padding: 5px 12px; border-radius: 20px; transition: all .2s; }
.fv-sec-hdr a:hover { background: var(--blue); color: white; }

/* ---- PRODUCT GRID ---- */
.fv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.fv-grid-shop { grid-template-columns: repeat(3, 1fr); }

.fv-pcard { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); overflow: hidden; cursor: pointer; transition: all .2s; position: relative; }
.fv-pcard:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,71,171,.1); }
.fv-pcard-img { height: 120px; background: #f8f9fc; display: flex; align-items: center; justify-content: center; font-size: 46px; position: relative; overflow: hidden; }
.fv-pcard-img img { width: 100%; height: 100%; object-fit: cover; }

.fv-badge { position: absolute; top: 8px; left: 8px; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 4px; z-index: 1; }
.bdg-r { background: var(--red); color: white; }
.bdg-b { background: var(--blue); color: white; }
.bdg-g { background: var(--gold); color: #000; }

.fv-fav { position: absolute; top: 8px; right: 8px; background: white; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; border: 1px solid #eee; cursor: pointer; transition: all .2s; }
.fv-fav:hover { transform: scale(1.15); }

.fv-pcard-body { padding: 10px; }
.fv-pcard-body h4 { font-size: 11px; color: #222; margin-bottom: 6px; line-height: 1.4; height: 32px; overflow: hidden; font-weight: 600; }
.fv-prices { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.fv-new-price { color: var(--red); font-size: 15px; font-weight: 800; }
.fv-old-price { color: #bbb; font-size: 10px; text-decoration: line-through; }
.fv-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 3px; }
.fv-stars { color: var(--gold); font-size: 11px; }
.fv-rating span { font-size: 10px; color: #888; }
.fv-sold-count { font-size: 10px; color: #aaa; margin-bottom: 8px; }
.fv-add-btn { width: 100%; background: var(--blue); color: white; border: none; padding: 7px; font-size: 11px; font-weight: 700; cursor: pointer; border-radius: 5px; transition: background .2s; letter-spacing: .3px; }
.fv-add-btn:hover { background: var(--red); }

/* ---- BANNERS ---- */
.fv-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.fv-bnr { border-radius: var(--radius); padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; overflow: hidden; }
.bnr-blue { background: linear-gradient(120deg, #0047AB, #001f5b); }
.bnr-red  { background: linear-gradient(120deg, #cc0000, #6a0000); }
.fv-bnr h4 { color: white; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.fv-bnr p  { color: rgba(255,255,255,.7); font-size: 11px; margin-bottom: 12px; }
.fv-bnr a  { background: rgba(255,255,255,.15); color: white; font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,.3); transition: all .2s; display: inline-block; }
.fv-bnr a:hover { background: white; color: #333; }
.fv-bnr-ico { font-size: 50px; opacity: .5; }

/* ---- BREADCRUMB ---- */
.fv-breadcrumb { font-size: 12px; color: #888; margin-bottom: 16px; }
.fv-breadcrumb a { color: var(--blue); }
.fv-breadcrumb a:hover { text-decoration: underline; }
.fv-page-title { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 20px; }

/* ---- SHOP LAYOUT ---- */
.fv-shop-layout { display: flex; gap: 16px; align-items: flex-start; }
.fv-shop-filter { width: 190px; flex-shrink: 0; }
.fv-filter-box { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); padding: 14px; margin-bottom: 12px; }
.fv-filter-box h4 { font-size: 12px; font-weight: 700; color: #111; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid #f0f0f0; }
.fv-filter-list { list-style: none; }
.fv-filter-list li { margin-bottom: 6px; }
.fv-filter-list li a { font-size: 12px; color: #555; transition: color .2s; }
.fv-filter-list li a:hover, .fv-filter-list li.active a { color: var(--blue); font-weight: 700; }
.fv-price-range input { width: 100%; accent-color: var(--blue); }
.fv-price-labels { display: flex; justify-content: space-between; font-size: 11px; color: #888; margin-top: 6px; }
.fv-shop-main { flex: 1; min-width: 0; }
.fv-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); padding: 10px 14px; }
.fv-result-count { font-size: 12px; color: #555; }
.fv-sort select { border: 1px solid var(--gray-border); border-radius: 4px; padding: 5px 10px; font-size: 12px; outline: none; cursor: pointer; }
.fv-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.fv-page-btn { width: 34px; height: 34px; border: 1px solid var(--gray-border); border-radius: 5px; background: white; font-size: 13px; cursor: pointer; transition: all .2s; }
.fv-page-btn:hover, .fv-page-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ---- CONTACT PAGE ---- */
.fv-contact-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }
.fv-contact-form-box { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); padding: 24px; }
.fv-contact-form-box h3 { font-size: 16px; font-weight: 800; margin-bottom: 20px; color: #111; }
.fv-form-group { margin-bottom: 16px; }
.fv-form-group label { display: block; font-size: 12px; font-weight: 700; 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: 5px; padding: 10px 12px; font-size: 13px; outline: none; transition: border-color .2s; font-family: inherit; }
.fv-form-group input:focus, .fv-form-group select:focus, .fv-form-group textarea:focus { border-color: var(--blue); }
.fv-submit-btn { background: var(--blue); color: white; border: none; padding: 12px 28px; border-radius: 25px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; }
.fv-submit-btn:hover { background: var(--red); }
.fv-contact-info { display: flex; flex-direction: column; gap: 12px; }
.fv-info-card { background: white; border-radius: var(--radius); border: 1px solid var(--gray-border); padding: 14px; display: flex; align-items: center; gap: 12px; }
.fv-info-ico { font-size: 24px; width: 44px; height: 44px; background: #f0f5ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fv-info-card strong { display: block; font-size: 12px; font-weight: 700; color: #111; margin-bottom: 2px; }
.fv-info-card span { font-size: 12px; color: #555; }
.fv-whatsapp-btn { background: #25D366; color: white; padding: 13px; border-radius: var(--radius); font-size: 14px; font-weight: 700; text-align: center; display: block; transition: background .2s; }
.fv-whatsapp-btn:hover { background: #1da851; }

/* ---- FOOTER ---- */
.fv-footer { background: var(--blue-dark); padding: 30px 24px 0; margin-top: 30px; }
.fv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); max-width: 1200px; margin: 0 auto; }
.fv-footer-logo { font-size: 26px; font-weight: 900; color: white; margin-bottom: 10px; display: block; }
.fv-footer-logo em { color: var(--gold); font-style: normal; }
.fv-footer-desc { color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.8; }
.fv-footer h5 { color: var(--gold); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.fv-footer ul { list-style: none; }
.fv-footer ul li { margin-bottom: 7px; }
.fv-footer ul li a { color: rgba(255,255,255,.55); font-size: 12px; transition: color .2s; }
.fv-footer ul li a:hover { color: var(--gold); }
.fv-contact-line { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; color: rgba(255,255,255,.6); font-size: 12px; }
.fv-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); }
.fv-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; flex-wrap: wrap; gap: 8px; max-width: 1200px; margin: 0 auto; }
.fv-footer-bottom p { color: rgba(255,255,255,.35); font-size: 11px; }
.fv-pay-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.fv-pay { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }

/* ---- SECTION VIDÉOS ---- */
.fv-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.fv-video-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: all .2s;
}
.fv-video-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,71,171,.1);
}
.fv-video-wrap {
  position: relative;
  width: 100%;
  background: #000;
}
.fv-video-wrap video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.fv-video-info {
  padding: 12px 14px;
}
.fv-video-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.fv-video-info p {
  font-size: 11px;
  color: #777;
  margin-bottom: 10px;
}
.fv-video-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background .2s;
}
.fv-video-btn:hover { background: var(--red); }

@media (max-width: 900px) {
  .fv-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fv-video-grid { grid-template-columns: 1fr; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .fv-body { flex-direction: column; }
  .fv-sidebar { width: 100%; }
  .fv-grid { grid-template-columns: repeat(2, 1fr); }
  .fv-footer-grid { grid-template-columns: 1fr 1fr; }
  .fv-shop-layout { flex-direction: column; }
  .fv-shop-filter { width: 100%; }
  .fv-contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fv-header-inner { flex-wrap: wrap; }
  .fv-header-actions { display: none; }
  .fv-slider { height: 180px; }
  .fv-sl-circle { display: none; }
  .fv-sl-content { max-width: 100%; }
  .fv-sl-content h2 { font-size: 18px; }
  .fv-services { grid-template-columns: 1fr; }
  .fv-banners { grid-template-columns: 1fr; }
  .fv-topbar { display: none; }
  .fv-trustbar-inner { gap: 10px; }
  .fv-footer-grid { grid-template-columns: 1fr; }
}

/* ---- AVIS CLIENTS ---- */
.fv-avis-section { margin-top: 30px; }
.fv-avis-titre { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.fv-avis-titre::before { content: ''; display: inline-block; width: 4px; height: 20px; background: #ffaa00; border-radius: 2px; }
.fv-avis-liste { margin-bottom: 24px; }
.fv-avis-item { background: white; border-radius: 8px; border: 1px solid #e4eaf2; padding: 14px 16px; margin-bottom: 10px; }
.fv-avis-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.fv-avis-nom { font-size: 13px; font-weight: 700; color: #111; }
.fv-avis-stars { color: #ffaa00; font-size: 14px; }
.fv-avis-date { font-size: 11px; color: #aaa; margin-left: auto; }
.fv-avis-texte { font-size: 13px; color: #444; line-height: 1.6; margin: 0; }
.fv-avis-form { background: white; border-radius: 8px; border: 1px solid #e4eaf2; padding: 20px; }
.fv-avis-form h4 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 16px; }
.fv-star-select { display: flex; gap: 6px; margin-top: 6px; }
.fv-star-select span { font-size: 28px; color: #ffaa00; cursor: pointer; transition: transform .15s; }
.fv-star-select span:hover { transform: scale(1.2); }

/* ---- CAROUSEL IMAGES PRODUIT ---- */
.fv-car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border: none;
  width: 24px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background .2s;
  padding: 0;
}
.fv-car-btn:hover { background: white; }
.fv-car-prev { left: 0; border-radius: 0 4px 4px 0; }
.fv-car-next { right: 0; border-radius: 4px 0 0 4px; }
.fv-car-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
}
.fv-car-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: all .2s;
}
.fv-car-dot-on {
  background: #ffaa00;
  width: 14px;
  border-radius: 3px;
}

/* ---- FONT AWESOME ICONS ---- */
.fv-footer ul li a i { margin-right: 6px; font-size: 11px; opacity: .7; }
.fv-catlist li a i { margin-right: 6px; font-size: 13px; }
.fv-nav a i { margin-right: 4px; }
.fv-trust-item i { margin-right: 5px; }
.fv-why-ico i { font-size: 16px; }
.fv-svc-ico i { font-size: 22px; }
.fv-fav i { font-size: 14px; color: #888; }
.fv-fav:hover i { color: #cc0000; }
.fv-add-btn i { margin-right: 5px; }
.fv-sec-hdr a i { font-size: 11px; }
.fv-video-btn i { margin-left: 4px; }
.fv-sl-arr i { font-size: 16px; }

/* =============================================
   FENVO CHATBOT IA
   ============================================= */
#fv-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #0047AB, #002776);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,71,171,.4);
  transition: all .3s;
}
#fv-chat-btn:hover { transform: scale(1.1); }
#fv-chat-btn.active { background: linear-gradient(135deg, #cc0000, #8a0000); }
#fv-chat-btn i { font-size: 24px; color: white; }
.fv-chat-notif {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #cc0000;
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
#fv-chat-box {
  position: fixed;
  bottom: 94px;
  right: 24px;
  width: 340px;
  height: 480px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  z-index: 998;
  overflow: hidden;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  transform-origin: bottom right;
}
#fv-chat-box.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.fv-chat-hdr {
  background: linear-gradient(135deg, #0047AB, #002776);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.fv-chat-avatar {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-chat-avatar i { font-size: 18px; color: white; }
.fv-chat-name { color: white; font-size: 14px; font-weight: 700; }
.fv-chat-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,.75); }
.fv-online-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.fv-chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.7); font-size: 18px; cursor: pointer; padding: 4px; border-radius: 4px; transition: all .2s; }
.fv-chat-close:hover { color: white; background: rgba(255,255,255,.15); }

.fv-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f9fc;
}
.fv-msg { display: flex; }
.fv-msg-user { justify-content: flex-end; }
.fv-msg-bot { justify-content: flex-start; }
.fv-msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.fv-msg-user .fv-msg-bubble {
  background: #0047AB;
  color: white;
  border-bottom-right-radius: 4px;
}
.fv-msg-bot .fv-msg-bubble {
  background: white;
  color: #333;
  border: 1px solid #e4eaf2;
  border-bottom-left-radius: 4px;
}
.fv-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 0;
}
.fv-quick-replies button {
  background: white;
  border: 1.5px solid #0047AB;
  color: #0047AB;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.fv-quick-replies button:hover { background: #0047AB; color: white; }

.fv-typing {
  display: flex;
  gap: 4px;
  padding: 12px 14px;
  background: white;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.fv-typing span {
  width: 8px;
  height: 8px;
  background: #0047AB;
  border-radius: 50%;
  animation: typing .8s infinite;
}
.fv-typing span:nth-child(2) { animation-delay: .15s; }
.fv-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-6px);opacity:1} }

.fv-chat-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  margin-top: 4px;
}
.fv-chat-wa-btn:hover { background: #1da851; }

.fv-chat-input-zone {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
  background: white;
  flex-shrink: 0;
}
.fv-chat-input-zone input {
  flex: 1;
  border: 1px solid #e4eaf2;
  border-radius: 25px;
  padding: 9px 16px;
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.fv-chat-input-zone input:focus { border-color: #0047AB; }
.fv-chat-input-zone button {
  width: 38px;
  height: 38px;
  background: #0047AB;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.fv-chat-input-zone button:hover { background: #cc0000; }

@media(max-width:400px) {
  #fv-chat-box { width: calc(100vw - 32px); right: 16px; }
}

/* ---- IMAGES FLOTTANTES SLIDER ---- */
.fv-sl-imgs {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.fv-sl-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  border: 3px solid rgba(255,255,255,.2);
}
.fv-sl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fv-sl-img1 {
  width: 160px;
  height: 160px;
  right: 120px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  animation: float1 3s ease-in-out infinite;
  z-index: 3;
}
.fv-sl-img2 {
  width: 130px;
  height: 130px;
  right: 30px;
  top: 50%;
  transform: translateY(-70%) rotate(8deg);
  animation: float2 3.5s ease-in-out infinite;
  z-index: 2;
}
.fv-sl-img3 {
  width: 110px;
  height: 110px;
  right: 60px;
  bottom: 30px;
  transform: rotate(-4deg);
  animation: float3 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes float1 {
  0%, 100% { transform: translateY(-50%) rotate(-6deg); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(-6deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(-70%) rotate(8deg); }
  50% { transform: translateY(calc(-70% - 10px)) rotate(8deg); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-14px); }
}
@media(max-width: 768px) {
  .fv-sl-imgs { display: none; }
}

/* ---- CORRECTION IMAGES FLOTTANTES ---- */
.fv-slide { position: relative; overflow: hidden; }
.fv-sl-imgs {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  bottom: auto !important;
  width: 320px !important;
  height: 100% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}
.fv-sl-img {
  position: absolute !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 15px 40px rgba(0,0,0,.35) !important;
  border: 3px solid rgba(255,255,255,.25) !important;
}
.fv-sl-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.fv-sl-img1 {
  width: 150px !important;
  height: 150px !important;
  right: 140px !important;
  top: 50% !important;
  transform: translateY(-55%) rotate(-8deg) !important;
  animation: fvFloat1 3s ease-in-out infinite !important;
  z-index: 3 !important;
}
.fv-sl-img2 {
  width: 120px !important;
  height: 120px !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-75%) rotate(6deg) !important;
  animation: fvFloat2 3.5s ease-in-out infinite !important;
  z-index: 2 !important;
}
.fv-sl-img3 {
  width: 100px !important;
  height: 100px !important;
  right: 80px !important;
  bottom: 20px !important;
  top: auto !important;
  transform: rotate(-3deg) !important;
  animation: fvFloat3 4s ease-in-out infinite !important;
  z-index: 1 !important;
}
@keyframes fvFloat1 {
  0%,100%{transform:translateY(-55%) rotate(-8deg)}
  50%{transform:translateY(calc(-55% - 12px)) rotate(-8deg)}
}
@keyframes fvFloat2 {
  0%,100%{transform:translateY(-75%) rotate(6deg)}
  50%{transform:translateY(calc(-75% - 10px)) rotate(6deg)}
}
@keyframes fvFloat3 {
  0%,100%{transform:rotate(-3deg) translateY(0)}
  50%{transform:rotate(-3deg) translateY(-12px)}
}
.fv-sl-content { position: relative; z-index: 5; max-width: 55%; }
@media(max-width:900px){ .fv-sl-imgs{display:none!important} .fv-sl-content{max-width:100%!important} }

/* ---- RÉSEAUX SOCIAUX ---- */
.fv-social-links { display:flex; gap:10px; margin-top:14px; }
.fv-social { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:15px; color:white; text-decoration:none; transition:transform .2s, opacity .2s; }
.fv-social:hover { transform:scale(1.15); opacity:.9; }
.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; }

/* ---- BARRE DE RECHERCHE SUGGESTIONS ---- */
.fv-search { position: relative !important; }
#fv-search-drop { 
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: white !important;
  border-radius: 0 0 10px 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  z-index: 99999 !important;
  border: 1px solid #e4eaf2 !important;
  border-top: none !important;
}
