/* =============================================
   SUISSEPLIAGE — custom.css
   S'ajoute par-dessus le thème Classic
   ============================================= */

:root {
  --sp-primary:     #1a2e44;
  --sp-accent:      #e8871a;
  --sp-accent-dark: #d07810;
  --sp-light-bg:    #f5f6f8;
  --sp-border:      #d8dce2;
  --sp-text:        #2c3e50;
  --sp-text-light:  #6b7a8d;
  --sp-white:       #ffffff;
  --sp-nav-h:       46px;
  --sp-radius:      15px;
}

/* ===== FONTS ===== */
body {
  font-family: 'Barlow', sans-serif !important;
}

/* ===== TOPBAR ===== */
.sp-topbar {
  background: #1a2e44;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 6px 0;
}
.sp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.sp-topbar a { color: rgba(255,255,255,0.85); }
.sp-topbar a:hover { color: var(--sp-white); }

/* Nav1 dans topbar (langue, devise, contact) */
.sp-topbar .currency-selector,
.sp-topbar .language-selector,
.sp-topbar #_desktop_contact_link {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.sp-topbar .currency-selector .expand-more,
.sp-topbar .language-selector .expand-more {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}

/* Nav2 dans topbar (compte client) */
.sp-topbar .user-info a {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}
.sp-topbar .user-info a:hover { color: var(--sp-white); }

/* ===== HEADER ===== */
/* Devise et langue dans header blanc */
.sp-header-right .currency-selector,
.sp-header-right .currency-selector *,
.sp-header-right .language-selector,
.sp-header-right .language-selector *,
#_desktop_currency_selector,
#_desktop_currency_selector *,
#_desktop_language_selector,
#_desktop_language_selector * {
  color: var(--sp-text) !important;
}

.sp-header {
  background: #ffffff !important;
  border-bottom: 3px solid #e8871a !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
  padding: 0 !important;
}
.sp-header-inner {
  display: flex !important;
  align-items: center !important;
  height: 100px !important;
  gap: 20px !important;
  padding: 0 15px !important;
}

/* Logo */
.sp-logo-wrap {
  flex-shrink: 0;
}
.sp-logo-wrap img {
  max-height: 70px;
  width: auto;
}

/* Search */
.sp-header-search {
  flex: 1;
  max-width: 500px;
}
.sp-header-search .search-widget form {
  display: flex !important;
}
.sp-header-search input[type=text],
.sp-header-search input[type=search] {
  flex: 1 !important;
  padding: 10px 40px !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-right: none !important;
  border-radius: var(--sp-radius) 0 0 var(--sp-radius) !important;
  outline: none !important;
  font-size: 14px !important;
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  height: auto !important;
  box-shadow: none !important;
}
.sp-header-search input:focus {
  border-color: var(--sp-accent) !important;
}
.sp-header-search button[type=submit] {
  padding: 10px 18px !important;
  background: var(--sp-accent) !important;
  border: none !important;
  border-radius: 0 var(--sp-radius) var(--sp-radius) 0 !important;
  color: var(--sp-white) !important;
  font-size: 16px !important;
  transition: background .2s !important;
  height: auto !important;
}
.sp-header-search button[type=submit]:hover {
  background: var(--sp-accent-dark) !important;
}
.sp-header-search .search-widget .material-icons {
  color: var(--sp-white);
  font-size: 20px;
}

/* Header right - compte + panier */
.sp-header-right {
  flex-shrink: 0;
}
.sp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Compte client */
.sp-header-actions .user-info a,
#_desktop_user_info .user-info a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  background: var(--sp-light-bg);
  border-radius: var(--sp-radius);
  color: var(--sp-text) !important;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
  transition: background .2s;
  text-decoration: none !important;
}
.sp-header-actions .user-info a:hover,
#_desktop_user_info .user-info a:hover {
  background: var(--sp-border);
}
.sp-header-actions .user-info .material-icons,
#_desktop_user_info .material-icons {
  font-size: 22px;
  margin-bottom: 2px;
  color: var(--sp-text) !important;
}

/* Panier */
.sp-header-actions .blockcart a,
#_desktop_cart .blockcart a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 8px 14px !important;
  background: var(--sp-accent) !important;
  border-radius: var(--sp-radius) !important;
  color: var(--sp-white) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  line-height: 1.3 !important;
  transition: background .2s !important;
  text-decoration: none !important;
}
.sp-header-actions .blockcart a:hover,
#_desktop_cart .blockcart a:hover {
  background: var(--sp-accent-dark) !important;
}
.sp-header-actions .blockcart .material-icons,
#_desktop_cart .material-icons {
  font-size: 22px !important;
  margin-bottom: 2px !important;
  color: var(--sp-white) !important;
}
.sp-header-actions .blockcart .cart-products-count,
#_desktop_cart .cart-products-count {
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* Mobile header */
.sp-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px 0;
}
.sp-burger {
  cursor: pointer;
  color: #000000;
}
.sp-mobile-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ===== NAV ===== */
.sp-nav {
  background: #1a2e44;
}
.sp-nav-inner {
  display: flex;
  align-items: stretch;
  padding: 0 15px;
}

/* Menu principal (ps_mainmenu) */
.sp-nav #top-menu,
.sp-nav .top-menu {
  display: flex !important;
  align-items: stretch !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.sp-nav #top-menu > li > a,
.sp-nav .top-menu > li > a {
  display: flex !important;
  align-items: center !important;
  padding: 0 16px !important;
  height: var(--sp-nav-h) !important;
  color: #cdd8e3 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  white-space: nowrap !important;
  transition: background .2s, color .2s !important;
  text-decoration: none !important;
}
.sp-nav #top-menu > li > a:hover,
.sp-nav #top-menu > li.current > a,
.sp-nav .top-menu > li > a:hover {
  background: rgba(255,255,255,.1) !important;
  color: var(--sp-white) !important;
}

/* Dropdown */
.sp-nav #top-menu > li {
  position: relative !important;
}
.sp-nav .sub-menu,
.sp-nav #top-menu .sub-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: #1a2e44 !important;
  border-top: 3px solid var(--sp-accent) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
  min-width: 220px !important;
  z-index: 999 !important;
  padding: 0 !important;
}
.sp-nav #top-menu > li:hover .sub-menu {
  display: block !important;
}
.sp-nav .sub-menu ul,
.sp-nav #top-menu .sub-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.sp-nav .sub-menu a,
.sp-nav #top-menu .sub-menu a {
  display: block !important;
  padding: 10px 18px !important;
  color: #fff !important;
  font-size: 13px !important;
  border-bottom: 1px solid var(--sp-light-bg) !important;
  transition: background .15s, color .15s, padding-left .15s !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  height: auto !important;
}
.sp-nav .sub-menu a:hover,
.sp-nav #top-menu .sub-menu a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: var(--sp-accent) !important;
  padding-left: 24px !important;
}

/* CTA Configurateur */
.sp-nav-cta {
  display: flex !important;
  align-items: center !important;
  padding: 0 20px !important;
  height: var(--sp-nav-h) !important;
  background: var(--sp-accent) !important;
  color: var(--sp-white) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  white-space: nowrap !important;
  margin-left: auto !important;
  transition: background .2s !important;
  text-decoration: none !important;
}
.sp-nav-cta:hover {
  background: var(--sp-accent-dark) !important;
  color: var(--sp-white) !important;
}

/* ===== HOMEPAGE LAYOUT ===== */
.sp-page-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 0px;
}
.sp-content-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

/* sp-main-content toujours contraint quelle que soit la taille */
.sp-main-content {
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
}

/* ===== SIDEBAR ===== */
.sp-sidebar-title {
  background: #1a2e44;
  color: var(--sp-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
}
/* ps_categorytree */
.sp-sidebar .block_content { margin: 0 !important; }
.sp-sidebar .block_content ul {
  border: 1px solid var(--sp-border) !important;
  border-top: none !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.sp-sidebar .block_content ul li {
  border-bottom: 1px solid var(--sp-border) !important;
}
.sp-sidebar .block_content ul li > a {
  display: block !important;
  padding: 10px 16px !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background .15s, color .15s !important;
  text-decoration: none !important;
}
.sp-sidebar .block_content ul li > a:hover {
  background: rgba(255,255,255,0.15) !important;
  color: var(--sp-accent) !important;
}
.sp-sidebar .block_content ul ul {
  background: #fafbfc !important;
  border: none !important;
  border-top: 1px solid var(--sp-border) !important;
}
.sp-sidebar .block_content ul ul a {
  padding: 8px 16px 8px 28px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--sp-text-light) !important;
}
.sp-sidebar .block_content ul ul a:hover {
  color: var(--sp-accent) !important;
  background: rgba(255,255,255,0.15) !important;
}

/* ===== CTA CONFIGURATEUR HOMEPAGE ===== */
.sp-configurator-cta {
  background: linear-gradient(135deg, var(--sp-accent), var(--sp-accent-dark));
  border-radius: var(--sp-radius);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}
.sp-cta-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--sp-white);
  text-transform: uppercase;
  margin: 0;
}
.sp-cta-text p {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  margin: 4px 0 0 0;
}
.sp-cta-btn {
  background: var(--sp-white);
  color: var(--sp-accent) !important;
  padding: 13px 26px;
  border-radius: var(--sp-radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .2s;
  text-decoration: none !important;
  display: inline-block;
}
.sp-cta-btn:hover {
  transform: translateY(-2px);
  color: var(--sp-accent) !important;
}

/* ===== SECTION HEADER ===== */
.sp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sp-primary);
}
.sp-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.sp-section-title::before {
  content: '';
  display: block;
  width: 5px;
  height: 24px;
  background: var(--sp-accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.sp-see-all {
  color: var(--sp-accent) !important;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--sp-accent);
  padding: 6px 14px;
  border-radius: var(--sp-radius);
  transition: background .2s, color .2s;
  text-decoration: none !important;
}
.sp-see-all:hover {
  background: var(--sp-accent);
  color: var(--sp-white) !important;
}

/* ===== PRODUCTS GRID — géré par Bootstrap col-xl-3 (4 colonnes desktop) ===== */
.product-miniature {
  border: 1px solid var(--sp-border) !important;
  border-radius: var(--sp-radius) !important;
  overflow: hidden !important;
  background: #1a2e44 !important;
  transition: box-shadow .2s, transform .2s !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.product-miniature:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.12) !important;
  transform: translateY(-3px) !important;
}
.product-miniature .thumbnail-container {
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
}
.product-miniature .thumbnail-container img {
  width: 100% !important;
  aspect-ratio: 4/3 !important;
  object-fit: cover !important;
  transition: transform .3s !important;
}
.product-miniature:hover .thumbnail-container img {
  transform: scale(1.04) !important;
}
.product-miniature .product-description {
  padding: 14px !important;
}
.product-miniature .product-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--sp-primary) !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}
.product-miniature .product-title a {
  color: var(--sp-primary) !important;
  text-decoration: none !important;
}
.product-miniature .product-title a:hover { color: var(--sp-accent) !important; }
.product-miniature .price {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--sp-primary) !important;
}
.product-miniature .product-price-and-shipping {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 10px !important;
  gap: 8px !important;
}
.product-miniature .add-to-cart {
  background: var(--sp-primary) !important;
  color: var(--sp-white) !important;
  border: none !important;
  padding: 8px 12px !important;
  border-radius: var(--sp-radius) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background .2s !important;
  white-space: nowrap !important;
}
.product-miniature .add-to-cart:hover {
  background: var(--sp-accent) !important;
}
.product-flag {
  background: var(--sp-accent) !important;
  color: var(--sp-white) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  border-radius: 2px !important;
  letter-spacing: .5px !important;
}
.product-flag.new { background: #27ae60 !important; }
.product-flag.on-sale { background: #c0392b !important; }

/* ===== BANNIÈRES ===== */
.sp-banners-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.sp-banners-row a {
  border-radius: var(--sp-radius);
  overflow: hidden;
  display: block;
}
.sp-banners-row img {
  width: 100%;
  transition: transform .3s;
  display: block;
}
.sp-banners-row a:hover img { transform: scale(1.03); }

/* ===== RÉASSURANCE ===== */
.sp-reassurance {
  background: #1a2e44;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 28px;
  margin-top: 15px !important;
}
.sp-reass-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: background .2s;
  text-decoration: none !important;
}
.sp-reass-item:last-child { border-right: none; }
.sp-reass-item:hover { background: rgba(255,255,255,.06); }
.sp-reass-icon { font-size: 26px; }
.sp-reass-title { color: var(--sp-white); font-weight: 700; font-size: 13px; }
.sp-reass-sub { color: rgba(255,255,255,0.85); font-size: 11px; }

/* ===== SLIDER (ps_imageslider) ===== */
#featured-slider,
.sp-slider-wrap {
  margin-bottom: 24px;
}
.sp-slider-wrap .carousel,
.sp-slider-wrap .slick-slider {
  border-radius: var(--sp-radius);
  overflow: hidden;
}
/* Contraindre le slider sur tablette */
@media (max-width: 991px) {
  .sp-slider-wrap img,
  .sp-slider-wrap .carousel-item img,
  .sp-slider-wrap .slick-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: 400px !important;
    object-fit: cover !important;
  }
}

/* ===== FOOTER ===== */
#footer {
  background: var(--sp-primary) !important;
  color: rgba(255,255,255,0.85) !important;
  margin-top: 40px !important;
  padding: 0 !important;
}
.sp-footer-top {
  padding: 40px 0 32px;
}
.sp-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.sp-logo-text-footer {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--sp-white);
  text-transform: uppercase;
  text-decoration: none !important;
  display: block;
}
.sp-footer-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
}
.sp-footer-title {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--sp-white) !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--sp-accent);
}
.sp-footer-col a {
  display: block;
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px;
  padding: 4px 0;
  transition: color .15s, padding-left .15s;
  text-decoration: none !important;
}
.sp-footer-col a:hover {
  color: var(--sp-white) !important;
  padding-left: 6px;
}
.sp-footer-contact-col address {
  font-size: 13px;
  line-height: 2;
  font-style: normal;
  color: rgba(255,255,255,0.85);
}
.sp-footer-contact-col strong { color: var(--sp-white); }
.sp-footer-contact-col a {
  color: rgba(255,255,255,0.85) !important;
  display: inline !important;
  padding: 0 !important;
}
.sp-social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.sp-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,0.85) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s, color .2s;
  text-decoration: none !important;
  padding: 0 !important;
}
.sp-social-links a:hover {
  background: var(--sp-accent);
  color: var(--sp-white) !important;
}
.sp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
}
.sp-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.sp-footer-bottom-inner a { color: rgba(255,255,255,0.6) !important; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent !important;
  padding: 10px 0 !important;
  margin-bottom: 16px !important;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: var(--sp-text-light);
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; }
.breadcrumb a { color: var(--sp-text-light) !important; text-decoration: none !important; }
.breadcrumb a:hover { color: var(--sp-accent) !important; }
.breadcrumb li:last-child span { color: var(--sp-text); font-weight: 600; }

/* ===== BOUTONS GLOBAUX ===== */
.btn-primary,
.btn.btn-primary {
  background: var(--sp-accent) !important;
  border-color: var(--sp-accent) !important;
  color: var(--sp-white) !important;
  border-radius: var(--sp-radius) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
}
.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--sp-accent-dark) !important;
  border-color: var(--sp-accent-dark) !important;
}

/* ===== RESPONSIVE ===== */

/* --- Zone sans sidebar : jusqu'à 991px --- */
@media (max-width: 991px) {
  .sp-content-layout {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .sp-sidebar { display: none; }
  .sp-main-content {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .sp-reassurance { grid-template-columns: repeat(2, 1fr); }
  .sp-configurator-cta { flex-direction: column; text-align: center; }
  /* Grille produits : 3 colonnes sur tablette */
  #featured-products .products .col-xs-12,
  .featured-products .products .col-xs-12 {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .sp-footer-inner { grid-template-columns: 1fr 1fr; }
  .sp-banners-row { grid-template-columns: 1fr 1fr; }
}

/* --- Mobile : 767px et moins --- */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  .sp-header-inner { height: auto !important; flex-wrap: wrap; }

  /* Layout pleine largeur */
  .sp-content-layout {
    display: block !important;
    width: 100% !important;
  }
  .sp-main-content {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Grille produits 2 colonnes */
  #featured-products,
  .featured-products {
    overflow: hidden !important;
  }
  #featured-products .products.row,
  .featured-products .products.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  #featured-products .products .col-xs-12,
  .featured-products .products .col-xs-12 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .sp-banners-row { grid-template-columns: 1fr; }
  .sp-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .sp-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .sp-reassurance { grid-template-columns: 1fr 1fr; }
}

/* ===== NAV DROPDOWNS ===== */
.sp-nav-dropdown { position: relative; display: inline-block; }

.sp-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1a2e44;
  border-top: 3px solid #e8871a;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
  padding: 8px 0;
}

.sp-nav-dropdown:hover .sp-nav-dropdown-menu { display: block; }

.sp-nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #fff !important;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.sp-nav-dropdown-menu a:hover { background: #e8871a; color: #fff !important; }

/* ===== BANNERS SIDEBAR MOBILE ===== */
.sp-sidebar-banner-desktop { display: block; }
.sp-mobile-banners { display: none; }

@media (max-width: 991px) {
  .sp-sidebar-banner-desktop { display: none !important; }
  .sp-mobile-banners {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
  }
  .sp-mobile-banner-item {
    display: block !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }
  .sp-mobile-banner-item img {
    width: 100% !important;
    height: auto !important;
  }
}

/* ===== BARRE FIXE MOBILE BAS ===== */
.sp-mobile-bottombar { display: none; }

@media (max-width: 768px) {
  .sp-mobile-bottombar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a2e44;
    border-top: 3px solid #e8871a;
    height: 56px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
  }
  .sp-mobile-bottombar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 4px 2px;
    line-height: 1.2;
    text-align: center;
  }
  .sp-mobile-bottombar a:last-child { border-right: none; }
  .sp-mobile-bottombar a:hover { background: rgba(232,135,26,0.3); }
  .sp-mobile-bottombar a.sp-bottombar-cta { background: #e8871a; }
  .sp-mobile-bottombar a.sp-bottombar-cta:hover { background: #d07810; }
  .sp-mobile-bottombar-icon { font-size: 18px; margin-bottom: 2px; }
  body { padding-bottom: 60px !important; }
}

/* ===== RECHERCHE MOBILE ===== */
/* Cacher la recherche dans la nav sur desktop */
.sp-nav-inner #search_widget { display: none !important; }

/* Sur mobile : afficher la nav avec seulement la recherche */
@media (max-width: 768px) {
  .sp-nav {
    display: block !important;
  }
  .sp-nav-inner #search_widget {
    display: block !important;
    width: 100%;
    padding: 8px;
  }
  .sp-nav-inner .sp-nav-dropdown,
  .sp-nav-inner > a.sp-nav-cta,
  .sp-nav-inner #_desktop_top_menu {
    display: none !important;
  }
}

/* Nav */
.sp-nav { background: #1a2e44; }
.sp-nav #top-menu > li > a,
.sp-nav .top-menu > li > a,
.sp-nav-dropdown > a.sp-nav-cta {
  color: #fff !important;
}

/* Footer - tous les textes en blanc */
#footer,
.footer-container,
#footer *,
.footer-container * {
  color: rgba(255,255,255,0.85) !important;
}
#footer a,
.footer-container a {
  color: rgba(255,255,255,0.85) !important;
}
#footer a:hover,
.footer-container a:hover {
  color: #fff !important;
}
#footer .h3,
#footer h3,
.footer-container .h3,
.footer-container h3 {
  color: #fff !important;
}
/* Newsletter */
.block_newsletter p,
.block_newsletter label {
  color: rgba(255,255,255,0.85) !important;
}

/* Textblock - harmonisation */
.sp-textblock {
  background: #1a2e44 !important;
  border-radius: 8px !important;
}
.sp-textblock h2,
.sp-textblock h3,
.sp-textblock-title {
  color: #e8871a !important;
}
.sp-textblock p,
.sp-textblock li,
.sp-textblock-body {
  color: rgba(255,255,255,0.9) !important;
}
.sp-textblock strong {
  color: #fff !important;
}
.sp-textblock-cta {
  background: #e8871a !important;
  color: #fff !important;
  border: none !important;
}
.sp-textblock-cta:hover {
  background: #d07810 !important;
}

/* Copyright bottom */
#footer .footer-container__bottom,
.footer__copyright,
footer .text-muted {
  color: rgba(255,255,255,0.5) !important;
}

/* Burger mobile */
.sp-burger { color: #1a2e44 !important; }

/* ===== ICONE PANIER ===== */
.sp-header-actions .blockcart i,
.sp-header-actions .blockcart svg,
.sp-header-actions .blockcart .material-icons,
#_desktop_cart i,
#_desktop_cart svg,
#_desktop_cart .material-icons {
  color: #d1d0d0 !important;
  fill: #fff !important;
}

/* ===== NEWSLETTER CENTREE ===== */
#footer .block_newsletter,
.footer-container .block_newsletter {
  width: 100% !important;
  padding: 20px 15px !important;
  box-sizing: border-box !important;
}
#footer .block_newsletter .container,
.footer-container .block_newsletter .container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}
#footer .block_newsletter h2,
.footer-container .block_newsletter h2 {
  color: #fff !important;
  margin: 0 !important;
  font-size: 16px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
#footer .block_newsletter form,
.footer-container .block_newsletter form {
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  flex: 1 !important;
}
#footer .block_newsletter input[type=email],
.footer-container .block_newsletter input[type=email] {
  flex: 1 !important;
  border-radius: 4px !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  padding: 8px 14px !important;
  min-width: 160px !important;
  font-size: 13px !important;
}
#footer .block_newsletter input[type=email]::placeholder {
  color: rgba(255,255,255,0.6) !important;
}
#footer .block_newsletter button,
.footer-container .block_newsletter button {
  background: #e8871a !important;
  border: none !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  font-size: 13px !important;
}
#footer .block_newsletter button:hover {
  background: #d07810 !important;
}
#footer .block_newsletter p,
.footer-container .block_newsletter p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 11px !important;
  margin-top: 6px !important;
  text-align: center !important;
  width: 100% !important;
}
#footer .block_newsletter a,
.footer-container .block_newsletter a {
  color: #e8871a !important;
}

/* ===== FOOTER LIENS BLANCS ===== */
#footer, .footer-container {
  background: #1a2e44 !important;
}
#footer *, .footer-container * {
  color: rgba(255,255,255,0.85) !important;
}
#footer a, .footer-container a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
}
#footer a:hover, .footer-container a:hover {
  color: #e8871a !important;
}
#footer .h3, #footer h3,
.footer-container .h3, .footer-container h3 {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-bottom: 2px solid #e8871a !important;
  padding-bottom: 10px !important;
  margin-bottom: 14px !important;
}
#footer small, #footer .text-muted,
footer .copyright { color: rgba(255,255,255,0.5) !important; }

/* Search fix - border-right on blue bg */
.sp-header-search input[type=text],
.sp-header-search input[type=search] {
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-right: none !important;
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  padding: 10px px !important;
}
.sp-header-search input::placeholder { color: rgba(255,255,255,0.6) !important; }
/* ===== FIX PS_SEARCHBAR ===== */
#search_widget input[type=text],
#search_widget input[type=search],
.ps-shown-by-js input,
form[action*="recherche"] input {
  background: rgb(221 221 221 / 15%) !important;
  color: #fff !important;
  border: 1px solid rgb(211 211 211 / 30%) !important;
  border-right: ;
}
#search_widget input::placeholder {
  color: rgba(255,255,255,0.6) !important;
}
/* ===== FIX NEWSLETTER FOND BLANC ===== */
.block_newsletter {
  background: #1a2e44 !important;
}
.block_newsletter .container {
  background: #1a2e44 !important;
}
#footer .block_newsletter form .row,
.block_newsletter .form-fields {
  background: transparent !important;
}



/* ===== BANNIERE COUVERTINES ===== */
.sp-banner-couvertines {
  display: flex !important;
  align-items: center !important;
  background: #f5f6f8 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  margin-bottom: 28px !important;
  text-decoration: none !important;
  min-height: 280px !important;
}
.sp-banner-couvertines:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12) !important;
}
.sp-banner-couvertines-text {
  flex: 1 !important;
  padding: 40px 48px !important;
}
.sp-banner-couvertines-text h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #1a2e44 !important;
  line-height: 1.2 !important;
  margin: 0 0 16px 0 !important;
}
.sp-banner-couvertines-sep {
  width: 60px !important;
  height: 4px !important;
  background: #e8871a !important;
  border-radius: 2px !important;
  margin-bottom: 16px !important;
}
.sp-banner-couvertines-text p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #2c3e50 !important;
  margin: 0 0 24px 0 !important;
}
.sp-banner-couvertines-btn {
  display: inline-block !important;
  background: #1a2e44 !important;
  color: #fff !important;
  padding: 13px 28px !important;
  border-radius: 4px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}
.sp-banner-couvertines:hover .sp-banner-couvertines-btn {
  background: #e8871a !important;
}
.sp-banner-couvertines-img {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  min-height: 280px !important;
  overflow: hidden !important;
}
.sp-banner-couvertines-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 768px) {
  .sp-banner-couvertines { flex-direction: column !important; }
  .sp-banner-couvertines-img { flex: 0 0 100% !important; max-width: 100% !important; min-height: 200px !important; width: 100% !important; }
  .sp-banner-couvertines-text { padding: 24px 20px !important; }
  .sp-banner-couvertines-text h2 { font-size: 22px !important; }
}

/* ===== CATEGORY HEADER BANNER ===== */
.sp-cat-header {
  position: relative;
  width: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
}
.sp-cat-header-no-img {
  background: #1a2e44 !important;
  align-items: center !important;
}
.sp-cat-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,107,0.50) 0%, rgba(13,27,107,0.2) 60%, rgba(13,27,107,0.0) 100%);
}
.sp-cat-header-content {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  width: 100%;
}
.sp-cat-header-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin: 0 0 12px 0 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.sp-cat-header-desc {
  color: rgba(255,255,255,0.9) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  max-width: 700px;
}
.sp-cat-header-desc * {
  color: rgba(255,255,255,0.9) !important;
}
@media (max-width: 768px) {
  .sp-cat-header { min-height: 200px; }
  .sp-cat-header-content { padding: 20px; }
  .sp-cat-header-title { font-size: 24px !important; }
}

/* ===== FOOTER LINKLIST ===== */
.sp-footer-links-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 32px 0 24px;
}
.sp-footer-links-col {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 16px 0 0;
}
.sp-footer-links-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding-bottom: 10px !important;
  margin-bottom: 14px !important;
  border-bottom: 2px solid #e8871a !important;
  white-space: nowrap;
}
.sp-footer-links-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.sp-footer-links-list li a {
  display: block;
  color: rgba(255,255,255,0.8) !important;
  font-size: 12px !important;
  padding: 4px 0 !important;
  text-decoration: none !important;
  transition: color .15s, padding-left .15s;
  line-height: 1.4;
}
.sp-footer-links-list li a:hover {
  color: #e8871a !important;
  padding-left: 4px !important;
}

/* Tablet */
@media (max-width: 991px) {
  .sp-footer-links-col {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 24px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .sp-footer-links-wrap {
    padding: 20px 0 16px;
  }
  .sp-footer-links-col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
    padding-right: 12px;
  }
  .sp-footer-links-title {
    font-size: 11px !important;
    white-space: normal !important;
    padding-bottom: 8px !important;
    margin-bottom: 10px !important;
  }
  .sp-footer-links-list li a {
    font-size: 11px !important;
    padding: 3px 0 !important;
  }
}
/* ============================================================
   PAGE PROFILÉS FAÇADE - double version desktop / mobile
   À coller à la FIN de custom.css — ne rien modifier au-dessus
   ============================================================ */

.sp-desktop { display: block; }
.sp-mobile  { display: none;  }

@media screen and (max-width: 620px) {
  .sp-desktop { display: none !important; }
  .sp-mobile  { display: block !important; }
}
@media screen and (max-width: 620px) {
  .page-cms .sp-mobile td {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-cms .sp-mobile table {
    width: 100% !important;
  }
}
/* ===== BANNIERE BARDAGE ===== */
a.sp-banner-bardage {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  text-decoration: none !important;
  height: 260px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 8px !important;
  margin-bottom: 28px !important;
}
.sp-banner-bardage-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
.sp-banner-bardage-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(100deg, #1e3a5f 0%, rgba(30,58,95,0.80) 40%, rgba(30,58,95,0.20) 70%, transparent 100%) !important;
}
.sp-banner-bardage-content {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 36px 48px !important;
  max-width: 100% !important;
}
.sp-banner-bardage-tag {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #e07b28 !important;
  margin-bottom: 10px !important;
}
.sp-banner-bardage-title {
  font-size: 30px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  letter-spacing: -0.5px !important;
  margin-bottom: 6px !important;
}
.sp-banner-bardage-title span {
  color: #e07b28 !important;
}
.sp-banner-bardage-sep {
  width: 40px !important;
  height: 3px !important;
  background: #e07b28 !important;
  margin-bottom: 14px !important;
}
.sp-banner-bardage-desc {
  font-size: 13px !important;
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.7 !important;
  margin-bottom: 22px !important;
}
.sp-banner-bardage-btn {
  display: inline-block !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 11px 24px !important;
  text-decoration: none !important;
  width: fit-content !important;
  transition: background 0.2s, color 0.2s !important;
}
a.sp-banner-bardage:hover .sp-banner-bardage-btn {
  background: #e07b28 !important;
  border-color: #e07b28 !important;
  color: #fff !important;
}
.sp-banner-bardage-badge {
  position: absolute !important;
  top: 22px !important;
  right: 28px !important;
  background: #e07b28 !important;
  color: #fff !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 6px 14px !important;
}
@media (max-width: 768px) {
  a.sp-banner-bardage { height: auto !important; }
  .sp-banner-bardage-img { position: relative !important; height: 200px !important; }
  .sp-banner-bardage-overlay { background: rgba(30,58,95,0.35) !important; }
  .sp-banner-bardage-content { position: relative !important; max-width: 100% !important; padding: 20px 16px !important; background: #1e3a5f !important; }
  .sp-banner-bardage-title { font-size: 22px !important; }
  .sp-banner-bardage-desc { font-size: 12px !important; margin-bottom: 16px !important; }
  .sp-banner-bardage-badge { top: 10px !important; right: 10px !important; font-size: 8px !important; padding: 4px 8px !important; }
}

/* ============================================================
   BLOG ARTICLE STYLES — classes utilisées dans le contenu HTML
   Ne s'appliquent qu'aux articles où ce HTML est inséré
   ============================================================ */

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a2e44 0%, #0d1e2e 100%);
  border-radius: 6px;
  padding: 48px 40px 56px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(232,135,26,0.15);
  color: #e8871a;
  border: 1px solid rgba(232,135,26,0.4);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}
.hero h1 em {
  color: #e8871a;
  font-style: italic;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-meta strong { color: #fff; }
.meta-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}

/* WRAP */
.wrap {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
.wrap h2 {
  color: #1a2e44;
  font-size: 22px;
  font-weight: 800;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid #e8871a;
  display: inline-block;
}
.wrap h3 {
  color: #1a2e44;
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 10px;
}
.wrap p { margin: 0 0 16px; }
.lead {
  font-size: 16px;
  color: #e8871a;
  line-height: 1.75;
  margin-bottom: 28px !important;
}

/* BADGE */
.badge {
  background: #e8871a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.badge-outline {
  border: 1px solid #aaa;
  color: #666;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
}

/* PRICE RANGE */
.price-range {
  background: #f8f9fb;
  border-radius: 6px;
  padding: 24px;
  margin: 24px 0;
  border: 1px solid #e5e9ef;
}
.pr-label {
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.pr-bar-wrap { margin-bottom: 16px; }
.pr-track {
  display: flex;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.pr-fill { flex: 1; }
.f1 { background: #4caf8a; }
.f2 { background: #e8871a; }
.f3 { background: #d05a1a; }
.f4 { background: #1a2e44; }
.pr-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #888;
}
.pr-rows { display: flex; flex-direction: column; gap: 8px; }
.pr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.pr-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.d1 { background: #4caf8a; }
.d2 { background: #e8871a; }
.d3 { background: #d05a1a; }
.d4 { background: #1a2e44; }
.pr-row-label { flex: 1; color: #444; }
.pr-row-val { font-weight: 700; color: #1a2e44; white-space: nowrap; }

/* TABLE */
.tbl-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.tbl-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tbl-wrap thead tr {
  background: #1a2e44;
  color: #fff;
}
.tbl-wrap th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: .3px;
}
.tbl-wrap td {
  padding: 11px 16px;
  border-bottom: 1px solid #eef0f3;
  color: #444;
}
.tbl-wrap tbody tr:nth-child(even) { background: #f8f9fb; }
.tbl-wrap tbody tr:hover { background: #f0f4f8; }
.tbl-wrap td.price { font-weight: 700; color: #e8871a; }

/* INFO BOX */
.info {
  display: flex;
  gap: 16px;
  background: #eef6ff;
  border-left: 4px solid #1a2e44;
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.info-ico {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.info-title {
  font-weight: 700;
  color: #1a2e44;
  margin-bottom: 6px;
}
.info p { margin: 0; font-size: 14px; color: #555; }

/* GRID CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.card {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-top: 3px solid #e8871a;
  border-radius: 6px;
  padding: 20px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.card-icon { font-size: 24px; margin-bottom: 10px; }
.card h4 {
  color: #1a2e44;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}
.card p { font-size: 13px; color: #666; margin: 0; line-height: 1.6; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 6px;
  padding: 18px;
}
.step-num {
  width: 36px; height: 36px;
  background: #e8871a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.step-body h4 {
  color: #1a2e44;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}
.step-body p { font-size: 14px; color: #555; margin: 0; }

/* CTA */
.cta {
  background: linear-gradient(135deg, #1a2e44 0%, #0d1e2e 100%);
  border-radius: 6px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.cta-text h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}
.cta-text p { color: rgba(255,255,255,.7); margin: 0; font-size: 14px; }
.cta-btn {
  background: #e8871a;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s;
}
.cta-btn:hover { background: #cf7315; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.faq-item {
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 6px;
  padding: 18px 20px;
}
.faq-q {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.faq-q-num {
  background: #1a2e44;
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.faq-q-text { font-weight: 700; color: #1a2e44; font-size: 15px; line-height: 1.4; }
.faq-a { font-size: 14px; color: #555; margin: 0 0 0 38px; line-height: 1.6; }

/* TAGS */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 16px; }
.tag {
  background: #f0f4f8;
  color: #1a2e44 !important;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid #dde3ea;
  transition: background .15s;
}
.tag:hover { background: #e8871a; color: #fff !important; border-color: #e8871a; }

/* RESPONSIVE BLOG */
@media (max-width: 768px) {
  .hero { padding: 28px 20px 40px; }
  .hero h1 { font-size: 22px; }
  .grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; text-align: center; }
  .faq-a { margin-left: 0; }
}
@media (max-width: 991px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== SLIDER — masquer textes HTML (SEO uniquement) ===== */
.carousel-item h2,
.carousel-item h3,
.carousel-item p,
.carousel-item a.btn,
.carousel-caption {
  display: none !important;
}

/* ===== CORRECTIF theme.css — col-md-6 forcé à 100% par erreur ===== */
@media (min-width: 768px) and (max-width: 991px) {
  .col-md-6 {
    float: left !important;
    width: 50% !important;
  }
  .col-md-4 {
    float: left !important;
    width: 33.333% !important;
  }
  .col-md-3 {
    float: left !important;
    width: 25% !important;
  }
}
