/* ============================================
   CSS PERSONNALISÉ
   Module Custom CSS
   ============================================ */

/* Exemple : Personnaliser la couleur du header */
/*
#header {
    background-color: #2c3e50;
}
*/

/* Exemple : Personnaliser les boutons */
/*
.btn-primary {
    background-color: #3498db !important;
    border-color: #3498db !important;
}

.btn-primary:hover {
    background-color: #2980b9 !important;
    border-color: #2980b9 !important;
}
*/

/* Exemple : Personnaliser le footer */
/*
#footer {
    background-color: #34495e;
    color: #ecf0f1;
}
*/

/* ============================================
   VOTRE CSS ICI
   ============================================ */

/* ========= Nos Services (Bomann) ========= */

*:not(i) {
    font-family: "Inter", sans-serif !important;
}
  .bm-services {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px 60px;
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  .bm-services * { box-sizing: border-box; }

  /* Title */
  .bm-services__title {
    font-size: 28px;
    font-weight: 800;
    margin: 18px 0 14px;
    color: #0b2b6b;
    letter-spacing: -0.2px;
  }

  /* Hero */
  .bm-hero {
    background: #0b2b6b;
    color: #fff;
    border-radius: 8px;
    padding: 22px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.10);
    margin-bottom: 18px;
  }
  .bm-hero__left { max-width: 820px; }
  .bm-hero__h {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
  }
  .bm-hero__p {
    margin: 0;
    font-size: 13px;
    opacity: 0.95;
    line-height: 1.45;
    color: white;
  }
  .bm-hero__icon {
    width: 44px;
    height: 44px;
    opacity: 0.9;
    flex: 0 0 auto;
  }

  /* Intro text */
  .bm-services__intro {
    margin: 10px 0 18px;
    font-size: 13px;
    color: #334155;
    line-height: 1.55;
    max-width: 980px;
  }

  /* Grids */
  .bm-grid {
    display: grid;
    gap: 18px;
  }
  .bm-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bm-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Cards */
  .bm-card {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e6e8ee;
    padding: 16px 18px;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.05);
  }
  .bm-card--accent {
    border-left: 5px solid #f59e0b; /* orange */
  }
  .bm-card__h {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 800;
    color: #f59e0b;
  }
  .bm-card__sub {
    margin: 0 0 10px;
    font-size: 12px;
    color: #334155;
  }
  .bm-list {
    margin: 0;
    padding-left: 16px;
    color: #475569;
    font-size: 12px;
    line-height: 1.55;
  }

  /* Section blocks */
  .bm-section {
    margin-top: 22px;
    background: #f6f7f9;
    border-radius: 8px;
    padding: 18px 18px;
  }
  .bm-section__h {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 800;
    color: #0b2b6b;
  }

  /* Contact cards */
  .bm-contact {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e6e8ee;
    padding: 14px 14px;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 92px;
  }
  .bm-contact__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .bm-contact__label {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
  }
  .bm-contact__icon {
    width: 18px;
    height: 18px;
    opacity: 0.85;
    flex: 0 0 auto;
  }
  .bm-contact__value a,
  .bm-contact__value {
    font-size: 13px;
    font-weight: 800;
    color: #f59e0b;
    text-decoration: none;
    word-break: break-word;
  }
  .bm-contact__meta {
    font-size: 11px;
    color: #64748b;
  }

  /* FAQ */
  .bm-faq {
    display: grid;
    gap: 12px;
    margin-top: 8px;
  }
  .bm-faq__item {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #edf0f5;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.04);
    border-left: 4px solid #f59e0b;
  }
  .bm-faq__q {
    margin: 0;
    padding: 14px 16px 8px;
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
  }
  .bm-faq__a {
    margin: 0;
    padding: 0 16px 14px;
    font-size: 12px;
    color: #475569;
    line-height: 1.55;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .bm-grid--3 { grid-template-columns: 1fr; }
  }
  @media (max-width: 820px) {
    .bm-grid--2 { grid-template-columns: 1fr; }
    .bm-hero { flex-direction: column; align-items: flex-start; }
    .bm-services__title { font-size: 24px; }
  }
  /* ====== BOMANN PRO PAGE (CMS-safe) ====== */
  .bmpro {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  /* Container aligned with PrestaShop .container (1140px @ min-width 1200px) */
  .bmpro .bmpro-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .bmpro * { box-sizing: border-box; }

  /* Hero full width */
  .bmpro-hero {
    background: linear-gradient(180deg, #0b2b6b 0%, #072453 100%);
    color: #fff;
    padding: 54px 0;
    border-radius: 0; /* full width band */
  }

  .bmpro-hero__title {
    margin: 0 0 10px;
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.2px;
  }
  .bmpro-hero__subtitle {
    margin: 0;
    text-align: center;
    font-size: 14px;
    opacity: 0.95;
  }

  /* Section headings */
  .bmpro-section {
    padding: 42px 0;
  }
  .bmpro-section--alt {
    background: #f5f6f8;
  }
  .bmpro-h2 {
    margin: 0 0 18px;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #0b2b6b;
  }

  /* Cards / grids */
  .bmpro-grid {
    display: grid;
    gap: 18px;
  }
  .bmpro-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bmpro-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .bmpro-card {
    background: #fff;
    border: 1px solid #e8ebf1;
    border-radius: 10px;
    padding: 18px 18px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
    min-height: 145px;
  }
  .bmpro-card__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f2f5fb;
    color: #0b2b6b;
    margin: 2px auto 10px;
    font-size: 18px;
    font-weight: 800;
  }
  .bmpro-card__title {
    margin: 0 0 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: #0b2b6b;
  }
  .bmpro-card__text {
    margin: 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #475569;
  }

  /* Accent list cards (orange left bar) */
  .bmpro-listcard {
    background: #fff;
    border: 1px solid #e8ebf1;
    border-radius: 10px;
    padding: 16px 16px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.05);
    border-left: 4px solid #f59e0b;
  }
  .bmpro-listcard__title {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    color: #0b2b6b;
  }
  .bmpro-list {
    margin: 0;
    padding-left: 16px;
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
  }

  /* Contact section */
  .bmpro-contact {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 26px;
    align-items: start;
    margin-top: 8px;
  }

  .bmpro-contact__text {
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 14px;
    max-width: 520px;
  }

  .bmpro-contact__meta {
    font-size: 12px;
    color: #0f172a;
    margin: 0 0 6px;
  }
  .bmpro-contact__meta b { color: #0b2b6b; }

  .bmpro-form {
    background: #fff;
    border: 1px solid #e8ebf1;
    border-radius: 10px;
    padding: 16px 16px;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
  }

  .bmpro-field {
    margin-bottom: 10px;
  }
  .bmpro-label {
    display: block;
    font-size: 11px;
    color: #334155;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .bmpro-input,
  .bmpro-textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px 10px;
    font-size: 12px;
    outline: none;
    background: #fff;
  }
  .bmpro-textarea { min-height: 90px; resize: vertical; }

  .bmpro-input:focus,
  .bmpro-textarea:focus {
    border-color: #0b2b6b;
    box-shadow: 0 0 0 3px rgba(11, 43, 107, 0.10);
  }

  .bmpro-btn {
    display: inline-block;
    background: #0b2b6b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
  }

  /* Spacing between blocks similar to screenshot */
  .bmpro-divider-space { height: 18px; }

  /* Responsive */
  @media (max-width: 1100px) {
    .bmpro-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 768px) {
    .bmpro-hero { padding: 40px 0; }
    .bmpro-hero__title { font-size: 26px; }
    .bmpro-grid--4,
    .bmpro-grid--3 { grid-template-columns: 1fr; }
    .bmpro-contact { grid-template-columns: 1fr; }

.js-product.product{
padding: 0!important;
}

.product-title{
height:auto!important;
}


  }

#subcategories{
display:none!important;
}

#search_filters_suppliers, #search_filters_brands, .block-categories{
display:none!important;
}


#category .block-category{
min-height: 0!important;
}
.main-navigation .top-menu > li > a{
padding: 15px 0!important;
font-size: 13px!important;
font-weight: 500!important;
}

.main-navigation .top-menu{
justify-content: space-between!important;
}

.product-price-block, .product-reference{
text-align: center!important;
}

.product-prices{
display: inline-flex;
gap: 10px;
}

#products .products{
width: auto!important;
}
a.feature-link {
    text-transform: lowercase;
}

#products .products{
gap: 10px!important;
row-gap: 40px!important;
}

.js-mailalert.text-center{
display:none!important;
}

.top-menu .sub-menu ul[data-depth="1"]>li{
width: 100%!important;
}

.order-options #delivery{
display: none!important;
}

/* Variables CSS personnalisables depuis le BO */
:root {
    --primary-color: #002B6D;
    --accent-color: #FD9F1A;
}
body, main, #wrapper{
    background-color: #fff!important;
}

#header{
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
/* Header Custom */
.custom-header {
    position: relative;
}

/* Enlever la bordure spécifique sur header-nav */
#header .header-nav {
    border-bottom: none;
    max-height: none;
}

/* Cacher la searchbar de PrestaShop qui vient du displayTop */
.main-navigation #search_widget {
    display: none !important;
}

.custom-header::before {
    content: '';
    display: block;
    width: 100%;
    height: 35px;
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.header-top-bar {
    height: 35px;
    background-color: var(--primary-color);
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
    width: 100%;
}

/* Desktop : aligner les icônes à droite */
@media (min-width: 993px) {
    .header-row {
        justify-content: space-between;
    }
    
    .header-logo {
        margin-right: auto;
    }
    
    .header-icons-group {
        margin-left: auto;
    }
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

/* Navigation droite */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Desktop : search bar et pro space entre logo et icônes */
@media (min-width: 993px) {
    .header-nav {
        order: 2;
        flex: 1;
        max-width: 600px;
        margin: 0 20px;
    }
}

/* Groupe search + pro space */
.search-pro-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    max-width: 600px;
    min-width: 0;
}

/* Container pour les icônes (langue, user, cart, hamburger) */
.header-icons-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Desktop : forcer à droite */
@media (min-width: 993px) {
    .header-icons-group {
        order: 3;
        margin-left: auto;
        gap: 15px;
    }
    
    /* Desktop : sélecteur de langue plus visible */
    .language-selector {
        margin-right: 5px;
    }
}

/* Mobile : sélecteur de langue visible */
@media (max-width: 992px) {
    .header-icons-group {
        gap: 10px;
    }
    
    .language-selector img {
        width: 20px;
    }
}

/* Icons user et cart (maintenant séparés) */
.account-link,
.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Searchbar */
.header-search {
    position: relative;
    flex: 1;
    min-width: 0;
}

.header-search input {
    width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 8px 40px 8px 15px;
    font-size: 14px;
    outline: none;
}

.header-search input:focus {
    border-color: var(--accent-color);
}

.header-search .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header-search .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s;
}

.header-search .search-btn:hover {
    transform: translateY(-50%) scale(1.2);
}

.header-search .search-btn i {
    color: var(--primary-color);
    font-size: 16px;
    transition: color 0.3s;
}

.header-search .search-btn:hover i {
    color: var(--accent-color);
}


/* Sélecteur de langue personnalisé */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-selector-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--primary-color);
}

.language-selector-toggle:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.language-selector-toggle img {
    display: block;
    width: 24px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.language-selector-toggle .material-icons {
    font-size: 24px;
}

/* Dropdown des langues */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 180px;
    display: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown[aria-hidden="false"] {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-list {
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

.language-item {
    margin: 0;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none !important;
    color: #333;
    transition: all 0.3s;
}

.language-link:hover {
    background-color: rgba(0, 43, 109, 0.05) !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
}

.language-link img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.language-item.active .language-link {
    background-color: rgba(0, 43, 109, 0.08);
    color: var(--primary-color);
    font-weight: 600;
}

/* Compte client */
.account-link {
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none !important;
    transition: all 0.3s;
}

.account-link:hover {
    color: var(--accent-color) !important;
    text-decoration: none !important;
    transform: scale(1.1);
}

/* Panier dynamique */
.cart-link {
    position: relative;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none !important;
    transition: all 0.3s;
}

.cart-link:hover {
    color: var(--accent-color) !important;
    text-decoration: none !important;
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu navigation catégories/CMS */
.main-navigation {
    background-color: transparent;
    border: none;
    padding-top: 15px;
    width: 100%;
    overflow: visible !important;
    min-height: auto;
    height: auto;
    position: static;
}

/* Cacher header et footer sidebar sur desktop */
.sidebar-header,
.sidebar-footer {
    display: none;
}

/* Éviter la scrollbar sur le parent */
.header-container {
    overflow: visible !important;
}

body, #wrapper, #header {
    overflow-x: visible !important;
}

/* Style pour le module ps_mainmenu */
.main-navigation #_desktop_top_menu {
    width: 100%;
    display: block;
    height: auto;
    overflow: visible !important;
}

.main-navigation #_desktop_top_menu .top-menu {
    display: flex;
}

.main-navigation .top-menu {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-height: 40px;
}

.main-navigation .top-menu > li {
    position: relative;
}

.main-navigation .top-menu > li > a {
    display: block;
    padding: 15px 13px;
    color: #333;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.main-navigation .top-menu > li > a:hover {
    color: var(--primary-color) !important;
    background-color: rgba(0, 43, 109, 0.05);
}

/* Sous-menu / Megamenu */
.main-navigation .sub-menu,
.main-navigation .popover.sub-menu {
    position: absolute;
    top: 100% !important;
    left: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    min-width: 250px;
    display: none;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Desktop : Affichage au HOVER */
@media (min-width: 993px) {
    .main-navigation .top-menu > li:hover .sub-menu,
    .main-navigation .top-menu > li:hover .popover.sub-menu {
        display: block !important;
    }
}

.main-navigation .sub-menu li {
    margin: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none !important;
    transition: all 0.3s;
}

.main-navigation .sub-menu a:hover {
    background-color: rgba(0, 43, 109, 0.05) !important;
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

/* Compteur de produits si présent */
.main-navigation .count {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    margin-left: 5px;
}

/* Menu Hamburger pour mobile/tablette */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 10;
    position: relative;
}

/* Overlay sombre quand menu ouvert - NE PAS bloquer la sidebar */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9990;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto; /* Pour fermer au clic */
}

/*.menu-overlay.active {
    display: block;
    opacity: 1;
}*/

/* Responsive Tablette */
@media (max-width: 992px) {
    /* Afficher le hamburger */
    .mobile-menu-toggle {
        display: block;
        order: 4;
    }
    
    /* Mobile : Logo à gauche, Icons à droite */
    .header-row {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .header-logo {
        flex: 0 0 auto;
        order: 1;
    }
    
    /* Container pour les icônes (mobile) */
    .header-icons-group {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        order: 2;
    }
    
    .header-icons-group .mobile-menu-toggle {
        display: block !important;
    }
    
    /* LIGNE 2 : Search bar uniquement */
    .header-nav {
        width: 100%;
        order: 3;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        margin-top: 10px;
        flex-basis: 100%;
    }
    
    /* Search bar réduite à 70% et centrée */
    .search-pro-group {
        width: 70%;
        max-width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    /* Barre de recherche centrée */
    .header-search {
        flex: 1;
        width: 100%;
        min-width: 0;
        position: relative;
    }
    
    .header-search input {
        font-size: 14px;
        padding: 10px 40px 10px 15px;
        width: 100%;
    }
    
    /* Centrer verticalement le bouton rechercher dans l'input */
    .header-search .search-btn {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Icons alignés */
    .language-selector,
    .account-link,
    .cart-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Menu navigation en SIDEBAR (slide depuis la droite) */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        z-index: 9995;
        overflow-y: auto;
        transition: right 0.3s ease;
        padding: 60px 20px 20px 20px;
        pointer-events: auto;
    }
    
    /* Sidebar ouverte */
    .main-navigation.active {
        right: 0 !important;
        pointer-events: auto;
    }
    
    /* Cacher les icônes de collapse du ps_mainmenu */
    .main-navigation .float-xs-right.hidden-md-up,
    .main-navigation .navbar-toggler.collapse-icons {
        display: none !important;
    }
    
    .main-navigation #_desktop_top_menu {
        display: block !important;
        height: auto !important;
    }
    
    /* Header sidebar mobile */
    .sidebar-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: var(--primary-color);
        color: white;
        position: sticky;
        top: 0;
        z-index: 10;
        margin: -60px -20px 20px -20px;
    }
    
    .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        color: white;
    }
    
    .sidebar-close {
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Footer sidebar mobile */
    .sidebar-footer {
        display: block !important;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #e0e0e0;
    }
    
    .sidebar-section-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 0 15px 0;
        text-transform: uppercase;
    }
    
    .sidebar-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .sidebar-links-list li {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .sidebar-links-list li:last-child {
        border-bottom: none;
    }
    
    .sidebar-links-list a {
        display: block;
        padding: 12px 10px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }
    
    .sidebar-links-list a:hover {
        background: rgba(0, 43, 109, 0.05);
        color: var(--primary-color);
    }
    
    /* Sélecteur de langue dans sidebar */
    .sidebar-language-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 2px solid #e0e0e0;
    }
    
    .sidebar-language-list a {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .sidebar-language-list img {
        flex-shrink: 0;
    }
    
    .sidebar-language-list li.active {
        background: rgba(0, 43, 109, 0.08);
    }
    
    .sidebar-language-list li.active a {
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .main-navigation .top-menu {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        display: flex !important;
        height: auto !important;
        padding: 0;
        margin: 0;
    }
    
    .main-navigation .top-menu > li {
        width: 100% !important;
        border-bottom: 1px solid #e0e0e0;
        display: block !important;
        position: relative;
        height: auto !important;
        list-style: none;
    }
    
    .main-navigation .top-menu > li > a {
        padding: 15px 10px;
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        color: #333 !important;
    }
    
    /* Chevron UNIQUEMENT pour les items avec sous-menu */
    .main-navigation .top-menu > li.has-submenu > a::after {
        content: '▼';
        font-size: 10px;
        color: var(--primary-color);
        transition: transform 0.3s;
        margin-left: auto;
    }
    
    .main-navigation .top-menu > li.has-submenu.active > a::after {
        transform: rotate(180deg);
    }
    
    /* Pas de chevron pour les items sans sous-menu */
    .main-navigation .top-menu > li:not(.has-submenu) > a::after {
        display: none;
    }
    
    /* Mobile/Tablette : Sous-menus en accordéon au CLIC */
    .main-navigation .popover.sub-menu {
        position: static !important;
        display: none !important;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        background: #ffffff;
        margin-top: 5px;
    }
    
    /* Affichage permanent au clic avec classe active - SANS BESOIN DE HOVER */
    .main-navigation .top-menu > li.active .popover.sub-menu,
    .main-navigation .top-menu > li.has-submenu.active .popover.sub-menu {
        display: block !important;
        height: auto !important;
        min-height: auto !important;
        visibility: visible !important;
    }
    
    /* Style visuel sur la catégorie active */
    .main-navigation .top-menu > li.has-submenu.active > a,
    .main-navigation .top-menu > li.active > a {
        background: rgba(0, 43, 109, 0.05) !important;
        color: var(--primary-color) !important;
    }
    
    /* PAS DE HOVER - affichage uniquement au clic */
    .main-navigation .top-menu > li:hover .popover.sub-menu {
        display: none !important;
    }
    
    /* Forcer l'affichage pour les items actifs même au hover */
    .main-navigation .top-menu > li.active .popover.sub-menu,
    .main-navigation .top-menu > li.has-submenu.active .popover.sub-menu {
        display: block !important;
    }
    
    /* Style des liens de sous-menu */
    .main-navigation .popover.sub-menu a {
        padding: 12px 15px;
        background: transparent;
        font-size: 13px;
        display: block !important;
        color: #666 !important;
        height: auto !important;
        min-height: 40px;
    }
    
    .main-navigation .popover.sub-menu a:hover {
        background: rgba(0, 43, 109, 0.08) !important;
        color: var(--primary-color) !important;
    }
    
    /* S'assurer que tous les éléments sont visibles */
    .main-navigation .popover.sub-menu ul {
        display: block !important;
        height: auto !important;
        visibility: visible !important;
    }
    
    .main-navigation .popover.sub-menu li {
        display: block !important;
        height: auto !important;
        min-height: 40px;
        visibility: visible !important;
    }
    
    /* Forcer l'affichage des sous-menus des items actifs */
    .main-navigation .top-menu > li.active > .popover.sub-menu,
    .main-navigation .top-menu > li.has-submenu.active > .popover.sub-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .header-top-bar {
        height: 30px;
    }
    
    .custom-header::before {
        height: 30px;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .header-logo img {
        max-height: 40px;
    }
    
    .header-row {
        padding: 10px 0;
        gap: 10px;
    }
    
    .header-nav {
        gap: 8px;
    }
    
    .search-pro-group {
        gap: 5px;
    }
    
    .header-search input {
        font-size: 12px;
        padding: 7px 30px 7px 8px;
    }
    
    .mobile-menu-toggle {
        font-size: 26px;
        padding: 2px;
    }
    
    .account-link,
    .cart-link {
        font-size: 20px;
    }
    
    .language-selector img {
        width: 18px;
    }
    
    .account-link,
    .cart-link {
        font-size: 22px;
    }
}
