/* =============================================
   ENERGIE MEDICAL — Clone fidèle du design original
   Couleurs extraites directement du HTML source
   ============================================= */

/* === VARIABLES EXACTES DU SITE ORIGINAL === */
:root {
  /* Header */
  --top-bar-bg: #5b5b5b;        /* barre promo grise foncée */
  --trust-bar-bg: #ffffff;
  --header-bg: #ffffff;
  --nav-hover: #dd0671;         /* rose fushia exact du mega-menu */
  --nav-text: #484848;

  /* Slider */
  --slider-bg: #F1F1F1;
  --slide-heading: #e6007e;     /* rgba(230,0,126) = #e6007e */
  --slide-sub: #313537;         /* rgba(49,53,55) */
  --slide-grey: #555555;

  /* Produits / UI */
  --blue-cta: #3cabdb;          /* bouton CTA principal */
  --blue-dark: #2a8fb8;
  --red-promo: #ec4249;         /* badge promo */
  --green-new: #5cb85c;

  /* Body */
  --body-bg: #ffffff;
  --text: #333333;
  --text-muted: #666666;
  --border: #e0e0e0;
  --border-light: #f0f0f0;

  /* Footer */
  --footer-bg: #ececec;
  --footer-text: #414141;
  --footer-link: #555555;

  /* Sidebar */
  --sidebar-bg: #f6f6f6;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.5;
}
a { text-decoration: none; color: var(--text); }
a:hover { color: var(--nav-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.clearfix::after { content: ''; display: table; clear: both; }

/* ==========================================
   1. BARRE PROMO (ligne grise tout en haut)
   ========================================== */
.surfullhead {
  background: var(--top-bar-bg);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 12px;
  line-height: 1.4;
}
.surfullhead strong { font-weight: 700; }
.promo-code {
  display: inline-block;
  background: #eeeeee;
  color: #000;
  border-radius: 50px;
  padding: 1px 10px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 3px;
}

/* ==========================================
   2. BARRE DE CONFIANCE (icônes sous promo)
   ========================================== */
.fullhead {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.fullhead-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 4px;
}
.lignefullheader {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #555;
  white-space: nowrap;
  padding: 3px 8px;
}
.lignefullheader img {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}
.lignefullheader strong {
  color: #333;
  font-weight: 700;
  display: block;
  font-size: 12px;
}
.lignefullheader span {
  color: #888;
  font-size: 11px;
}

/* ==========================================
   3. HEADER PRINCIPAL (logo + search + cart)
   ========================================== */
.header-1 {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.header-1-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.logo-col { flex-shrink: 0; }
.logo-col a { display: block; }
.logo-col img { height: 52px; width: auto; }

/* Hamburger mobile */
.menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}
.menu-btn-lines { display: flex; flex-direction: column; gap: 4px; }
.menu-btn-lines span { width: 20px; height: 2px; background: #333; display: block; }

/* Barre de recherche */
.search-col {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
}
.search-form {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color .2s;
}
.search-form:focus-within { border-color: var(--nav-hover); }
.search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  background: #fff;
}
.search-form input::placeholder { color: #aaa; }
.search-form button {
  background: var(--nav-hover);
  color: #fff;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.search-form button:hover { background: #c0055f; }

/* Icônes panier / compte */
.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #555;
  cursor: pointer;
  gap: 2px;
  transition: color .2s;
}
.header-icon:hover { color: var(--nav-hover); }
.header-icon .ico { font-size: 19px; }
.header-icon.cart-ico { position: relative; }
.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--nav-hover);
  color: #fff;
  width: 14px; height: 14px;
  border-radius: 50%;
  font-size: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ==========================================
   4. NAVIGATION MEGA-MENU
   ========================================== */
.main-nav-bar {
  background: #fff;
  border-bottom: 2px solid var(--border);
  position: relative;
  z-index: 100;
}
.main-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nav-text);
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  transition: color .15s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--nav-hover); border-bottom-color: var(--nav-hover); }
.nav-link .caret { font-size: 8px; margin-left: 2px; color: #aaa; }

/* Dropdown mega */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--nav-hover);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  z-index: 200;
  padding: 16px 20px 20px;
  min-width: 600px;
  gap: 0;
}
.nav-item:hover .mega-menu { display: flex; flex-wrap: wrap; }
.mega-col { min-width: 180px; padding: 0 16px 0 0; margin: 0 0 8px; }
.mega-col + .mega-col { border-left: 1px solid #eee; padding-left: 16px; }
.mega-col-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nav-hover);
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
  letter-spacing: .3px;
}
.mega-col ul li { margin-bottom: 4px; }
.mega-col ul li a {
  font-size: 12.5px;
  color: #555;
  display: block;
  padding: 2px 0;
  transition: all .15s;
}
.mega-col ul li a:hover { color: var(--nav-hover); padding-left: 4px; }
.mega-col ul li.has-parent > a { font-weight: 600; color: #333; }

/* ==========================================
   5. MOBILE NAV
   ========================================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 400;
}
.mobile-overlay.open { display: block; }
.mobile-nav {
  position: fixed;
  top: 0; left: -100%; bottom: 0;
  width: 85%;
  max-width: 320px;
  background: #fff;
  z-index: 500;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: 4px 0 20px rgba(0,0,0,.2);
}
.mobile-nav.open { left: 0; }
.mobile-nav-head {
  background: var(--top-bar-bg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-head .logo-txt { color: #fff; font-weight: 700; font-size: 15px; }
.mobile-nav-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}
.mobile-search { padding: 12px; border-bottom: 1px solid var(--border); }
.mobile-search input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
}
.mobile-nav-item { border-bottom: 1px solid var(--border-light); }
.mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
}
.mobile-nav-item > a .caret { font-size: 10px; color: #aaa; }
.mobile-sub { display: none; background: #fafafa; border-top: 1px solid var(--border-light); }
.mobile-sub.open { display: block; }
.mobile-sub a { display: block; padding: 9px 24px; font-size: 12.5px; color: #555; border-bottom: 1px solid var(--border-light); }
.mobile-sub a:last-child { border-bottom: none; }
.mobile-sub a:hover { color: var(--nav-hover); background: #fff5f9; }

/* ==========================================
   6. LAYOUT 2 COLONNES (slider + sidebar)
   ========================================== */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
  align-items: start;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ==========================================
   7. SLIDER HERO
   ========================================== */
.slider-wrap {
  background: var(--slider-bg);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.slide { display: none; position: relative; min-height: 300px; }
.slide.active { display: block; }
.slide-bg {
  width: 100%;
  min-height: 300px;
  background: var(--slider-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.slide-content {
  padding: 36px 44px;
  max-width: 55%;
  z-index: 2;
  position: relative;
}
.slide-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slide-grey);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.slide-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--slide-heading);
  margin-bottom: 10px;
}
.slide-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--slide-sub);
  margin-bottom: 20px;
  line-height: 1.5;
}
.slide-date {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}
.btn-slider {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nav-hover);
  color: #fff;
  padding: 10px 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-slider:hover { background: #c0055f; color: #fff; }
.slide-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  opacity: .18;
}
/* Dots du slider */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 8px;
  background: var(--slider-bg);
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.slider-dot.active { background: var(--nav-hover); }

/* ==========================================
   8. SIDEBAR DROITE
   ========================================== */
.sidebar {
  background: var(--sidebar-bg);
  border: 1px solid var(--border);
  padding: 0;
}
.sidebar-block { border-bottom: 1px solid var(--border); }
.sidebar-block:last-child { border-bottom: none; }
.sidebar-title {
  background: var(--nav-hover);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 9px 12px;
}
.sidebar-cats ul { padding: 8px 0; }
.sidebar-cats ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  font-size: 12.5px;
  color: #444;
  transition: all .15s;
}
.sidebar-cats ul li a:hover { color: var(--nav-hover); background: #fff0f5; padding-left: 16px; }
.sidebar-cats ul li a .arrow { color: #bbb; font-size: 10px; }

/* Sidebar produit card (mini) */
.sidebar-prod-list { padding: 10px; }
.sidebar-prod {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar-prod:last-child { border-bottom: none; }
.sidebar-prod-img {
  width: 54px; height: 54px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.sidebar-prod-info { flex: 1; min-width: 0; }
.sidebar-prod-name { font-size: 11.5px; color: #333; line-height: 1.3; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-prod-price { font-size: 13px; font-weight: 700; color: var(--nav-hover); }

/* ==========================================
   9. SECTIONS PRODUITS (dessous du slider)
   ========================================== */
.section-wrap { padding: 20px 0; border-top: 1px solid var(--border-light); }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding-left: 10px;
  border-left: 3px solid var(--nav-hover);
}
.see-all { font-size: 12px; color: var(--nav-hover); font-weight: 600; }
.see-all:hover { text-decoration: underline; }

/* Grille produits */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
  position: relative;
}
.prod-card:hover { box-shadow: 0 3px 12px rgba(0,0,0,.1); border-color: #ccc; }
.prod-img {
  height: 160px;
  background: var(--sidebar-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.prod-img img { width: 100%; height: 100%; object-fit: contain; }
.prod-flag {
  position: absolute;
  top: 6px; left: 6px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.flag-promo { background: var(--red-promo); color: #fff; }
.flag-new   { background: var(--green-new); color: #fff; }
.prod-body { padding: 10px; }
.prod-brand { font-size: 10.5px; color: #999; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 3px; }
.prod-name { font-size: 12.5px; color: #333; line-height: 1.35; min-height: 34px; margin-bottom: 8px; }
.prod-price { display: flex; align-items: baseline; gap: 6px; }
.price-current { font-size: 16px; font-weight: 700; color: var(--nav-hover); }
.price-old { font-size: 12px; color: #aaa; text-decoration: line-through; }
.price-discount { font-size: 11px; color: var(--red-promo); font-weight: 700; }
.prod-footer { padding: 8px 10px 10px; }
.btn-add {
  width: 100%;
  background: var(--blue-cta);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.btn-add:hover { background: var(--blue-dark); }
.btn-add.devis { background: #777; }
.btn-add.devis:hover { background: #555; }

/* ==========================================
   10. FOOTER TRUST STRIP
   ========================================== */
.footer-trust {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.footer-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ft-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 11.5px;
  padding: 6px;
  gap: 4px;
  color: var(--footer-text);
}
.ft-item .ico { font-size: 20px; color: var(--blue-cta); }
.ft-item strong { font-size: 12px; display: block; }
.ft-item span { color: #888; font-size: 11px; }

/* ==========================================
   11. FOOTER PRINCIPAL
   ========================================== */
.footer-main {
  background: var(--footer-bg);
  padding: 28px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo img { height: 44px; width: auto; margin-bottom: 10px; }
.footer-desc { font-size: 12.5px; color: #666; line-height: 1.7; margin-bottom: 12px; }
.footer-contact { font-size: 12.5px; }
.footer-contact p { color: #555; margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
.footer-contact a { color: var(--blue-cta); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #333;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--nav-hover);
}
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { font-size: 12.5px; color: var(--footer-link); transition: color .15s; }
.footer-col ul li a:hover { color: var(--nav-hover); }
.footer-bottom {
  background: #ddd;
  border-top: 1px solid #ccc;
  padding: 11px 16px;
  text-align: center;
  font-size: 11.5px;
  color: #666;
}

/* ==========================================
   12. PAGE INTÉRIEURE GENERIQUE
   ========================================== */
.page-header-bar {
  background: var(--slider-bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.breadcrumb { font-size: 11.5px; color: #999; margin-bottom: 6px; }
.breadcrumb a { color: var(--blue-cta); }
.breadcrumb span { margin: 0 4px; }
.page-header-bar h1 { font-size: 20px; font-weight: 700; color: #333; }

.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: start;
}
.content-main {}
.content-sidebar {}

.page-content h2 {
  font-size: 15px; font-weight: 700; color: #333;
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--nav-hover);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.page-content h3 { font-size: 13.5px; font-weight: 700; color: #444; margin: 14px 0 6px; }
.page-content p { font-size: 13px; color: #555; line-height: 1.7; margin-bottom: 10px; }
.page-content ul { padding-left: 18px; margin-bottom: 12px; }
.page-content ul li { font-size: 13px; color: #555; margin-bottom: 5px; list-style: disc; }
.page-content table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 12.5px; }
.page-content table th { background: var(--nav-hover); color: #fff; padding: 8px 12px; text-align: left; }
.page-content table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: #555; }
.page-content table tr:nth-child(even) td { background: var(--sidebar-bg); }

.alert-info { background: #d9edf7; border: 1px solid #bce8f1; color: #31708f; padding: 12px 16px; border-radius: 3px; font-size: 13px; margin: 12px 0; }
.alert-warn { background: #fcf8e3; border: 1px solid #faebcc; color: #8a6d3b; padding: 12px 16px; border-radius: 3px; font-size: 13px; margin: 12px 0; }
.alert-danger { background: #f2dede; border: 1px solid #ebccd1; color: #a94442; padding: 12px 16px; border-radius: 3px; font-size: 13px; margin: 12px 0; }

/* Fiche magasin */
.store-sheet {
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}
.store-sheet-head {
  background: var(--nav-hover);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}
.store-sheet-body { padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.store-detail { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.store-detail .ico { color: var(--nav-hover); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.store-detail p { font-size: 12.5px; color: #555; line-height: 1.5; }
.store-detail strong { color: #333; display: block; font-size: 12.5px; }

/* Location */
.rental-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 16px 0; }
.rental-box { background: #fff; border: 1px solid var(--border); padding: 14px; }
.rental-box h3 { font-size: 12.5px; font-weight: 700; color: var(--nav-hover); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .3px; }
.rental-box ul { padding-left: 14px; }
.rental-box ul li { font-size: 12px; color: #555; margin-bottom: 4px; list-style: disc; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: #333; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  padding: 9px 10px;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  outline: none;
  border-radius: 2px;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--nav-hover); }
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit {
  background: var(--nav-hover);
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: background .2s;
}
.btn-submit:hover { background: #c0055f; }

/* FAQ */
.faq-block { border: 1px solid var(--border); margin-bottom: 8px; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 14px;
  font-size: 13px; font-weight: 600; color: #333;
  cursor: pointer;
  background: #fafafa;
  transition: background .15s;
}
.faq-q:hover { background: #fff0f5; color: var(--nav-hover); }
.faq-q .toggle { font-size: 16px; color: var(--nav-hover); font-weight: 700; }
.faq-a { display: none; padding: 12px 14px; font-size: 13px; color: #555; line-height: 1.6; border-top: 1px solid var(--border-light); background: #fff; }
.faq-a.open { display: block; }

/* ==========================================
   13. RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-trust-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-wrap { grid-template-columns: 1fr; }
  .content-sidebar { display: none; }
}
@media (max-width: 768px) {
  .fullhead { display: none; }
  .search-col { display: none; }
  .menu-btn { display: flex; }
  .main-nav-bar { display: none; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .store-sheet-body { grid-template-columns: 1fr; }
  .rental-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .slide-content { max-width: 100%; padding: 28px 20px; }
  .slide-visual { display: none; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .rental-grid { grid-template-columns: 1fr; }
  .header-icons .header-icon span.lbl { display: none; }
  /* NE PAS cacher les .ico (emojis) ni le .cart-count */
}
