#bshopTopProgress.bshop-top-progress{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

#bshopTopProgress.bshop-top-progress.is-active{
  opacity: 1;
}

#bshopTopProgress .bshop-top-progress-bar{
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #ec4899 0%, #f43f5e 55%, #ec4899 100%);
  box-shadow: 0 0 12px rgba(236, 72, 153, 0.55);
  will-change: transform, opacity;
  transition: transform .18s linear, opacity .18s linear;
}

#bshopTopProgress.bshop-top-progress.is-booting .bshop-top-progress-bar{
  animation: bshopTopProgressBoot .9s ease-out 1 forwards;
}

#bshopTopProgress.bshop-top-progress.is-finishing .bshop-top-progress-bar{
  transition: transform .16s ease-out, opacity .18s ease-out;
}

@keyframes bshopTopProgressBoot{
  0%{ transform: scaleX(.06); }
  30%{ transform: scaleX(.34); }
  62%{ transform: scaleX(.62); }
  100%{ transform: scaleX(.82); }
}

#categoriesMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

#categoriesMenu.open {
  max-height: 500px; /* ajustable selon le contenu */
}

.submenu.open {
  display: block !important;
}
.bshop-header-categories-btn {
  background: #fff;
  border: 1px solid #e5e7eb; /* gris clair */
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease;
}

.bshop-header-categories-btn:hover {
  background: #f9fafb; /* léger hover gris */
}
.menu-categories-dropdown {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  min-width: 220px;
}

.menu-categories-dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111;
  transition: background 0.2s ease;
}

.menu-categories-dropdown a:hover {
  background: #f3f4f6;
}
.subcategory-list {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: #374151;
}

.subcategory-list a {
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.2s;
}

.subcategory-list a:hover {
  color: #d3031c; /* ton rouge principal */
}
#subCategoriesPanel {
  background: #fff;
  border-radius: 0 0.75rem 0.75rem 0;
}

#subCategoriesPanel h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

#subCategoriesPanel img {
  transition: transform 0.3s ease;
}

#subCategoriesPanel img:hover {
  transform: scale(1.05);
}
#categoriesMenu ul ul {
  transition: all 0.3s ease-in-out;
}

/* ===== Mega menu (categoriesAllMenu) ===== */
:root{
  --menu-radius: 12px;
  --menu-shadow: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -2px rgba(0,0,0,.05);
  --menu-border: 1px solid #e5e7eb;
  --menu-w: clamp(760px, 58vw, 1100px);
  --cat-col-min: 14rem;
  --cat-col-max: 28rem;
  --gap: 16px;
  --panel-gap: 24px;
  --text: #111827;
  --bg: #fff;
  --bg-soft: #f9fafb;
  --header-offset: 112px;
}

#categoriesAllMenu{
  position:absolute; left:0; top:auto; margin-top:.5rem;
  width:var(--menu-w); max-width:100vw;
  background:var(--bg); color:var(--text);
  box-shadow:var(--menu-shadow); border:var(--menu-border);
  border-top-left-radius:0; border-top-right-radius:0;
  border-bottom-left-radius:var(--menu-radius);
  border-bottom-right-radius:var(--menu-radius);
  z-index:1050; box-sizing:border-box;
  overflow-x:hidden;
}
#categoriesAllMenu.is-open:not(.hidden){ display:flex !important; }
#categoriesAllMenu.is-open{ display:flex !important; }

.bshop-desktop{ display:none; }
.bshop-mobile{ display:flex; flex-direction:column; width:100%; overflow-y:auto; flex:1 1 auto; min-height:0; }

@media (min-width:1024px){
  .bshop-desktop{
    display:flex; width:100%;
    align-items:stretch;
    max-height: calc(100vh - var(--header-offset));
  }
  .bshop-mobile{ display:none; }
}
html.ui-desktop .bshop-desktop{ display:flex !important; }
html.ui-desktop .bshop-mobile{ display:none !important; }
html.ui-mobile .bshop-desktop,
html.ui-tablet .bshop-desktop{ display:none !important; }
html.ui-mobile .bshop-mobile,
html.ui-tablet .bshop-mobile{ display:flex !important; }

.bshop-catlist{
  flex:0 0 auto;
  min-width:var(--cat-col-min);
  width:max-content;
  max-width:var(--cat-col-max);
  border-right:var(--menu-border);
  border-bottom-left-radius:var(--menu-radius);
  margin:0; padding:0; list-style:none;
  overflow-y:auto;
  max-height:inherit;
}
.bshop-catlist > li{ border-bottom:1px solid #f3f4f6; }
.bshop-catlist .cat-entry{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:.5rem; padding:.6rem 1rem; background:var(--bg); border:0; cursor:pointer;
  font-size:.95rem; line-height:1.3; color:var(--text); transition:background .15s ease, box-shadow .15s ease;
  white-space:nowrap; border-left:3px solid transparent;
}
.bshop-catlist .cat-entry-left{display:flex;align-items:center;gap:.75rem;min-width:0;}
.bshop-catlist .cat-entry-link{
  color:var(--text);
  text-decoration:none;
  font-weight:600;
  display:block;
  min-width:0;
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  word-break:keep-all;
  overflow-wrap:normal;
}
.bshop-catlist .cat-entry-link:hover{color:#0f172a;}
.bshop-catlist .cat-entry:hover,
.bshop-catlist .cat-entry:focus-within{background:var(--bg-soft);outline:none;}
.bshop-catlist-item.active .cat-entry{background:#eef2ff;border-left-color:#6366f1;}

.bshop-desktop > .flex-1.p-6{
  flex:1 1 auto; padding:1.25rem;
  overflow-y:auto;
  max-height:inherit;
}
.bshop-panel{ display:none; }
.bshop-panel.active{
  display:grid; gap:var(--panel-gap);
  grid-template-columns:repeat(auto-fill, minmax(100px, 3fr));
}

.bshop-card{
  border:var(--menu-border); border-radius:10px; background:var(--bg);
  padding:14px; transition:box-shadow .18s, transform .18s;
  width:100%;
}
.bshop-card:hover{ box-shadow:0 6px 16px rgba(0,0,0,.08); transform:translateY(-1px); }
.bshop-avatar{ width:80px; height:80px; border-radius:9999px; overflow:hidden; border:1px solid #e5e7eb; margin:0 auto; }
.bshop-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.bshop-subtitle{
  margin-top:.6rem; font-weight:600; font-size:.95rem; text-align:center; line-height:1.25;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.bv-links{ margin-top:.6rem; font-size:.88rem; margin: 0 auto; width: fit-content; }
@media (max-width:767px){ .bv-links{ display:none; } }

.bshop-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:.8rem 1rem; border-bottom:var(--menu-border); background:var(--bg);
  position:sticky; top:0; z-index:1;
}
.bshop-header h3{ margin:0; font-size:1.05rem; font-weight:700; }
.bshop-iconbtn{
  width:2.25rem; height:2.25rem; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid #e5e7eb; border-radius:.6rem; background:#fff;
}

.bshop-header-categories-btn .label { display:flex; }
@media (max-width: 1023px){
  .bshop-header-categories-btn .label { display:none; }
}
#catArrow{ transition:transform .2s; }
#catArrow.is-rot{ transform:rotate(180deg); }

@media (max-width: 1023px){
  #categoriesAllMenu.is-open{
    position: fixed; inset: 0; margin-top: 0;
    width: 100vw; height: 100dvh;
    display: flex; flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    touch-action: pan-y;
  }

  .bshop-views{
    position: relative;
    flex: 1 1 auto; min-height: 0;
    width: 100%;
    overflow: hidden;
  }

  .bshop-v{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1rem;
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
    background: #fff;
    transition: transform .25s ease;
    will-change: transform;
  }

  #bshop-v1 { transform: translateX(0); }
  #bshop-v2 { transform: translateX(100%); }
  #categoriesAllMenu.is-v2 #bshop-v1 { transform: translateX(-100%); }
  #categoriesAllMenu.is-v2 #bshop-v2 { transform: translateX(0); }

  .bshop-grid{ display:grid; gap:var(--gap); }
  #bshop-v1 .bshop-grid{ grid-template-columns: repeat(1, minmax(0, 1fr)); }
  #bshop-v2 .bshop-grid,
  .bshop-mpanel.bshop-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #bshop-v2 a { display:block; max-width:100%; }
}

@media (max-width: 1023px){
  #categoriesAllMenu.is-open{
    position: fixed; inset: 0;
    width: 100vw; height: 100dvh;
    display: flex; flex-direction: column;
    overflow: hidden;
    touch-action: pan-y;
  }
  .bshop-views{
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .bshop-v{
    display: none;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
    background: #fff;
  }
  #categoriesAllMenu.is-open #bshop-v1{ display: block; }
  #categoriesAllMenu.is-open.is-v2 #bshop-v1{ display: none; }
  #categoriesAllMenu.is-open.is-v2 #bshop-v2{ display: block; }
  #bshop-v1 .bshop-grid{ display:grid; gap: var(--gap,16px); grid-template-columns: repeat(1, minmax(0,1fr)); }
  #bshop-v2 .bshop-grid{ display:grid; gap: var(--gap,16px); grid-template-columns: repeat(2, minmax(0,1fr)); }
  #bshop-v2 a{ display:block; max-width:100%; }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 1023px){
    #categoriesAllMenu.is-open{ height: -webkit-fill-available; }
    .bshop-views{ block-size: -webkit-fill-available; }
    .bshop-v{ block-size: 100%; }
  }
}

/* UI tablet/mobile override (when width > 1023 but touch UI) */
html.ui-mobile #categoriesAllMenu.is-open,
html.ui-tablet #categoriesAllMenu.is-open{
  position:fixed;
  inset:0;
  width:100vw;
  height:100dvh;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  touch-action:pan-y;
}
html.ui-mobile .bshop-views,
html.ui-tablet .bshop-views{
  position:relative;
  flex:1 1 auto;
  min-height:0;
  width:100%;
  overflow:hidden;
}
html.ui-mobile .bshop-v,
html.ui-tablet .bshop-v{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  padding:1rem;
  padding-bottom:calc(6.5rem + env(safe-area-inset-bottom));
  background:#fff;
}
html.ui-mobile #bshop-v1{ transform:translateX(0); }
html.ui-mobile #bshop-v2{ transform:translateX(100%); }
html.ui-tablet #bshop-v1{ transform:translateX(0); }
html.ui-tablet #bshop-v2{ transform:translateX(100%); }
html.ui-mobile #categoriesAllMenu.is-v2 #bshop-v1,
html.ui-tablet #categoriesAllMenu.is-v2 #bshop-v1{ transform:translateX(-100%); }
html.ui-mobile #categoriesAllMenu.is-v2 #bshop-v2,
html.ui-tablet #categoriesAllMenu.is-v2 #bshop-v2{ transform:translateX(0); }

.bshop-hidden{ display:none !important; }
/* Carte catégorie par défaut */
.base-row{
  background:#fff;
  border-color:#e5e7eb;
  transition:background-color .18s, border-color .18s, box-shadow .18s;
}
.base-row:hover{ background:#f9fafb; }

/* Radio caché visuellement (on garde l’accessibilité via le label) */
.base-input{
  width:16px; height:16px;
  accent-color: #111; /* facultatif */
}

/* Catégorie active : fond un peu plus foncé */
.base-row.is-active{
  background:#f3f4f6;
  border-color:#d1d5db;
  box-shadow: inset 0 0 0 1px #d1d5db;
}
:root{
  --v2-accent:#d71a21; /* même couleur que la Vue 2 */
}

/* --- Ligne catégorie (sans bordure) --- */
#desktopCatViewBases .base-row{
  background:#fff;
  border:none;                     /* <- pas de bordure */
  border-radius:.5rem;
  padding:.5rem .75rem;
  display:flex; align-items:center; justify-content:space-between;
  cursor:pointer;
  transition:background-color .18s, box-shadow .18s;
  box-shadow:none;                 /* <- pas d’ombre de contour */
}
#desktopCatViewBases .base-row:hover{
  background:#f9fafb;
}

/* État actif : léger fond, pas de bordure */
#desktopCatViewBases .base-row.is-active{
  background:#f3f4f6;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); /* discret, peut être retiré si tu veux zéro trait */
}

/* --- Radio custom agrandi (sans bordure) --- */
#desktopCatViewBases .base-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid #000;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    margin-right: 0.5rem;
}
/* pastille centrale */
#desktopCatViewBases .base-input::before{
  content:"";
  width:12px; height:12px; border-radius:50%;
  transform:scale(0);
  transition:transform .12s ease-in-out;
  background:var(--v2-accent);
}

/* hover/focus */
#desktopCatViewBases .base-input:hover{
  box-shadow:0 0 0 2px #333;
}
#desktopCatViewBases .base-input:focus{
  outline:none;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 5px rgba(215,26,33,.18); /* halo d’accessibilité */
}

/* checked : anneau couleur Vue 2 + pastille visible */
#desktopCatViewBases .base-input:checked{
  box-shadow:0 0 0 2px var(--v2-accent);
}
#desktopCatViewBases .base-input:checked::before{
  transform:scale(1);
}

/* Mobile categories stability patch (store) */
html.ui-mobile #categoriesAllMenu.is-open,
html.ui-tablet #categoriesAllMenu.is-open{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  margin-top: 0;
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  z-index: 1300;
}
html.ui-mobile #categoriesAllMenu .bshop-mobile,
html.ui-tablet #categoriesAllMenu .bshop-mobile{
  display: flex !important;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
html.ui-mobile #categoriesAllMenu .bshop-header,
html.ui-tablet #categoriesAllMenu .bshop-header{
  position: sticky;
  top: 0;
  z-index: 3;
  flex: 0 0 auto;
  background: #fff;
}
html.ui-mobile #categoriesAllMenu .bshop-views,
html.ui-tablet #categoriesAllMenu .bshop-views{
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
html.ui-mobile #categoriesAllMenu .bshop-v,
html.ui-tablet #categoriesAllMenu .bshop-v{
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  transform: none !important;
  will-change: auto;
}
html.ui-mobile #categoriesAllMenu.is-open #bshop-v1,
html.ui-tablet #categoriesAllMenu.is-open #bshop-v1{
  display: block !important;
}
html.ui-mobile #categoriesAllMenu.is-open #bshop-v2,
html.ui-tablet #categoriesAllMenu.is-open #bshop-v2{
  display: none !important;
}
html.ui-mobile #categoriesAllMenu.is-open.is-v2 #bshop-v1,
html.ui-tablet #categoriesAllMenu.is-open.is-v2 #bshop-v1{
  display: none !important;
}
html.ui-mobile #categoriesAllMenu.is-open.is-v2 #bshop-v2,
html.ui-tablet #categoriesAllMenu.is-open.is-v2 #bshop-v2{
  display: block !important;
}
html.ui-mobile #categoriesAllMenu .bshop-grid,
html.ui-tablet #categoriesAllMenu .bshop-grid{
  min-width: 0;
}
html.ui-mobile #categoriesAllMenu .bshop-card,
html.ui-tablet #categoriesAllMenu .bshop-card{
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (orientation: landscape){
  html.ui-tablet #categoriesAllMenu #bshop-v2 .bshop-grid,
  html.ui-tablet #categoriesAllMenu .bshop-mpanel.bshop-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}


:root{
  --header-bg:#fff;
  --header-border:#e7ecf5;
  --header-shadow:0 18px 45px rgba(15,23,42,.08);
  --header-muted:#6b7280;
  --header-text:#0f172a;
  --header-pill:#f6f8ff;
  --header-accent:#111f4d;
  --header-radius:18px;
  --header-mobile-height:72px;
}
.hidden{
  display:none !important;
}
.bshop-central-header{
  background:var(--header-bg);
  border-bottom:1px solid var(--header-border);
  box-shadow:var(--header-shadow);
  position:sticky;
  top:0;
  z-index:70;
  transition:transform .2s ease;
}
.bshop-central-header .header-container{
  max-width:1536px;
  margin:0 auto;
  padding:0 1.25rem;
  box-sizing:border-box;
}
.bshop-central-header .header-shell{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem;
  min-height:72px;
  position:relative;
}
/* UI modes (mobile / tablet / desktop) */
html.ui-mobile .bshop-central-header .header-search,
html.ui-tablet .bshop-central-header .header-search{
  display:none !important;
}
html.ui-desktop .bshop-central-header .header-search{
  display:block !important;
}
html.ui-desktop .bshop-central-header .header-desktop-actions{
  display:flex !important;
}
html.ui-desktop .bshop-central-header .header-mobile-actions{
  display:none !important;
}
html.ui-mobile .bshop-central-header .header-mobile-actions,
html.ui-tablet .bshop-central-header .header-mobile-actions{
  display:flex !important;
}
html.ui-mobile .bshop-central-header .header-desktop-actions,
html.ui-tablet .bshop-central-header .header-desktop-actions{
  display:none !important;
}
.bshop-central-header .header-center{
  display:flex;
  align-items:center;
  flex:1 1 auto;
  gap:1.1rem;
  min-width:0;
}
.bshop-central-header .header-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:1rem;
  flex:0 0 auto;
}
.bshop-central-header .header-logo{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.bshop-central-header .header-logo .site-logo{
  display:block;
  width:200px;
  max-width:200px;
  height:auto;
  margin-top:0;
  object-fit:contain;
}
.bshop-central-header .header-categories{
  position:relative;
  flex:0 0 auto;
}
.bshop-central-header .bshop-header-categories-btn{
  display:inline-flex;
  align-items:center;
  gap:.65rem;
  padding:0 1.5rem;
  height:48px;
  border-radius:var(--header-radius);
  border:1px solid var(--header-border);
  background:var(--header-pill);
  font-weight:600;
  color:var(--header-text);
  transition:all .2s ease;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}
.bshop-central-header .bshop-header-categories-btn svg{
  flex-shrink:0;
}
.bshop-central-header .bshop-header-categories-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 25px rgba(15,23,42,.12);
  border-color:#d8def0;
  background:#fff;
}
.bshop-central-header .bshop-header-categories-btn .label{
  display:flex;
  align-items:center;
  gap:.35rem;
}
.bshop-central-header .header-search{
  flex:1 1 420px;
  max-width:640px;
  position:relative;
}
.bshop-central-header .header-search input[type="search"]{
  width:100%;
  padding:.7rem 1.2rem .7rem 3rem;
  border-radius:999px;
  border:1px solid transparent;
  background:#f4f6fb;
  font-size:.95rem;
  color:var(--header-text);
  transition:all .2s ease;
}
.bshop-central-header .header-search input[type="search"]:focus{
  outline:none;
  background:#fff;
  border-color:var(--header-accent);
  box-shadow:0 0 0 3px rgba(17,31,77,.15);
}
.bshop-central-header .header-desktop-actions{
  display:flex;
  align-items:center;
  gap:.9rem;
  flex:0 0 auto;
}
.bshop-central-header .header-desktop-actions button,
.bshop-central-header .header-desktop-actions a{
  display:flex;
  align-items:center;
  gap:.4rem;
  font-weight:600;
  color:var(--header-muted);
  border:none;
  background:transparent;
  padding:.35rem .65rem;
  border-radius:999px;
  transition:color .2s ease, background .2s ease;
  position:relative;
}
.bshop-central-header .header-desktop-actions button svg,
.bshop-central-header .header-desktop-actions a svg{
  width:22px;
  height:22px;
}
.bshop-central-header .header-desktop-actions button:hover,
.bshop-central-header .header-desktop-actions a:hover{
  color:var(--header-text);
  background:#f5f7fb;
}
.bshop-central-header .header-desktop-actions .header-action{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-weight:600;
  color:var(--header-muted);
  border:none;
  background:transparent;
  padding:.35rem .65rem;
  border-radius:999px;
  transition:color .2s ease, background .2s ease;
}
.bshop-central-header .header-desktop-actions .header-action svg{
  width:22px;
  height:22px;
}
.bshop-central-header .header-desktop-actions .header-action:hover{
  color:var(--header-text);
  background:#f5f7fb;
}
.bshop-central-header .cart-icon-wrap{
  position:relative;
  display:inline-flex;
  align-items:center;
}
.bshop-central-header .cart-icon-wrap-desktop{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
}
.bshop-central-header .header-mobile-actions{
  display:none;
  align-items:center;
  gap:.65rem;
}
.bshop-central-header .header-mobile-actions button{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--header-border);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
  transition:all .2s ease;
  position:relative;
}
.bshop-central-header .header-mobile-actions button:hover{
  transform:translateY(-1px);
  border-color:#dce3f4;
}
.bshop-central-header .bshopHeaderCountMobileCart,
.bshop-central-header .bshopHeaderCountCart{
  position:absolute;
  top:-6px;
  right:-6px;
  background:#111827;
  color:#fff;
  min-width:16px;
  height:16px;
  border-radius:9999px;
  font-size:.55rem;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  line-height:1;
  border:2px solid #fff;
  box-sizing:border-box;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}
.bshop-central-header .header-cart-desktop{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
}
.bshop-central-header .header-cart-desktop .bshopHeaderCountCart{
  top:-4px;
  right:-4px;
  transform:translate(35%,-35%);
  min-width:18px;
  width:18px;
  height:18px;
  font-size:.6rem;
  border-radius:999px;
  padding:10px;
}
.bshop-central-header .header-cart-desktop .cart-label{
  font-size:.85rem;
  font-weight:600;
  color:var(--header-text);
  line-height:1;
}
.bshop-central-header .bshopHeaderCountCart{
  min-width:16px;
  width:16px;
  height:16px;
  border-radius:9999px;
}
.bshop-central-header .bshopHeaderCountCart[data-count],
.bshop-central-header .bshopHeaderCountCart{
  padding:0;
}
@media (max-width:440px){
  .bshop-central-header .bshopHeaderCountMobileCart,
  .bshop-central-header .bshopHeaderCountCart{
    top:-7px;
    right:-7px;
    min-width:15px;
    height:15px;
    font-size:.5rem;
    padding:0 3px;
  }
}
.bshop-central-header,
.bshop-central-header .header-container,
.bshop-central-header .header-shell,
.bshop-central-header .header-desktop-actions,
.bshop-central-header .header-lang{
  overflow:visible;
}
.bshop-central-header .header-lang{
  position:relative;
}
.bshop-central-header .locale-trigger{
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid #e5e7eb;
  border-radius:9999px;
  padding:6px 12px;
  background:#fff;
  color:#111827;
  font-size:12px;
  line-height:1.1;
}
.bshop-central-header .locale-trigger:hover{
  background:#f9fafb;
}
.bshop-central-header .locale-trigger-flag{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  overflow:hidden;
  background:#f3f4f6;
}
.bshop-central-header .locale-trigger-text{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.bshop-central-header .locale-trigger-country{
  font-size:12px;
  font-weight:600;
}
.bshop-central-header .locale-trigger-code{
  font-size:11px;
  font-weight:600;
  color:#374151;
  margin-top:2px;
}
.bshop-central-header .locale-trigger-caret{
  width:14px;
  height:14px;
  color:#6b7280;
  margin-left:4px;
}
.bshop-central-header #desktopLocaleDropdown{
  position:absolute;
  top:52px;
  left:auto;
  right:0;
  margin-top:0;
  max-height:calc(-83px + 100vh);
  overflow:hidden auto;
  border-top:0;
  width:auto;
}
.bshop-central-header .locale-panel-card{
  background:#fff;
  border:1px solid #ececec;
  border-radius:24px;
  padding:22px;
  width:320px;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
}
.locale-panel-card .locale-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}
.locale-panel-card .locale-field:last-of-type{
  margin-bottom:12px;
}
.locale-panel-card .locale-field-label{
  font-size:18px;
  font-weight:700;
  color:#111827;
}
.locale-panel-card .locale-select-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  font-size:14px;
}
.locale-panel-card .locale-select-left{
  display:flex;
  align-items:center;
  gap:10px;
}
.locale-panel-card .locale-select-flag{
  width:22px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  overflow:hidden;
  background:#f3f4f6;
}
.locale-panel-card .locale-select-text{
  font-weight:500;
  color:#111827;
}
.locale-panel-card .locale-select-caret{
  width:16px;
  height:16px;
  color:#6b7280;
}
.locale-panel-card .locale-select-list{
  margin-top:8px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  max-height:240px;
  overflow:auto;
}
.locale-panel-card .locale-option{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  font-size:14px;
  color:#111827;
  background:transparent;
  border:0;
  text-align:left;
  cursor:pointer;
}
.locale-panel-card .locale-option:hover{
  background:#f8fafc;
}
.locale-panel-card .locale-option.is-active{
  background:#f1f5f9;
  font-weight:600;
}
.locale-panel-card .locale-option.is-disabled{
  opacity:.5;
  cursor:not-allowed;
}
.locale-panel-card .locale-option-flag{
  width:22px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  overflow:hidden;
  background:#f3f4f6;
}
.locale-panel-card .locale-save-btn{
  width:100%;
  max-width:260px;
  padding:12px 16px;
  border:0;
  border-radius:9999px;
  background:#111827;
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin:8px auto 0;
}
.locale-panel-card .locale-save-btn:hover{
  background:#0f172a;
}
.bshop-central-header .locale-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}
.bshop-central-header .locale-field:last-of-type{
  margin-bottom:12px;
}
.bshop-central-header .locale-field-label{
  font-size:18px;
  font-weight:700;
  color:#111827;
}
.bshop-central-header .locale-select-btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  font-size:14px;
}
.bshop-central-header .header-desktop-actions .locale-select-btn{
  border:1px solid #e5e7eb !important;
  background:#fff !important;
}
.bshop-central-header .locale-select-left{
  display:flex;
  align-items:center;
  gap:10px;
}
.bshop-central-header .locale-select-flag{
  width:22px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  overflow:hidden;
  background:#f3f4f6;
}
.bshop-central-header .locale-select-text{
  font-weight:500;
  color:#111827;
}
.bshop-central-header .locale-select-caret{
  width:16px;
  height:16px;
  color:#6b7280;
}
.bshop-central-header .locale-select-list{
  margin-top:8px;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  max-height:200px;
  overflow:auto;
  padding:6px 0;
}
.bshop-central-header .locale-option{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:0;
  background:transparent;
  font-size:14px;
  color:#111827;
  text-align:left;
  cursor:pointer;
}
.bshop-central-header .locale-option:hover{
  background:#f3f4f6;
}
.bshop-central-header .locale-option.is-active{
  background:#f1f5f9;
  font-weight:600;
}
.bshop-central-header .locale-option.is-disabled{
  opacity:.5;
  cursor:not-allowed;
}
.bshop-central-header .locale-option-flag{
  width:22px;
  height:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  overflow:hidden;
  background:#f3f4f6;
}
.bshop-central-header .locale-save-btn{
  width:100%;
  max-width:260px;
  padding:12px 16px;
  border:0;
  border-radius:9999px;
  background:#111827;
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  margin:8px auto 0;
}
.bshop-central-header .locale-save-btn:hover{
  background:#0f172a;
}
.bshop-central-header #desktopLocaleDropdown .locale-save-btn{
  background:#111827 !important;
  color:#fff !important;
  border:0 !important;
  text-align:center;
}

.bshop-central-header .locale-mobile-trigger{
  display:flex;
  align-items:center;
  gap:6px;
  border:1px solid #e5e7eb;
  border-radius:9999px;
  padding:5px 10px;
  background:#fff;
  font-size:12px;
  line-height:1;
  height:34px;
  flex-shrink:0;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  white-space:nowrap;
}
.bshop-central-header .locale-mobile-flag{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  overflow:hidden;
  background:#f3f4f6;
  flex-shrink:0;
}
.bshop-central-header .locale-mobile-code{
  font-weight:600;
  color:#111827;
  font-size:12px;
  line-height:1;
  flex-shrink:0;
}
.bshop-central-header .locale-mobile-caret{
  width:14px;
  height:14px;
  color:#6b7280;
  flex-shrink:0;
}


.bshop-central-header .locale-mobile-trigger.is-compact .locale-mobile-code{
  display:none;
}
.bshop-central-header .locale-mobile-trigger.is-compact{
  padding:0 6px;
  gap:4px;
}

.locale-sheet-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:9998;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.locale-sheet-overlay.hidden{
  display:none;
}
.locale-sheet-overlay.is-open{
  opacity:1;
  pointer-events:auto;
}
.locale-sheet{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  transform:translateY(100%);
  pointer-events:none;
  transition:transform .26s ease;
}
.locale-sheet.hidden{
  display:none;
}
.locale-sheet.is-open{
  transform:translateY(0);
  pointer-events:auto;
}
.locale-sheet-card{
  background:#fff;
  border-radius:24px 24px 0 0;
  padding:12px 16px 24px;
  max-height:80vh;
  overflow:auto;
  box-shadow:0 -10px 30px rgba(0,0,0,.18);
}
/* Mobile locale sheet = same card style as desktop, responsive */
.locale-sheet-card.locale-panel-card{
  width:100%;
  max-width:520px;
  margin:0 auto;
  padding:22px;
  border:1px solid #ececec;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
}
.locale-sheet-handle{
  width:48px;
  height:5px;
  background:#e5e7eb;
  border-radius:9999px;
  margin:4px auto 16px;
}
.locale-sheet-body{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.locale-sheet-body .locale-field{
  margin-bottom:0;
}
.locale-sheet-body .locale-save-btn{
  margin-top:4px;
  max-width:320px;
}

@media (min-width: 992px){
  .locale-sheet,
  .locale-sheet-overlay{
    display:none !important;
  }
}
html.ui-tablet .locale-sheet,
html.ui-tablet .locale-sheet-overlay{
  display:block !important;
}
html.ui-mobile .locale-sheet,
html.ui-mobile .locale-sheet-overlay{
  display:block !important;
}
html.ui-mobile .locale-sheet.hidden,
html.ui-tablet .locale-sheet.hidden,
html.ui-mobile .locale-sheet-overlay.hidden,
html.ui-tablet .locale-sheet-overlay.hidden{
  display:none !important;
}
html.ui-desktop .locale-sheet,
html.ui-desktop .locale-sheet-overlay{
  display:none !important;
}
@media (max-width: 991px){
  .bshop-central-header #desktopLocaleDropdown{
    display:none !important;
  }
  .locale-sheet{
    width:100%;
  }
  .locale-sheet-card{
    max-width:520px;
    margin:0 auto;
  }
  .locale-sheet-card.locale-panel-card{
    width:100%;
    border-radius:24px 24px 0 0;
    max-height:80vh;
    overflow:auto;
    padding:22px;
    border:1px solid #ececec;
    box-shadow:0 -10px 30px rgba(0,0,0,.18);
  }
}
@media (max-width:991px){
  .bshop-central-header .header-shell{
    gap:.5rem;
    padding:0 .85rem;
  }
  .bshop-central-header .header-center{
    gap:.55rem;
  }
  .bshop-central-header .header-right{
    gap:.55rem;
  }
  .bshop-central-header .header-logo .site-logo{
    width:160px;
    max-width:160px;
  }
  .bshop-central-header .bshop-header-categories-btn{
    padding:0 1rem;
    height:44px;
  }
  .bshop-central-header .header-desktop-actions{
    display:none;
  }
  .bshop-central-header .header-mobile-actions{
    display:flex;
    gap:.45rem;
  }
  .bshop-central-header .header-search{
    display:none !important;
  }
  .bshop-central-header .bshop-header-categories-btn .label{
    display:none;
  }
}

/* MOBILE_HEADER_FIX_2026_02_08 */
@media (max-width:991px){
  .bshop-central-header .header-container{
    padding-left:1rem !important;
    padding-right:1rem !important;
  }
  .bshop-central-header .header-shell{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:.5rem;
    column-gap:.5rem;
    row-gap:0;
    min-height:54px;
    height:54px;
    padding:0;
    width:100%;
  }
  .bshop-central-header .header-logo{
    margin-left:0;
    margin-right:0;
    padding-left:0;
  }
  .bshop-central-header .header-center{
    display:flex;
    align-items:center;
    gap:.5rem;
    margin-left:auto;
    flex:0 0 auto;
  }
  .bshop-central-header .header-right{
    display:flex;
    align-items:center;
    gap:.5rem;
    flex:0 0 auto;
  }
  .bshop-central-header .header-categories{
    flex:0 0 auto;
  }
  .bshop-central-header .header-logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex:0 0 auto;
  }
  .bshop-central-header .header-logo .site-logo{
    width:clamp(88px, 24vw, 120px);
    max-width:none;
    min-width:0;
    margin-left:0;
  }
  .bshop-central-header .bshop-header-categories-btn{
    width:34px;
    min-width:34px;
    height:34px;
    padding:0;
    justify-content:center;
  }
  .bshop-central-header .bshop-header-categories-btn svg{
    width:17px;
    height:17px;
  }
  .bshop-central-header .header-mobile-actions{
    display:flex;
    align-items:center;
    gap:.5rem;
  }
  .bshop-central-header .mobile-actions-primary{
    display:flex;
    align-items:center;
    gap:.5rem;
  }
  .bshop-central-header .mobile-actions-overflow{
    position:relative;
    display:none !important;
    align-items:center;
    margin-left:0;
  }
  .bshop-central-header .mobile-more-trigger.hidden,
  .bshop-central-header .mobile-more-menu.hidden{
    display:none;
  }
  .bshop-central-header .mobile-more-trigger{
    width:34px;
    height:34px;
    border-radius:999px;
    border:1px solid var(--header-border);
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(15,23,42,.05);
  }
  .bshop-central-header .mobile-more-trigger svg{
    width:17px;
    height:17px;
  }
  .bshop-central-header .mobile-more-menu{
    position:absolute;
    right:0;
    top:calc(100% + 8px);
    min-width:190px;
    max-width:min(240px, calc(100vw - 24px));
    padding:8px;
    background:#fff;
    border-radius:16px;
    border:1px solid #e5e7eb;
    box-shadow:0 16px 30px rgba(15,23,42,.12);
    display:flex;
    flex-direction:column;
    gap:8px;
    z-index:1200;
  }
  .bshop-central-header .mobile-more-menu .locale-mobile-trigger,
  .bshop-central-header .mobile-more-menu #mobileAccountTrigger{
    width:100% !important;
    height:auto !important;
    padding:8px 12px !important;
    border-radius:12px !important;
    border:1px solid #e5e7eb !important;
    box-shadow:none !important;
    justify-content:flex-start !important;
    gap:8px;
  }
  .bshop-central-header .mobile-more-menu #mobileAccountTrigger svg{
    width:18px;
    height:18px;
  }
  .bshop-central-header .mobile-more-menu .locale-mobile-trigger{
    box-shadow:none !important;
  }
  .bshop-central-header .mobile-more-menu .locale-mobile-code,
  .bshop-central-header .mobile-more-menu .locale-mobile-caret{
    display:inline;
  }
  .bshop-central-header .header-mobile-actions button,
  .bshop-central-header .header-mobile-actions a{
    width:34px;
    height:34px;
    border-radius:999px;
    padding:0;
    border:1px solid var(--header-border);
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:none;
    color:var(--header-text, #111827);
    box-sizing:border-box;
  }
  .bshop-central-header .bshop-header-categories-btn{
    box-shadow:none;
    box-sizing:border-box;
  }
  .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    box-shadow:none;
    box-sizing:border-box;
  }
  .bshop-central-header .bshopHeaderCountMobileCart{
    width:16px !important;
    height:16px !important;
    min-width:16px;
    min-height:16px;
    border-radius:999px !important;
    top:0 !important;
    right:0 !important;
    transform:translate(30%,-35%);
    font-size:9px !important;
    line-height:1;
    padding:0 !important;
  }
  .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:auto !important;
    min-width:34px;
    height:34px;
    padding:0 8px !important;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 18px rgba(15,23,42,.05);
  }
  .bshop-central-header .header-cart-desktop{
    display:none !important;
  }
  .bshop-central-header .butMobileCart.opacity-50{
    opacity:1;
  }
  .bshop-central-header .header-mobile-actions a:hover,
  .bshop-central-header .header-mobile-actions button:hover{
    transform:translateY(-1px);
    border-color:#dce3f4;
  }
  .bshop-central-header .header-mobile-actions svg{
    width:18px;
    height:18px;
  }
  /* Compte + Langue : même hauteur / alignement */
  .bshop-central-header #mobileAccountTrigger{
    width:34px;
    height:34px;
  }
  .bshop-central-header .locale-mobile-trigger{
    height:34px;
    min-height:34px;
    padding:0 8px;
    gap:6px;
    width:auto;
    border:1px solid var(--header-border);
    background:#fff;
    box-shadow:0 6px 18px rgba(15,23,42,.05);
    border-radius:999px;
  }
  .bshop-central-header .locale-mobile-flag{
    width:16px;
    height:12px;
    border-radius:3px !important;
    background:#fff;
  }
  .bshop-central-header .locale-mobile-code{
    font-size:11px;
    font-weight:700;
    letter-spacing:.02em;
  }
  .bshop-central-header .locale-mobile-caret{
    width:12px;
    height:12px;
  }
  .bshop-central-header .locale-mobile-trigger.is-compact .locale-mobile-code{
    display:inline;
  }
body.mobile-search-open{
  overflow:hidden;
}
html.mobile-search-open{
  overflow:hidden;
}
body.mobile-search-open #bshopHeaderMobileSearch{
  top:0;
  left:0;
  right:0;
  height:100%;
  width:100%;
  padding-top:0;
}
  body.mobile-search-open #bshopHeaderMobileSearch .container{
    max-width:100%;
    height:100%;
    padding:0 1rem 1.5rem;
  }
  body.mobile-search-open #bshopHeaderMobileSearchDropdown{
    display:block;
    height:calc(100% - 3rem);
    max-height:none;
    overflow:hidden;
  }
}

/* Mobile search sheet (full screen overlay) */
@media (max-width: 991px){
  #bshopHeaderMobileSearch{
    position:fixed !important;
    inset:0 !important;
    left:0 !important;
    right:0 !important;
    width:100vw !important;
    max-width:100vw !important;
    height:100% !important;
    z-index:10050 !important;
    background:#fff !important;
    display:flex;
    flex-direction:column;
    overflow:hidden;
  }
  #bshopHeaderMobileSearch .mobile-search-body{
    flex:1;
    min-height:0;
    display:flex;
    flex-direction:column;
    width:100%;
    max-width:100% !important;
    margin:0 !important;
  }
  #bshopHeaderMobileSearch.is-open #bshopHeaderMobileSearchDropdown{
    display:block !important;
  }
  #bshopHeaderMobileSearchDropdown{
    flex:1;
    min-height:0;
    overflow:hidden;
    width:100%;
    max-width:100% !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-scroll{
    flex:1;
    min-height:0;
    overflow-y:auto;
    max-height:100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  #bshopHeaderMobileSearchDropdown #mobileRecent,
  #bshopHeaderMobileSearchDropdown #mobilePopulaire{
    max-height:none !important;
    overflow:visible !important;
  }
  .mobile-search-empty{
    padding:16px 12px;
    font-size:14px;
    color:#6b7280;
    text-align:center;
  }
}
/* Mobile/Tablet UI overrides (when width > 991 but touch UI) */
html.ui-mobile #bshopHeaderMobileSearch,
html.ui-tablet #bshopHeaderMobileSearch{
  position:fixed !important;
  inset:0 !important;
  left:0 !important;
  right:0 !important;
  width:100vw !important;
  max-width:100vw !important;
  height:100% !important;
  z-index:10050 !important;
  background:#fff !important;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
html.ui-mobile #bshopHeaderMobileSearch .mobile-search-body,
html.ui-tablet #bshopHeaderMobileSearch .mobile-search-body{
  flex:1;
  min-height:0;
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:100% !important;
  margin:0 !important;
}
html.ui-mobile #bshopHeaderMobileSearchDropdown,
html.ui-tablet #bshopHeaderMobileSearchDropdown{
  flex:1;
  min-height:0;
  overflow:hidden;
  width:100%;
  max-width:100% !important;
}
html.ui-mobile #bshopHeaderMobileSearchDropdown .mobile-search-scroll,
html.ui-tablet #bshopHeaderMobileSearchDropdown .mobile-search-scroll{
  flex:1;
  min-height:0;
  overflow-y:auto;
  max-height:100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.bshop-central-header.mobile-tight .header-shell{
  column-gap:.35rem;
}
.bshop-central-header.mobile-tight .mobile-actions-primary{
  gap:.35rem;
}
.bshop-central-header.mobile-tight .header-mobile-actions{
  gap:.35rem;
}

@media (max-width:540px){
  .bshop-central-header .header-logo .site-logo{
    width:58vw;
    max-width:150px;
    min-width:100px;
  }
}

@media (max-width:440px){
  .bshop-central-header .header-shell{
    column-gap:.4rem;
  }
  .bshop-central-header .header-center,
  .bshop-central-header .header-right{
    gap:.4rem;
  }
  .bshop-central-header .header-logo .site-logo{
    width:clamp(84px, 26vw, 110px);
    max-width:none;
    min-width:0;
  }
  .bshop-central-header .bshop-header-categories-btn,
  .bshop-central-header .header-mobile-actions button,
  .bshop-central-header .header-mobile-actions a{
    width:34px;
    height:34px;
  }
  .bshop-central-header .locale-mobile-trigger{
    width:auto;
    height:34px;
    padding:0 8px;
  }
  .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:auto !important;
    min-width:34px;
    height:34px;
    padding:0 8px !important;
  }
  .bshop-central-header .bshop-header-categories-btn svg,
  .bshop-central-header .header-mobile-actions svg{
    width:18px;
    height:18px;
  }
  .bshop-central-header .header-mobile-actions{
    gap:.5rem;
  }
}
@media (max-width:360px){
  .bshop-central-header .header-mobile-actions{
    gap:.35rem;
  }
  .bshop-central-header .locale-mobile-code{
    font-size:10px;
  }
  .bshop-central-header .locale-mobile-trigger{
    padding:0 6px;
    gap:4px;
  }
  .bshop-central-header .locale-mobile-caret{
    width:10px;
    height:10px;
  }
}
@media (max-width: 991px){
  .bshop-central-header .header-search{
    display:none !important;
  }
  .bshop-central-header .header-search input{
    height:38px;
    font-size:.9rem;
  }
  .bshop-central-header .header-container{
    padding-left:1rem !important;
    padding-right:1rem !important;
  }
}
body.mobile-search-open .bshop-central-header{
  transform:none;
  pointer-events:auto;
}
.header-account{
  position:relative;
}
.account-trigger{
  display:flex;
  align-items:center;
  gap:.5rem;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
}
.account-trigger-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
  text-align:left;
}
.account-trigger-top{
  font-size:12px;
  color:#6b7280;
  font-weight:600;
}
.account-trigger-bottom{
  font-size:13px;
  color:#111827;
  font-weight:600;
  white-space:nowrap;
}
.header-account .account-dropdown{
  position:absolute;
  top:52px;
  right:0;
  min-width:260px;
  max-width:320px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  box-shadow:0 22px 50px rgba(15,23,42,.18);
  z-index:60;
}
.header-account .account-dropdown::before{
  content:'';
  position:absolute;
  top:-9px;
  right:36px;
  width:16px;
  height:16px;
  background:#fff;
  border-left:1px solid #e5e7eb;
  border-top:1px solid #e5e7eb;
  transform:rotate(45deg);
}
.account-dropdown-card{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.account-auth{
  text-align:center;
  padding:4px 0 12px;
  border-bottom:1px solid #eef2f7;
}
.account-auth-title{
  font-size:13px;
  font-weight:600;
  color:#6b7280;
  text-align:center;
}
.account-auth-user{
  font-weight:600;
  font-size:14px;
  color:#111827;
  text-align:center;
  margin-top:6px;
}
.account-auth-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px 16px;
  border-radius:9999px;
  background:#111827;
  color:#fff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  margin-top:10px;
  text-align:center;
}
.account-auth-btn:hover{ background:#0f172a; }
.account-auth-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px 16px;
  border-radius:9999px;
  background:#111827;
  color:#fff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  margin-top:10px;
  text-align:center;
}
.account-auth-link:hover{ background:#0f172a; }
.header-account .account-dropdown .account-auth-btn,
.header-account .account-dropdown .account-auth-link{
  background:#111827 !important;
  color:#fff !important;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9999px;
  padding:12px 16px;
  font-weight:600;
  text-decoration:none;
}
.header-account .account-dropdown .account-auth-btn:hover,
.header-account .account-dropdown .account-auth-link:hover{
  background:#0f172a !important;
  color:#fff !important;
}
.account-menu{
  display:flex;
  flex-direction:column;
  gap:2px;
  max-height:280px;
  overflow:auto;
  padding-right:4px;
  padding-top:6px;
}
.account-menu-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  color:#111827;
  text-decoration:none;
  font-size:15px;
  line-height:1.2;
}
.account-menu-item:hover{
  background:#f3f4f6;
}
.account-menu-icon{
  width:20px;
  height:20px;
  text-align:center;
  color:#111827;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.account-menu-icon svg{
  width:18px;
  height:18px;
  display:block;
}
.account-menu-sep{
  height:1px;
  background:#eef2f7;
  margin:6px 0;
}
.account-menu-title{
  font-size:12px;
  color:#9ca3af;
}
.account-menu.secondary .account-menu-item{
  font-size:13px;
  color:#374151;
}
@media (max-width: 991px){
  .header-account .account-dropdown{
    display:none !important;
  }
  .account-trigger-text{
    display:none;
  }
}

.account-sheet-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:9998;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.account-sheet-overlay.hidden{ display:none; }
.account-sheet-overlay.is-open{ opacity:1; }
.account-sheet{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  transform:translateY(100%);
  pointer-events:none;
  transition:transform .26s ease;
}
.account-sheet.hidden{ display:none; }
.account-sheet.is-open{
  transform:translateY(0);
  pointer-events:auto;
}
.account-sheet-overlay.is-open{
  pointer-events:auto;
}
.account-sheet-card{
  background:#fff;
  border-radius:24px 24px 0 0;
  padding:12px 16px 24px;
  max-height:80vh;
  overflow:auto;
  box-shadow:0 -10px 30px rgba(0,0,0,.18);
}
.account-sheet-handle{
  width:48px;
  height:5px;
  background:#e5e7eb;
  border-radius:9999px;
  margin:4px auto 16px;
}

@media (min-width: 768px){
  .account-sheet,
  .account-sheet-overlay{
    display:none !important;
  }
}
html.ui-tablet .account-sheet,
html.ui-tablet .account-sheet-overlay{
  display:block !important;
}
html.ui-mobile .account-sheet,
html.ui-mobile .account-sheet-overlay{
  display:block !important;
}
html.ui-mobile .account-sheet.hidden,
html.ui-tablet .account-sheet.hidden,
html.ui-mobile .account-sheet-overlay.hidden,
html.ui-tablet .account-sheet-overlay.hidden{
  display:none !important;
}
html.ui-desktop .account-sheet,
html.ui-desktop .account-sheet-overlay{
  display:none !important;
}

/* Tablet header stabilization */
html.ui-tablet .bshop-central-header .header-search,
html.ui-tablet .bshop-central-header .header-desktop-actions{
  display: none !important;
}
html.ui-tablet .bshop-central-header .header-mobile-actions{
  display: flex !important;
  align-items: center;
  gap: .45rem;
}
html.ui-tablet .bshop-central-header .header-container{
  padding: 0 .9rem !important;
}
html.ui-tablet .bshop-central-header .header-shell{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .55rem;
  min-height: 56px;
  height: 56px;
  padding: 0;
}
html.ui-tablet .bshop-central-header .header-logo{
  flex: 0 0 auto;
}
html.ui-tablet .bshop-central-header .header-logo .site-logo{
  width: clamp(112px, 15vw, 154px);
  max-width: none;
  min-width: 0;
}
html.ui-tablet .bshop-central-header .header-center{
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-left: auto;
  flex: 0 0 auto;
}
html.ui-tablet .bshop-central-header .header-right{
  display: flex;
  align-items: center;
  gap: .4rem;
  flex: 0 0 auto;
}
html.ui-tablet .bshop-central-header .bshop-header-categories-btn{
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
  gap: .35rem;
  box-shadow: none;
}
html.ui-tablet .bshop-central-header .bshop-header-categories-btn .label{
  display: none !important;
}
html.ui-tablet .bshop-central-header .header-mobile-actions button,
html.ui-tablet .bshop-central-header .header-mobile-actions a{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  padding: 0;
  box-shadow: none;
}
html.ui-tablet .bshop-central-header .header-mobile-actions svg{
  width: 18px;
  height: 18px;
}
html.ui-tablet .bshop-central-header .locale-mobile-trigger{
  width: auto !important;
  min-width: 36px;
  height: 36px;
  padding: 0 9px !important;
  gap: 6px;
  border-radius: 999px;
  box-shadow: none;
}
html.ui-tablet .bshop-central-header .locale-mobile-code{
  font-size: 11px;
  font-weight: 700;
}
html.ui-tablet .bshop-central-header .bshopHeaderCountMobileCart{
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  font-size: 9px !important;
  line-height: 1;
  padding: 0 !important;
  top: 0 !important;
  right: 0 !important;
  transform: translate(32%, -34%);
}

/* Desktop safety net: never allow tablet/mobile fallbacks to override desktop mode. */
html.ui-desktop .bshop-central-header .header-container{
  padding:0 1.25rem !important;
}
html.ui-desktop .bshop-central-header .header-shell{
  min-height:72px !important;
  height:auto !important;
  gap:1.25rem !important;
}
html.ui-desktop .bshop-central-header .header-logo .site-logo{
  width:200px !important;
  max-width:200px !important;
}
html.ui-desktop .bshop-central-header .header-search{
  display:block !important;
}
html.ui-desktop .bshop-central-header .header-desktop-actions{
  display:flex !important;
  align-items:center;
}
html.ui-desktop .bshop-central-header .header-mobile-actions{
  display:none !important;
}
html.ui-desktop .bshop-central-header .bshop-header-categories-btn{
  width:auto !important;
  min-width:0 !important;
  height:48px !important;
  padding:0 1.5rem !important;
}
html.ui-desktop .bshop-central-header .bshop-header-categories-btn .label{
  display:flex !important;
}
@media (min-width: 992px) and (max-width: 1199px){
  html.ui-desktop .bshop-central-header .header-container{
    padding:0 .9rem !important;
  }
  html.ui-desktop .bshop-central-header .header-shell{
    min-height:64px !important;
    gap:.7rem !important;
  }
  html.ui-desktop .bshop-central-header .header-center{
    flex: 1 1 auto;
    min-width: 0;
    gap: .65rem;
  }
  html.ui-desktop .bshop-central-header .header-search{
    flex: 1 1 0%;
    min-width: 240px;
    max-width: none;
  }
  html.ui-desktop .bshop-central-header .header-search > .relative{
    min-width: 0;
  }
  html.ui-desktop .bshop-central-header #desktopSearchDropdown{
    left: 0;
    right: auto;
    width: min(620px, calc(100vw - 24px));
    min-width: 280px;
    max-width: min(620px, calc(100vw - 24px));
  }
  html.ui-desktop .bshop-central-header .header-logo .site-logo{
    width:152px !important;
    max-width:152px !important;
  }
  html.ui-desktop .bshop-central-header .bshop-header-categories-btn{
    padding:0 .65rem !important;
    height:40px !important;
  }
  html.ui-desktop .bshop-central-header .header-search input[type="search"]{
    height:42px;
  }
  html.ui-desktop .bshop-central-header .header-desktop-actions{
    gap:.75rem !important;
  }
  html.ui-desktop .bshop-central-header .locale-trigger{
    padding:6px 8px;
    gap:6px;
  }
  html.ui-desktop .bshop-central-header .locale-trigger-country{
    display:none !important;
  }
  html.ui-desktop .bshop-central-header .locale-trigger-code{
    margin-top:0;
    font-size:11px;
  }
  html.ui-desktop .bshop-central-header .account-trigger-text,
  html.ui-desktop .bshop-central-header .header-cart-desktop .cart-label{
    display:none !important;
  }
  html.ui-desktop .bshop-central-header .header-desktop-actions{
    gap:.65rem !important;
  }
  html.ui-desktop .bshop-central-header .account-trigger{
    width:38px;
    height:38px;
    justify-content:center;
    border:1px solid var(--header-border);
    border-radius:999px;
  }
}
@media (min-width: 992px) and (max-width: 1079px){
  html.ui-desktop .bshop-central-header .header-shell{
    gap:.5rem !important;
  }
  html.ui-desktop .bshop-central-header .header-center{
    gap:.45rem !important;
  }
  html.ui-desktop .bshop-central-header .header-logo .site-logo{
    width:142px !important;
    max-width:142px !important;
  }
  html.ui-desktop .bshop-central-header .bshop-header-categories-btn{
    width:38px !important;
    min-width:38px !important;
    padding:0 !important;
    justify-content:center;
  }
  html.ui-desktop .bshop-central-header .bshop-header-categories-btn .label{
    display:none !important;
  }
  html.ui-desktop .bshop-central-header .header-search{
    min-width:180px !important;
  }
  html.ui-desktop .bshop-central-header .header-search input[type="search"]{
    height:38px;
    font-size:.9rem;
  }
  html.ui-desktop .bshop-central-header #desktopSearchDropdown{
    width:min(520px, calc(100vw - 20px));
    min-width:240px;
    max-width:min(520px, calc(100vw - 20px));
  }
  html.ui-desktop .bshop-central-header .header-desktop-actions{
    gap:.45rem !important;
  }
  html.ui-desktop .bshop-central-header .locale-trigger{
    height:38px;
    padding:0 8px !important;
  }
  html.ui-desktop .bshop-central-header .locale-trigger-text{
    display:none !important;
  }
  html.ui-desktop .bshop-central-header .header-cart-desktop{
    width:38px;
    height:38px;
    justify-content:center;
    border:1px solid var(--header-border);
    border-radius:999px;
  }
}

/* Desktop safety: mobile overlays must never block desktop interactions */
@media (min-width: 1024px){
  html #bshopHeaderMobileSearch,
  html #bshopHeaderMobileSearchDropdown,
  html #mobileMenu,
  html #mobileMenuOverlay,
  html #mobileLocaleOverlay,
  html #mobileLocaleSheet,
  html #mobileAccountOverlay,
  html #mobileAccountSheet,
  html #mobileOverlay,
  html #mobileFilter,
  html #mobileFilterBar{
    display:none !important;
    pointer-events:none !important;
  }
}

/* ===== STORE HEADER LOGO EXPAND LOCK (latest) ===== */
@media (max-width: 1023px){
  html body.store-page .bshop-central-header .header-shell{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
  }
  html body.store-page .bshop-central-header .header-logo{
    flex:1 1 auto !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
  }
  html body.store-page .bshop-central-header .header-logo > a{
    width:100% !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
  }
  html body.store-page .bshop-central-header .header-mobile-actions{
    flex:0 0 auto !important;
    min-width:0 !important;
    margin-left:8px !important;
  }
  html body.store-page .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
  }
  html body.store-page .bshop-central-header .header-mobile-actions button,
  html body.store-page .bshop-central-header .header-mobile-actions a{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
  }
  html body.store-page .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:44px !important;
    min-width:44px !important;
    padding:0 6px !important;
    gap:4px !important;
  }
}

@media (max-width: 430px){
  html body.store-page .bshop-central-header .header-logo .site-logo{
    height:32px !important;
    width:auto !important;
    max-width:clamp(72px, calc(100vw - 276px), 180px) !important;
    min-width:0 !important;
    display:block !important;
  }
}

/* ===== STORE HEADER MOBILE LOCK (logo + 5 actions) ===== */
@media (max-width: 1023px){
  body.store-page .bshop-central-header{
    background:#fff !important;
  }
  body.store-page .bshop-central-header .header-container{
    padding-left:8px !important;
    padding-right:8px !important;
  }
  body.store-page .bshop-central-header .header-shell{
    min-height:56px !important;
    height:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
    overflow:visible !important;
  }
  body.store-page .bshop-central-header .header-center,
  body.store-page .bshop-central-header .header-desktop-actions,
  body.store-page .bshop-central-header .mobile-actions-overflow{
    display:none !important;
  }
  body.store-page .bshop-central-header .header-logo{
    flex:1 1 auto !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
  }
  body.store-page .bshop-central-header .header-logo > a{
    display:flex !important;
    align-items:center !important;
    min-width:0 !important;
    max-width:100% !important;
  }
  body.store-page .bshop-central-header .header-logo .site-logo{
    height:32px !important;
    width:auto !important;
    max-width:min(180px, 100%) !important;
    min-width:0 !important;
    display:block !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions{
    flex:0 0 auto !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
    overflow:visible !important;
  }
  body.store-page .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
  }
  body.store-page .bshop-central-header .mobile-actions-primary > button,
  body.store-page .bshop-central-header .mobile-actions-primary > a,
  body.store-page .bshop-central-header .mobile-actions-primary .bshop-header-categories-btn,
  body.store-page .bshop-central-header .mobile-actions-primary .locale-mobile-trigger{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    border-radius:999px !important;
    border:1px solid var(--header-border) !important;
    background:#fff !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin:0 !important;
    padding:0 !important;
    flex:0 0 auto !important;
    line-height:1 !important;
  }
  body.store-page .bshop-central-header #mobileCategoriesTrigger{ order:1; }
  body.store-page .bshop-central-header #mobileSearchTrigger{ order:2; }
  body.store-page .bshop-central-header #mobileLocaleTrigger{ order:3; }
  body.store-page .bshop-central-header #mobileCartTrigger{ order:4; }
  body.store-page .bshop-central-header #mobileAccountTrigger{ order:5; }
  body.store-page .bshop-central-header .header-mobile-actions svg{
    width:22px !important;
    height:22px !important;
  }
  body.store-page .bshop-central-header .locale-mobile-trigger{
    width:44px !important;
    min-width:44px !important;
    gap:4px !important;
    padding:0 6px !important;
  }
  body.store-page .bshop-central-header .locale-mobile-code{
    display:none !important;
  }
  body.store-page .bshop-central-header .locale-mobile-flag{
    width:18px !important;
    height:13px !important;
    border-radius:3px !important;
  }
  body.store-page .bshop-central-header .locale-mobile-caret{
    width:14px !important;
    height:14px !important;
  }
  body.store-page .bshop-central-header .butMobileCart .cart-icon-wrap{
    position:relative !important;
    width:22px !important;
    height:22px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
  }
  body.store-page .bshop-central-header .bshopHeaderCountMobileCart{
    position:absolute !important;
    top:-4px !important;
    right:-4px !important;
    min-width:18px !important;
    height:18px !important;
    line-height:18px !important;
    border-radius:999px !important;
    font-size:11px !important;
    z-index:2 !important;
  }
}

@media (max-width: 430px){
  body.store-page .bshop-central-header .header-container{
    padding-left:8px !important;
    padding-right:8px !important;
  }
  body.store-page .bshop-central-header .header-shell{
    gap:8px !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions,
  body.store-page .bshop-central-header .mobile-actions-primary{
    gap:8px !important;
  }
  body.store-page .bshop-central-header .header-logo .site-logo{
    height:32px !important;
    width:auto !important;
    max-width:min(180px, 100%) !important;
  }
}

/* Mobile-only locale trigger: flag + chevron (hide language code text) */
@media (max-width: 767px){
  html .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:44px !important;
    min-width:44px !important;
    padding:0 6px !important;
    gap:4px !important;
    justify-content:center !important;
  }
  html .bshop-central-header .header-mobile-actions .locale-mobile-code{
    display:none !important;
  }
}

@media (min-width: 1080px){
  html.ui-desktop .bshop-central-header .locale-trigger-text{
    display:flex !important;
  }
}

/* ===== Store header hardening (final width-first guard) ===== */
.bshop-central-header,
.bshop-central-header .header-container,
.bshop-central-header .header-shell,
.bshop-central-header .header-center,
.bshop-central-header .header-right{
  box-sizing:border-box;
  min-width:0;
}
.bshop-central-header .header-center,
.bshop-central-header .header-right,
.bshop-central-header .header-mobile-actions,
.bshop-central-header .header-desktop-actions{
  overflow:visible;
}

@media (max-width: 1023px){
  html .bshop-central-header .header-search,
  html .bshop-central-header .header-desktop-actions{
    display:none !important;
  }
  html .bshop-central-header .header-mobile-actions{
    display:flex !important;
    align-items:center;
    gap:.45rem;
  }
  html .bshop-central-header .header-shell{
    min-height:56px !important;
    height:56px !important;
    gap:.5rem !important;
  }
  html .bshop-central-header .header-logo .site-logo{
    width:clamp(104px, 17vw, 160px) !important;
    max-width:none !important;
    min-width:0 !important;
  }
  html .bshop-central-header .bshop-header-categories-btn{
    width:36px !important;
    min-width:36px !important;
    height:36px !important;
    padding:0 !important;
    justify-content:center !important;
  }
  html .bshop-central-header .bshop-header-categories-btn .label{
    display:none !important;
  }

  html #bshopHeaderMobileSearch.hidden,
  html #bshopHeaderMobileSearchDropdown.hidden,
  html #mobileLocaleOverlay.hidden,
  html #mobileLocaleSheet.hidden,
  html #mobileAccountOverlay.hidden,
  html #mobileAccountSheet.hidden,
  html #mobileOverlay.hidden,
  html #mobileFilter.hidden{
    display:none !important;
    pointer-events:none !important;
  }
}

@media (min-width: 1024px){
  html .bshop-central-header .header-search{
    display:block !important;
  }
  html .bshop-central-header .header-desktop-actions{
    display:flex !important;
    align-items:center;
    gap:.9rem;
  }
  html .bshop-central-header .header-mobile-actions{
    display:none !important;
  }
  html .bshop-central-header .header-shell{
    min-height:72px !important;
    height:auto !important;
  }
}

/* ===== STORE MOBILE HEADER LOCK (logo + 5 actions) ===== */
@media (max-width: 1023px){
  body.store-page .bshop-central-header{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: var(--z-header, 10000) !important;
    background: #fff !important;
    min-height: 56px !important;
  }
  body.store-page .bshop-central-header .header-container{
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  body.store-page .bshop-central-header .header-shell{
    min-height: 56px !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }
  body.store-page .bshop-central-header .header-center{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-logo .site-logo{
    width: auto !important;
    max-width: clamp(64px, 20vw, 180px) !important;
    height: 32px !important;
    min-width: 0 !important;
  }
  body.store-page .bshop-central-header .header-right{
    margin-left: auto !important;
    gap: 6px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
  }
  body.store-page .bshop-central-header .header-desktop-actions{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions{
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  body.store-page .bshop-central-header .mobile-actions-primary{
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }
  body.store-page .bshop-central-header .mobile-actions-overflow{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions button,
  body.store-page .bshop-central-header .header-mobile-actions a,
  body.store-page .bshop-central-header .mobile-categories-btn{
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid var(--header-border) !important;
    background: #fff !important;
    box-shadow: none !important;
    transform: none !important;
    flex: 0 0 auto !important;
    color: #111827 !important;
    line-height: 1 !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions .mobile-categories-btn .label{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions button:hover,
  body.store-page .bshop-central-header .header-mobile-actions a:hover{
    transform: none !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions svg{
    width: 22px !important;
    height: 22px !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width: 44px !important;
    min-width: 44px !important;
    padding: 0 6px !important;
    gap: 4px !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions .locale-mobile-code{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions .locale-mobile-caret{
    width: 14px !important;
    height: 14px !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions .locale-mobile-flag{
    width: 18px !important;
    height: 13px !important;
    border-radius: 3px !important;
  }
  body.store-page .bshop-central-header .butMobileCart .cart-icon-wrap{
    position: relative !important;
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  body.store-page .bshop-central-header .bshopHeaderCountMobileCart{
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    min-width: 18px !important;
    height: 18px !important;
    line-height: 18px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    padding: 0 4px !important;
    z-index: 2 !important;
  }
  body.store-page #pageContentStore{
    padding-top: var(--header-h, 56px) !important;
  }
}

@media (max-width: 430px){
  body.store-page .bshop-central-header .header-container{
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  body.store-page .bshop-central-header .header-shell{
    gap: 4px !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions{
    gap: 4px !important;
  }
  body.store-page .bshop-central-header .mobile-actions-primary{
    gap: 4px !important;
  }
  body.store-page .bshop-central-header .header-logo .site-logo{
    height: 32px !important;
    width: auto !important;
    max-width: clamp(64px, 20vw, 180px) !important;
    min-width: 0 !important;
  }
}

/* ===== HEADER_CART_BADGE_LOCK_2026_02_12 ===== */
.bshop-central-header .header-right,
.bshop-central-header .header-mobile-actions,
.bshop-central-header .header-desktop-actions,
.bshop-central-header .cart-icon-wrap,
.bshop-central-header .cart-icon-wrap-desktop{
  overflow:visible !important;
}

.bshop-central-header .header-cart-desktop .cart-icon-wrap-desktop,
.bshop-central-header .butMobileCart{
  position:relative;
}

@media (max-width: 1023px){
  .bshop-central-header .butMobileCart{
    position:relative;
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    pointer-events:auto !important;
  }
  .bshop-central-header .butMobileCart .cart-icon-wrap{
    position:relative;
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible !important;
  }
}

.bshop-central-header .bshopHeaderCountMobileCart,
.bshop-central-header .bshopHeaderCountCart{
  position:absolute;
  top:-4px !important;
  right:-4px !important;
  left:auto !important;
  bottom:auto !important;
  min-width:18px !important;
  width:auto !important;
  height:18px !important;
  min-height:18px !important;
  padding:0 4px !important;
  line-height:18px !important;
  border-radius:999px !important;
  transform:none !important;
  z-index:3 !important;
}

/* ===== HEADER_ARCH_LOCK_2026_02_12 ===== */
:root{
  --header-h:72px;
  --z-header:10000;
  --z-header-panel:9900;
  --z-header-overlay:9800;
}
body.mobile-search-open .bshop-central-header{
  transform:none !important;
  pointer-events:auto !important;
}
.bshop-central-header.is-search-open{
  transform:none !important;
  pointer-events:auto !important;
}
html.bshop-search-mode .bshop-central-header,
body.bshop-search-mode .bshop-central-header{
  transform:translateY(-105%) !important;
  pointer-events:none !important;
}
html:not(.bshop-search-mode) body:not(.bshop-search-mode) .bshop-central-header{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  transform:none !important;
  pointer-events:auto !important;
}
.bshop-central-header{
  position:sticky !important;
  top:0 !important;
  z-index:var(--z-header) !important;
  background:#fff !important;
}
body.store-page .bshop-central-header{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
}
body.store-page #pageContentStore{
  padding-top:var(--header-h, 72px);
}
body.store-page{
  scroll-padding-top:var(--header-h, 72px);
}
.bshop-central-header .header-container,
.bshop-central-header .header-shell,
.bshop-central-header .header-center,
.bshop-central-header .header-right,
.bshop-central-header .header-search,
.bshop-central-header .header-mobile-actions,
.bshop-central-header .header-desktop-actions{
  box-sizing:border-box;
  min-width:0;
}
.bshop-central-header .header-right,
.bshop-central-header .header-mobile-actions,
.bshop-central-header .header-desktop-actions{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
}
.bshop-central-header .header-right{
  gap:10px;
  overflow:visible;
}
.bshop-central-header .header-mobile-actions button,
.bshop-central-header .header-mobile-actions a{
  flex:0 0 auto;
}
#desktopLocaleDropdown,
#desktopSearchDropdown,
.header-account .account-dropdown,
#categoriesAllMenu{
  z-index:var(--z-header-panel) !important;
}

html #mobileOverlay,
html #mobileMenuOverlay,
html #mobileLocaleOverlay,
html #mobileAccountOverlay,
html .locale-sheet-overlay,
html .account-sheet-overlay{
  position:fixed;
  left:0;
  right:0;
  top:var(--header-h, 72px) !important;
  bottom:0;
  z-index:var(--z-header-overlay) !important;
}
html #mobileLocaleOverlay.hidden,
html #mobileAccountOverlay.hidden,
html #mobileOverlay.hidden,
html #mobileMenuOverlay.hidden,
html .locale-sheet-overlay.hidden,
html .account-sheet-overlay.hidden{
  display:none !important;
  opacity:0 !important;
  pointer-events:none !important;
  visibility:hidden !important;
}

@media (max-width: 767px){
  html .bshop-central-header .header-container{
    padding-left:.75rem !important;
    padding-right:.75rem !important;
  }
  html .bshop-central-header .header-shell{
    min-height:60px !important;
    height:60px !important;
    gap:8px !important;
  }
  html .bshop-central-header .header-search,
  html .bshop-central-header .header-desktop-actions{
    display:none !important;
  }
  html .bshop-central-header .header-mobile-actions{
    display:flex !important;
    gap:8px !important;
  }
  html .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:8px !important;
  }
  html .bshop-central-header .header-logo .site-logo{
    width:clamp(96px, 30vw, 132px) !important;
    max-width:none !important;
  }
  html .bshop-central-header .bshop-header-categories-btn{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 !important;
    justify-content:center !important;
  }
  html .bshop-central-header .bshop-header-categories-btn .label{
    display:none !important;
  }
  html .bshop-central-header .header-mobile-actions button,
  html .bshop-central-header .header-mobile-actions a{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 !important;
  }
  html .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:auto !important;
    min-width:58px !important;
    padding:0 10px !important;
    gap:6px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px){
  html .bshop-central-header .header-container{
    padding-left:.9rem !important;
    padding-right:.9rem !important;
  }
  html .bshop-central-header .header-shell{
    min-height:64px !important;
    height:64px !important;
    gap:10px !important;
  }
  html .bshop-central-header .header-search,
  html .bshop-central-header .header-desktop-actions{
    display:none !important;
  }
  html .bshop-central-header .header-mobile-actions{
    display:flex !important;
    gap:10px !important;
  }
  html .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:10px !important;
  }
  html .bshop-central-header .header-center{
    margin-left:auto !important;
    flex:0 0 auto !important;
    gap:10px !important;
  }
  html .bshop-central-header .header-right{
    flex:0 0 auto !important;
    gap:10px !important;
  }
  html .bshop-central-header .header-logo .site-logo{
    width:clamp(132px, 18vw, 176px) !important;
    max-width:none !important;
  }
  html .bshop-central-header .bshop-header-categories-btn{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 !important;
    justify-content:center !important;
  }
  html .bshop-central-header .bshop-header-categories-btn .label{
    display:none !important;
  }
  html .bshop-central-header .header-mobile-actions button,
  html .bshop-central-header .header-mobile-actions a{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 !important;
  }
  html .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:auto !important;
    min-width:64px !important;
    padding:0 10px !important;
    gap:6px !important;
  }
  html .bshop-central-header .bshopHeaderCountMobileCart{
    top:0 !important;
    right:0 !important;
    transform:translate(32%,-30%) !important;
  }
}

@media (max-width: 1023px){
  html .bshop-central-header .mobile-actions-overflow{
    display:flex;
    align-items:center;
    flex:0 0 auto;
  }
  html .bshop-central-header .mobile-actions-overflow.hidden,
  html .bshop-central-header .mobile-actions-primary.hidden{
    display:none !important;
  }
  html .bshop-central-header .header-mobile-actions a.butMobileCart{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px solid var(--header-border) !important;
    border-radius:999px !important;
    background:#fff !important;
    box-shadow:0 6px 18px rgba(15,23,42,.05) !important;
  }
  html #bshopHeaderMobileSearch,
  html #mobileMenu,
  html #mobileFilter{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    top:var(--header-h, 72px) !important;
    bottom:0 !important;
    width:100% !important;
    height:auto !important;
    max-height:calc(100dvh - var(--header-h, 72px)) !important;
    z-index:var(--z-header-panel) !important;
  }
  html.bshop-search-mode #bshopHeaderMobileSearch{
    top:0 !important;
    bottom:0 !important;
    height:100dvh !important;
    max-height:100dvh !important;
    z-index:10020 !important;
  }
  html #mobileLocaleSheet,
  html #mobileAccountSheet{
    z-index:var(--z-header-panel) !important;
  }
}

@media (min-width: 1024px){
  html .bshop-central-header .header-search{
    display:block !important;
    flex:1 1 420px !important;
    max-width:640px !important;
  }
  html .bshop-central-header .header-desktop-actions{
    display:flex !important;
    gap:.9rem !important;
  }
  html .bshop-central-header .header-mobile-actions{
    display:none !important;
  }
  html .bshop-central-header .bshop-header-categories-btn{
    width:auto !important;
    min-width:0 !important;
    height:48px !important;
    padding:0 1.5rem !important;
  }
  html .bshop-central-header .bshop-header-categories-btn .label{
    display:flex !important;
  }
  html #bshopHeaderMobileSearch,
  html #bshopHeaderMobileSearchDropdown,
  html #mobileMenu,
  html #mobileMenuOverlay,
  html #mobileLocaleOverlay,
  html #mobileLocaleSheet,
  html #mobileAccountOverlay,
  html #mobileAccountSheet,
  html #mobileOverlay,
  html #mobileFilter,
  html #mobileFilterBar{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
  }
}

/* ===== STORE HEADER MOBILE LOGO SPACE LOCK (2026-02-13) ===== */
@media (max-width: 1023px){
  body.store-page .bshop-central-header .header-shell{
    gap: 8px !important;
  }
  body.store-page .bshop-central-header .header-center{
    display: block !important;
    width: 0 !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    height: 0 !important;
    overflow: visible !important;
    position: static !important;
  }
  body.store-page .bshop-central-header .header-center .header-search{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-center .header-categories{
    display: block !important;
    position: static !important;
    width: 0 !important;
    min-width: 0 !important;
    overflow: visible !important;
  }
  body.store-page .bshop-central-header .header-center .header-categories > #headerCategoriesTrigger{
    display: none !important;
  }
  body.store-page .bshop-central-header .header-logo{
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  body.store-page .bshop-central-header .header-logo > a{
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  body.store-page .bshop-central-header .header-right{
    margin-left: 0 !important;
    flex: 0 0 auto !important;
  }
  body.store-page .bshop-central-header .header-mobile-actions,
  body.store-page .bshop-central-header .mobile-actions-primary{
    flex: 0 0 auto !important;
  }
  body.store-page .bshop-central-header #mobileLocaleTrigger.locale-mobile-trigger{
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 8px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    flex: 0 0 auto !important;
    border-radius: 999px !important;
    border: 1px solid var(--header-border) !important;
    background: #fff !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
  }
  body.store-page .bshop-central-header #mobileLocaleTrigger .locale-mobile-code{
    display: none !important;
  }
  body.store-page .bshop-central-header #mobileLocaleTrigger .locale-mobile-flag{
    width: 18px !important;
    height: 13px !important;
    border-radius: 3px !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  body.store-page .bshop-central-header #mobileLocaleTrigger .locale-mobile-caret{
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 auto !important;
    stroke: #6b7280 !important;
    stroke-width: 2.2 !important;
  }
  body.store-page .bshop-central-header .header-logo .site-logo{
    height: 32px !important;
    width: auto !important;
    max-width: min(180px, calc(100vw - 252px)) !important;
  }
}

@media (max-width: 430px){
  body.store-page .bshop-central-header .header-shell{
    gap: 4px !important;
  }
  body.store-page .bshop-central-header .header-logo .site-logo{
    height: 32px !important;
    width: auto !important;
    max-width: min(180px, calc(100vw - 252px)) !important;
  }
}

/* ===== MOBILE LOCALE BUTTON VISUAL LOCK (GLOBAL) ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 7px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    border-radius: 999px !important;
    border: 1px solid var(--header-border) !important;
    background: #fff !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger .locale-mobile-code{
    display: none !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger .locale-mobile-flag{
    width: 18px !important;
    height: 13px !important;
    border-radius: 3px !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger .locale-mobile-caret{
    width: 12px !important;
    height: 12px !important;
    flex: 0 0 auto !important;
    stroke: #6b7280 !important;
    stroke-width: 2.2 !important;
  }
}

/* PDP v2 locale sheet adjustments moved from page inline styles */
@media (max-width: 1023px){
  body[data-product-v2="1"] #mobileLocaleSheet{
    bottom: var(--bshop-mobile-cta-offset, 0px) !important;
  }
  body[data-product-v2="1"] #mobileLocaleSheet .locale-sheet-card.locale-panel-card{
    max-height: calc(100dvh - var(--header-h, 72px) - var(--bshop-mobile-cta-offset, 0px)) !important;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  }
  body[data-product-v2="1"] #mobileLocaleSheet .locale-sheet-body{
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  body[data-product-v2="1"] #mobileLocaleSheet .locale-save-btn{
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-top: 8px;
    box-shadow: 0 -8px 18px rgba(255,255,255,0.92);
  }
}

/* ===== FINAL MOBILE/TABLET HEADER LOCK (reference parity) ===== */
@media (max-width: 1023px){
  html body .bshop-central-header{
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 0 rgba(15,23,42,.06) !important;
    background: #fff !important;
  }
  html body .bshop-central-header .header-container{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  html body .bshop-central-header .header-shell{
    min-height: 56px !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  html body .bshop-central-header .header-search,
  html body .bshop-central-header .header-desktop-actions,
  html body .bshop-central-header .mobile-actions-overflow{
    display: none !important;
  }
  html body .bshop-central-header .header-center{
    display: none !important;
  }
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }
  html body .bshop-central-header .header-right{
    margin-left: auto !important;
    justify-content: flex-end !important;
  }
  html body .bshop-central-header .header-mobile-actions button,
  html body .bshop-central-header .header-mobile-actions a,
  html body.store-page .bshop-central-header .header-mobile-actions button,
  html body.store-page .bshop-central-header .header-mobile-actions a,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions button,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions a{
    width: 24px !important;
    min-width: 24px !important;
    height: 24px !important;
    min-height: 24px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1f2937 !important;
    line-height: 1 !important;
  }
  html body .bshop-central-header .header-mobile-actions button:hover,
  html body .bshop-central-header .header-mobile-actions a:hover{
    transform: none !important;
    background: transparent !important;
  }
  html body .bshop-central-header .header-mobile-actions svg{
    width: 20px !important;
    height: 20px !important;
  }
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions .locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 7px !important;
    gap: 4px !important;
    border-radius: 999px !important;
    border: 1px solid var(--header-border) !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  html body .bshop-central-header .header-mobile-actions .locale-mobile-code{
    display: none !important;
  }
  html body .bshop-central-header .header-mobile-actions .locale-mobile-flag{
    width: 18px !important;
    height: 13px !important;
    border-radius: 3px !important;
  }
  html body .bshop-central-header .header-mobile-actions .locale-mobile-caret{
    width: 11px !important;
    height: 11px !important;
    stroke: #9ca3af !important;
    stroke-width: 2.2 !important;
  }
  html body .bshop-central-header .header-logo .site-logo{
    height: 32px !important;
    width: auto !important;
    max-width: 180px !important;
  }
  html body .bshop-central-header .butMobileCart .cart-icon-wrap{
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
    position: relative !important;
  }
  html body .bshop-central-header .bshopHeaderCountMobileCart{
    top: -5px !important;
    right: -6px !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    font-size: 10px !important;
    padding: 0 3px !important;
    border: 1px solid #fff !important;
  }
}

@media (max-width: 430px){
  html body .bshop-central-header .header-container{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    gap: 8px !important;
  }
}

/* ===== HEADER SEARCH CENTRALIZED FINAL (cross-page parity) ===== */
.bshop-central-header .header-search > .relative{
  position:relative !important;
}
#desktopSearchDropdown{
  position:absolute !important;
  top:calc(100% + 8px) !important;
  left:0 !important;
  right:0 !important;
  max-height:min(64vh, calc(100dvh - var(--header-h, 72px) - 32px)) !important;
  border:1px solid #e5e7eb !important;
  border-radius:18px !important;
  background:#fff !important;
  box-shadow:0 20px 42px rgba(15,23,42,.16) !important;
  overflow-x:hidden !important;
  overflow-y:auto !important;
  z-index:var(--z-header-panel, 9900) !important;
}
#desktopSearchDropdown .desktop-search-section,
#desktopSearchDropdown .p-4.border-b.border-gray-100{
  display:block !important;
  margin:0 !important;
  padding:14px 16px !important;
  border-bottom:1px solid #edf2f7 !important;
}
#desktopSearchDropdown h3,
#desktopSearchDropdown .desktop-search-section-title{
  margin:0 !important;
  color:#64748b !important;
  font-size:13px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
  letter-spacing:.01em !important;
}
#desktopSearchDropdown #desckopRecent a,
#desktopSearchDropdown #desktopRecent a,
#desktopSearchDropdown #desckopPopulaire a,
#desktopSearchDropdown #desktopPopulaire a,
#desktopSearchDropdown .desktop-search-item{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  padding:12px 16px !important;
  margin:0 !important;
  border-bottom:1px solid #edf2f7 !important;
  text-decoration:none !important;
  color:#334155 !important;
  background:#fff !important;
}
#desktopSearchDropdown #desckopRecent a:last-child,
#desktopSearchDropdown #desktopRecent a:last-child,
#desktopSearchDropdown #desckopPopulaire a:last-child,
#desktopSearchDropdown #desktopPopulaire a:last-child,
#desktopSearchDropdown .desktop-search-item:last-child{
  border-bottom:0 !important;
}
#desktopSearchDropdown #desckopRecent a:hover,
#desktopSearchDropdown #desktopRecent a:hover,
#desktopSearchDropdown #desckopPopulaire a:hover,
#desktopSearchDropdown #desktopPopulaire a:hover,
#desktopSearchDropdown .desktop-search-item:hover{
  background:#f8fafc !important;
}
#desktopSearchDropdown .desktop-search-item-icon{
  width:18px !important;
  height:18px !important;
  flex:0 0 18px !important;
  color:#94a3b8 !important;
}
#desktopSearchDropdown .desktop-search-item-title,
#desktopSearchDropdown p.text-sm.font-medium{
  margin:0 !important;
  color:#334155 !important;
  font-size:16px !important;
  line-height:1.3 !important;
  font-weight:600 !important;
}
#desktopSearchDropdown .desktop-search-item-subtitle,
#desktopSearchDropdown p.text-xs.text-gray-500{
  margin:2px 0 0 !important;
  color:#94a3b8 !important;
  font-size:13px !important;
  line-height:1.25 !important;
  font-weight:500 !important;
}
#desktopSearchDropdown .search-thumb,
#bshopHeaderMobileSearchDropdown .search-thumb{
  width:46px !important;
  height:46px !important;
  min-width:46px !important;
  border-radius:12px !important;
  object-fit:cover !important;
  background:#f1f5f9 !important;
  border:1px solid #e2e8f0 !important;
  display:inline-flex !important;
}
#desktopSearchDropdown .search-thumb-fallback,
#bshopHeaderMobileSearchDropdown .search-thumb-fallback{
  align-items:center !important;
  justify-content:center !important;
}
#desktopSearchDropdown .search-autocomplete-item .desktop-search-item-title mark,
#bshopHeaderMobileSearchDropdown .search-autocomplete-item .mobile-search-item-title mark{
  background:linear-gradient(135deg, rgba(239,68,68,.18), rgba(248,113,113,.22)) !important;
  color:#7f1d1d !important;
  border:1px solid rgba(239,68,68,.2) !important;
  border-radius:7px !important;
  padding:0 4px !important;
  font-weight:700 !important;
  box-decoration-break:clone !important;
  -webkit-box-decoration-break:clone !important;
}
#desktopSearchDropdown .search-autocomplete-item .desktop-search-item-title,
#bshopHeaderMobileSearchDropdown .search-autocomplete-item .mobile-search-item-title{
  word-break:normal !important;
  overflow-wrap:normal !important;
  hyphens:none !important;
}
#desktopSearchDropdown ::selection,
#bshopHeaderMobileSearchDropdown ::selection{
  background:rgba(239,68,68,.2) !important;
  color:#111827 !important;
}
#desktopSearchDropdown .search-autocomplete-price{
  display:inline-flex !important;
  align-items:center !important;
  margin-left:8px !important;
  padding:2px 7px !important;
  border-radius:999px !important;
  font-size:11px !important;
  font-weight:700 !important;
  color:#0f766e !important;
  background:rgba(20,184,166,.12) !important;
}
#desktopSearchDropdown [data-noresults],
#bshopHeaderMobileSearchDropdown [data-noresults],
#desktopSearchDropdown .search-no-results-row,
#bshopHeaderMobileSearchDropdown .search-no-results-row{
  position:relative !important;
  display:flex !important;
  align-items:center !important;
  min-height:48px !important;
  margin:8px 12px !important;
  padding:11px 14px 11px 42px !important;
  border:1px solid #fecaca !important;
  border-radius:12px !important;
  background:linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%) !important;
  color:#991b1b !important;
  font-size:14px !important;
  line-height:1.35 !important;
  font-weight:600 !important;
  list-style:none !important;
}
#desktopSearchDropdown [data-noresults]::before,
#bshopHeaderMobileSearchDropdown [data-noresults]::before,
#desktopSearchDropdown .search-no-results-row::before,
#bshopHeaderMobileSearchDropdown .search-no-results-row::before{
  content:"" !important;
  position:absolute !important;
  left:14px !important;
  top:50% !important;
  width:16px !important;
  height:16px !important;
  border-radius:999px !important;
  transform:translateY(-50%) !important;
  background:#ef4444 !important;
  box-shadow:0 0 0 4px rgba(239,68,68,.12) !important;
}
#desktopSearchDropdown .search-no-results-label,
#bshopHeaderMobileSearchDropdown .search-no-results-label{
  display:block !important;
  margin:0 !important;
  color:inherit !important;
  font-size:inherit !important;
  line-height:inherit !important;
  font-weight:inherit !important;
}
#desktopSearchDropdown .search-autocomplete-loading,
#bshopHeaderMobileSearchDropdown .search-autocomplete-loading{
  color:#64748b !important;
  font-size:13px !important;
  font-weight:600 !important;
}
#desktopSearchDropdown .search-autocomplete-loading-row{
  list-style:none !important;
}
#desktopSearchDropdown .search-autocomplete-loading,
#bshopHeaderMobileSearchDropdown .search-autocomplete-loading{
  gap:12px !important;
}
#desktopSearchDropdown .search-autocomplete-skeleton-lines,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-lines{
  display:flex !important;
  flex-direction:column !important;
  gap:8px !important;
  min-width:0 !important;
  width:100% !important;
}
#desktopSearchDropdown .search-autocomplete-skeleton-line,
#desktopSearchDropdown .search-autocomplete-skeleton-box,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-box{
  position:relative !important;
  overflow:hidden !important;
  background:#e2e8f0 !important;
  border-radius:999px !important;
}
#desktopSearchDropdown .search-autocomplete-skeleton-box,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-box{
  border-radius:12px !important;
}
#desktopSearchDropdown .search-autocomplete-skeleton-line,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line{
  height:10px !important;
}
#desktopSearchDropdown .search-autocomplete-skeleton-line.w-78,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line.w-78{ width:78% !important; }
#desktopSearchDropdown .search-autocomplete-skeleton-line.w-72,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line.w-72{ width:72% !important; }
#desktopSearchDropdown .search-autocomplete-skeleton-line.w-64,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line.w-64{ width:64% !important; }
#desktopSearchDropdown .search-autocomplete-skeleton-line.w-56,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line.w-56{ width:56% !important; }
#desktopSearchDropdown .search-autocomplete-skeleton-line.w-44,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line.w-44{ width:44% !important; }
#desktopSearchDropdown .search-autocomplete-skeleton-line.w-36,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line.w-36{ width:36% !important; }
#desktopSearchDropdown .search-autocomplete-skeleton-line::after,
#desktopSearchDropdown .search-autocomplete-skeleton-box::after,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-line::after,
#bshopHeaderMobileSearchDropdown .search-autocomplete-skeleton-box::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  transform:translateX(-100%) !important;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent) !important;
  animation:bshopSearchSkeletonShimmer 1.15s ease-in-out infinite !important;
}
#desktopSearchDropdown #desktopSearchAutocomplete{
  max-height:320px !important;
}
#bshopHeaderMobileSearchDropdown #mobileSearchAutocomplete{
  margin:0 !important;
  padding:0 !important;
}
#bshopHeaderMobileSearchDropdown .search-for-you-item .mobile-search-item-subtitle{
  color:#64748b !important;
}
@keyframes bshopSearchSkeletonShimmer{
  100%{ transform:translateX(100%) !important; }
}

@media (max-width: 1023px){
  html.bshop-search-mode #bshopHeaderMobileSearch,
  body.bshop-search-mode #bshopHeaderMobileSearch{
    display:block !important;
    transform:translateY(0) !important;
  }
  #bshopHeaderMobileSearch.header-mobile-search-sheet{
    position:fixed !important;
    inset:0 !important;
    left:0 !important;
    right:0 !important;
    top:0 !important;
    width:100vw !important;
    height:100dvh !important;
    max-height:100dvh !important;
    background:#fff !important;
    z-index:10020 !important;
    overflow:hidden !important;
    transform:translateY(0) !important;
    transition:none !important;
  }
  #bshopHeaderMobileSearch .header-mobile-search-body{
    display:flex !important;
    flex-direction:column !important;
    height:100dvh !important;
    max-height:100dvh !important;
    width:100% !important;
    margin:0 !important;
    padding:10px 0 0 !important;
  }
  #bshopHeaderMobileSearch .mobile-search-toolbar{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    width:100% !important;
    min-height:56px !important;
    padding:0 10px !important;
    box-sizing:border-box !important;
  }
  #bshopHeaderMobileSearch .mobile-search-nav-btn{
    width:32px !important;
    min-width:32px !important;
    height:32px !important;
    min-height:32px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    background:transparent !important;
    color:#334155 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
  #bshopHeaderMobileSearch .mobile-search-nav-icon{
    width:22px !important;
    height:22px !important;
    display:block !important;
  }
  #bshopHeaderMobileSearch .mobile-search-input-wrap{
    position:relative !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    margin:0 !important;
  }
  #bshopHeaderMobileSearch .mobile-search-input{
    width:100% !important;
    height:44px !important;
    min-height:44px !important;
    padding:0 40px 0 42px !important;
    border:2px solid #f3b165 !important;
    border-radius:999px !important;
    background:#f8fafc !important;
    color:#475569 !important;
    font-size:16px !important;
    line-height:1.2 !important;
    box-shadow:none !important;
  }
  #bshopHeaderMobileSearch .mobile-search-input::placeholder{
    color:#94a3b8 !important;
    opacity:1 !important;
  }
  #bshopHeaderMobileSearch .mobile-search-input:focus{
    outline:none !important;
    border-color:#f3b165 !important;
    box-shadow:0 0 0 2px rgba(243,177,101,.22) !important;
  }
  #bshopHeaderMobileSearch .mobile-search-input-icon{
    position:absolute !important;
    left:14px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    width:20px !important;
    height:20px !important;
    margin:0 !important;
    display:block !important;
    color:#94a3b8 !important;
    pointer-events:none !important;
  }
  #bshopHeaderMobileSearchDropdown.mobile-search-dropdown:not(.hidden){
    display:block !important;
    flex:1 !important;
    min-height:0 !important;
    border-top:1px solid #eef2f7 !important;
    border-radius:0 !important;
    box-shadow:none !important;
    background:#fff !important;
    overflow:hidden !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-scroll{
    height:100% !important;
    max-height:100% !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    touch-action:pan-y !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-section{
    margin:0 !important;
    padding:16px !important;
    border-bottom:1px solid #edf2f7 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-section-title{
    margin:0 !important;
    color:#64748b !important;
    font-size:13px !important;
    line-height:1.3 !important;
    letter-spacing:.01em !important;
    font-weight:700 !important;
  }
  #bshopHeaderMobileSearchDropdown #mobileRecent,
  #bshopHeaderMobileSearchDropdown #mobilePopulaire{
    margin:0 !important;
    padding:0 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    width:100% !important;
    padding:12px 16px !important;
    margin:0 !important;
    text-decoration:none !important;
    border-bottom:1px solid #edf2f7 !important;
    color:#334155 !important;
    background:#fff !important;
    font-size:16px !important;
    line-height:1.28 !important;
    font-weight:500 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item:last-child{
    border-bottom:0 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item-icon{
    width:18px !important;
    height:18px !important;
    flex:0 0 18px !important;
    color:#94a3b8 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item-copy{
    min-width:0 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item-title{
    margin:0 !important;
    font-size:16px !important;
    line-height:1.28 !important;
    font-weight:600 !important;
    color:#334155 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item-copy p{
    margin:0 !important;
    font-family:inherit !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-item-subtitle{
    margin:2px 0 0 !important;
    font-size:13px !important;
    line-height:1.25 !important;
    color:#94a3b8 !important;
    font-weight:500 !important;
  }
  #bshopHeaderMobileSearchDropdown .mobile-search-empty,
  #bshopHeaderMobileSearchDropdown .mobile-search-empty-row:not(.search-no-results-row){
    padding:14px 16px !important;
    margin:0 !important;
    color:#64748b !important;
    font-size:16px !important;
    line-height:1.35 !important;
    text-align:left !important;
    border-bottom:1px solid #edf2f7 !important;
  }
  #bshopHeaderMobileSearchDropdown .search-no-results-row{
    margin:10px 12px !important;
    padding:11px 14px 11px 42px !important;
    border-radius:12px !important;
    border:1px solid #fecaca !important;
    background:linear-gradient(180deg, #fff5f5 0%, #fef2f2 100%) !important;
    color:#991b1b !important;
    font-size:14px !important;
    line-height:1.35 !important;
    border-bottom:1px solid #fecaca !important;
  }
}

/* ===== MOBILE/TABLET HEADER VISUAL ALIGNMENT LOCK ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-shell{
    min-height:56px !important;
    align-items:center !important;
    gap:8px !important;
  }

  html body .bshop-central-header .header-right,
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    gap:8px !important;
    line-height:1 !important;
  }

  html body .bshop-central-header .header-mobile-actions button,
  html body .bshop-central-header .header-mobile-actions a{
    width:24px !important;
    min-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
    transform:none !important;
  }

  html body .bshop-central-header .header-mobile-actions svg{
    width:20px !important;
    height:20px !important;
    display:block !important;
    transform:none !important;
  }

  /* Remove language circle on mobile/tablet while keeping clear flag+caret */
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:44px !important;
    min-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    margin:0 !important;
    padding:0 !important;
    gap:2px !important;
    border:0 !important;
    border-width:0 !important;
    border-style:none !important;
    border-color:transparent !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger .locale-mobile-code{
    display:none !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger .locale-mobile-flag{
    width:18px !important;
    height:13px !important;
    display:block !important;
    flex:0 0 auto !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body .bshop-central-header .header-mobile-actions .locale-mobile-trigger .locale-mobile-caret{
    width:10px !important;
    height:10px !important;
    flex:0 0 auto !important;
    stroke-width:2 !important;
  }

  html body .bshop-central-header .butMobileCart .cart-icon-wrap{
    width:20px !important;
    height:20px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    position:relative !important;
  }

  /* Slightly normalize account glyph visual weight/centering */
  html body .bshop-central-header #mobileAccountTrigger svg{
    width:19px !important;
    height:19px !important;
    stroke-width:1.85 !important;
  }
}

/* ===== HEADER ACTIONS FINAL LOCK (mobile/tablet only) ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-shell{
    min-height:56px !important;
    height:56px !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:8px !important;
  }

  html body .bshop-central-header .header-logo,
  html body .bshop-central-header .header-logo > a{
    display:flex !important;
    align-items:center !important;
    min-height:32px !important;
  }

  html body .bshop-central-header .header-logo .site-logo{
    height:32px !important;
    width:auto !important;
    max-width:180px !important;
    display:block !important;
  }

  html body .bshop-central-header .header-right,
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex-wrap:nowrap !important;
    gap:8px !important;
    line-height:1 !important;
  }

  /* Common action frame (menu/search/cart/account) */
  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    border-width:0 !important;
    border-style:none !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    outline:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    transform:none !important;
    line-height:1 !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    width:20px !important;
    height:20px !important;
    display:block !important;
    margin:0 !important;
    transform:none !important;
    color:#1f2937 !important;
  }

  /* Account icon visual symmetry */
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    width:19px !important;
    height:19px !important;
    stroke-width:1.9 !important;
  }

  /* Language trigger without circle */
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger{
    width:30px !important;
    min-width:30px !important;
    max-width:30px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-width:0 !important;
    border-style:none !important;
    border-color:transparent !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    outline:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:2px !important;
    line-height:1 !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code{
    display:none !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag{
    width:17px !important;
    height:12px !important;
    min-width:17px !important;
    max-width:17px !important;
    display:block !important;
    border-radius:2px !important;
    margin:0 !important;
    flex:0 0 auto !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret{
    width:8px !important;
    height:8px !important;
    min-width:8px !important;
    max-width:8px !important;
    display:block !important;
    margin:0 !important;
    stroke:#94a3b8 !important;
    stroke-width:2.3 !important;
    transform:none !important;
    flex:0 0 auto !important;
  }

  /* Cart badge lock */
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger{
    overflow:visible !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger .cart-icon-wrap{
    position:relative !important;
    width:20px !important;
    height:20px !important;
    min-width:20px !important;
    min-height:20px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger .bshopHeaderCountMobileCart{
    position:absolute !important;
    top:-7px !important;
    right:-8px !important;
    min-width:15px !important;
    height:15px !important;
    line-height:15px !important;
    font-size:10px !important;
    padding:0 3px !important;
    border:1px solid #fff !important;
    border-radius:999px !important;
    z-index:2 !important;
  }
}

/* ===== ABSOLUTE LAST: locale trigger no-circle lock ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger{
    position:relative !important;
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    gap:3px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    outline:0 !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag{
    width:20px !important;
    height:14px !important;
    min-width:20px !important;
    max-width:20px !important;
    min-height:14px !important;
    max-height:14px !important;
    margin:0 !important;
    border-radius:1px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-shrink:0 !important;
    overflow:hidden !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag svg,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag svg,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag svg,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag svg,
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag img,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag img,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag img,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger .locale-mobile-flag img{
    width:20px !important;
    height:14px !important;
    min-width:20px !important;
    max-width:20px !important;
    min-height:14px !important;
    max-height:14px !important;
    display:block !important;
    margin:0 !important;
    padding:0 !important;
    flex-shrink:0 !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret{
    position:absolute !important;
    right:-1px !important;
    top:50% !important;
    width:7px !important;
    height:7px !important;
    min-width:7px !important;
    max-width:7px !important;
    transform:translateY(-50%) !important;
    margin:0 !important;
    display:block !important;
    stroke:#9ca3af !important;
    stroke-width:2.1 !important;
    pointer-events:none !important;
  }
}

/* ===== HARD OVERRIDE: remove locale circle on mobile/tablet everywhere ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    padding:0 !important;
    margin:0 !important;
    gap:3px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    outline:0 !important;
  }
}

@media (max-width: 1023px){
  /* Absolute final override: language selector without circle */
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    padding:0 !important;
    margin:0 !important;
    gap:3px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
  }
}

/* ===== STRICT STORE REFERENCE HEADER (single source of truth) ===== */
@media (max-width: 1023px){
  html body .bshop-central-header{
    background:#fff !important;
    border-bottom:1px solid #d8dce3 !important;
    box-shadow:none !important;
  }

  html body .bshop-central-header .header-container{
    padding-left:14px !important;
    padding-right:14px !important;
  }

  html body .bshop-central-header .header-shell{
    min-height:56px !important;
    height:56px !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:8px !important;
  }

  html body .bshop-central-header .header-center,
  html body .bshop-central-header .header-search,
  html body .bshop-central-header .header-desktop-actions,
  html body .bshop-central-header .mobile-actions-overflow{
    display:none !important;
  }

  html body .bshop-central-header .header-logo,
  html body .bshop-central-header .header-logo > a{
    display:flex !important;
    align-items:center !important;
    min-width:0 !important;
    flex:1 1 auto !important;
  }
  html body .bshop-central-header .header-logo .site-logo{
    height:32px !important;
    width:auto !important;
    max-width:min(180px, calc(100vw - 232px)) !important;
    display:block !important;
  }

  html body .bshop-central-header .header-right{
    margin-left:auto !important;
    flex:0 0 auto !important;
    display:flex !important;
    align-items:center !important;
  }
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex-wrap:nowrap !important;
    gap:8px !important;
    line-height:1 !important;
  }

  /* Plain icons: menu / search / cart / account */
  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
    transform:none !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger svg{
    width:20px !important;
    height:20px !important;
    display:block !important;
    margin:0 !important;
    color:#1f2937 !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    width:20px !important;
    height:20px !important;
    stroke-width:1.9 !important;
    display:block !important;
    margin:0 !important;
    color:#1f2937 !important;
  }

  /* Language selector keeps subtle circular outline in reference */
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger{
    width:44px !important;
    min-width:44px !important;
    max-width:44px !important;
    height:44px !important;
    min-height:44px !important;
    max-height:44px !important;
    margin:0 !important;
    padding:0 8px !important;
    gap:4px !important;
    border:1px solid #e7ecf5 !important;
    border-radius:999px !important;
    background:#fff !important;
    box-shadow:none !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    line-height:1 !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code{
    display:none !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag{
    width:18px !important;
    height:13px !important;
    min-width:18px !important;
    max-width:18px !important;
    border-radius:2px !important;
    display:block !important;
    margin:0 !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret{
    width:9px !important;
    height:9px !important;
    min-width:9px !important;
    max-width:9px !important;
    stroke:#9ca3af !important;
    stroke-width:2.2 !important;
    display:block !important;
    margin:0 !important;
  }

  /* Cart badge like store reference */
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger{
    overflow:visible !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger .cart-icon-wrap{
    position:relative !important;
    width:20px !important;
    height:20px !important;
    min-width:20px !important;
    min-height:20px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
  }
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger .bshopHeaderCountMobileCart{
    position:absolute !important;
    top:-6px !important;
    right:-6px !important;
    min-width:15px !important;
    height:15px !important;
    line-height:15px !important;
    padding:0 3px !important;
    font-size:10px !important;
    font-weight:700 !important;
    border:1px solid #fff !important;
    border-radius:999px !important;
    background:#111827 !important;
    color:#fff !important;
    z-index:2 !important;
  }
}

@media (max-width: 767px){
  html body .bshop-central-header .header-container{
    padding-left:8px !important;
    padding-right:8px !important;
  }
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    gap:8px !important;
  }
  html body .bshop-central-header .header-logo .site-logo{
    max-width:min(180px, calc(100vw - 228px)) !important;
  }
}

/* ===== SEARCH INPUT ICON ALIGNMENT LOCK (all pages / all sizes) ===== */
.bshop-central-header .desktop-search-field{
  position:relative !important;
  display:flex !important;
  align-items:center !important;
}

.bshop-central-header .desktop-search-input{
  box-sizing:border-box !important;
  height:44px !important;
  min-height:44px !important;
  padding:0 16px 0 44px !important;
  line-height:44px !important;
  font-size:16px !important;
}

.bshop-central-header .desktop-search-input::placeholder{
  line-height:44px !important;
}

.bshop-central-header .desktop-search-icon-slot{
  position:absolute !important;
  left:14px !important;
  top:0 !important;
  bottom:0 !important;
  width:20px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  pointer-events:none !important;
}

.bshop-central-header .desktop-search-input-icon{
  position:static !important;
  transform:none !important;
  width:20px !important;
  height:20px !important;
  display:block !important;
  color:#94a3b8 !important;
  pointer-events:none !important;
}

@media (max-width: 1023px){
  #bshopHeaderMobileSearch .mobile-search-input{
    box-sizing:border-box !important;
    height:44px !important;
    min-height:44px !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    padding-left:46px !important;
    padding-right:14px !important;
    line-height:44px !important;
    font-size:16px !important;
  }

  #bshopHeaderMobileSearch .mobile-search-input::placeholder{
    line-height:44px !important;
  }

  #bshopHeaderMobileSearch .mobile-search-icon-slot{
    position:absolute !important;
    left:14px !important;
    top:0 !important;
    bottom:0 !important;
    width:20px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    pointer-events:none !important;
  }

  #bshopHeaderMobileSearch .mobile-search-input-icon{
    position:static !important;
    transform:none !important;
    width:20px !important;
    height:20px !important;
    display:block !important;
    color:#94a3b8 !important;
    pointer-events:none !important;
  }
}

/* ===== FINAL MOBILE/TABLET VERTICAL ALIGNMENT LOCK (0px drift) ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-shell{
    min-height:56px !important;
    height:56px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
  }

  html body .bshop-central-header .header-logo,
  html body .bshop-central-header .header-logo > a{
    display:flex !important;
    align-items:center !important;
    height:32px !important;
  }

  html body .bshop-central-header .header-logo .site-logo{
    display:block !important;
    height:32px !important;
    width:auto !important;
    margin:0 !important;
  }

  html body .bshop-central-header .header-right,
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex-wrap:nowrap !important;
    gap:10px !important;
    height:24px !important;
    line-height:1 !important;
  }

  /* Same frame for every action trigger */
  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    line-height:1 !important;
    vertical-align:middle !important;
    transform:none !important;
  }

  /* No circle for language selector */
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger{
    gap:3px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-code{
    display:none !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag{
    width:14px !important;
    height:10px !important;
    min-width:14px !important;
    max-width:14px !important;
    margin:0 !important;
    display:block !important;
    border-radius:1px !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret{
    width:8px !important;
    height:8px !important;
    min-width:8px !important;
    max-width:8px !important;
    margin:0 !important;
    display:block !important;
    stroke:#9ca3af !important;
    stroke-width:2.2 !important;
    transform:none !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    display:block !important;
    width:20px !important;
    height:20px !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
    vertical-align:middle !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    width:19px !important;
    height:19px !important;
    stroke-width:1.9 !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger{
    overflow:visible !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger .cart-icon-wrap{
    position:relative !important;
    width:20px !important;
    height:20px !important;
    min-width:20px !important;
    min-height:20px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger .bshopHeaderCountMobileCart{
    position:absolute !important;
    top:-4px !important;
    right:-5px !important;
    min-width:14px !important;
    width:14px !important;
    height:14px !important;
    line-height:14px !important;
    font-size:10px !important;
    font-weight:700 !important;
    padding:0 !important;
    border:1px solid #fff !important;
    border-radius:999px !important;
    background:#111827 !important;
    color:#fff !important;
    z-index:2 !important;
  }
}

/* ===== ABSOLUTE LAST: locale trigger no-circle lock ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    gap:3px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    outline:0 !important;
  }
}

/* ===== FINAL MOBILE ICON PACK (spacing + modern same-size svg) ===== */
@media (max-width: 1023px){
  html body .bshop-central-header .header-mobile-actions,
  html body .bshop-central-header .mobile-actions-primary,
  html body.store-page .bshop-central-header .header-mobile-actions,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions,
  html body.home-page .bshop-central-header .header-mobile-actions{
    gap:12px !important;
    align-items:center !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin:0 !important;
    padding:0 !important;
    line-height:1 !important;
    vertical-align:middle !important;
  }

  html body .bshop-central-header .header-mobile-actions .mobile-header-icon,
  html body .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileSearchTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileCartTrigger svg,
  html body .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    width:20px !important;
    height:20px !important;
    min-width:20px !important;
    min-height:20px !important;
    display:block !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
    vector-effect:non-scaling-stroke !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger#mobileLocaleTrigger.locale-mobile-trigger{
    width:36px !important;
    min-width:36px !important;
    max-width:36px !important;
    gap:2px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
    overflow:visible !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag{
    width:18px !important;
    height:13px !important;
    min-width:18px !important;
    max-width:18px !important;
    min-height:13px !important;
    max-height:13px !important;
    margin:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:visible !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag svg,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag svg,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag svg,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag svg,
  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag img,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag img,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag img,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-flag img{
    width:18px !important;
    height:13px !important;
    min-width:18px !important;
    min-height:13px !important;
    max-width:18px !important;
    max-height:13px !important;
    display:block !important;
    margin:0 !important;
    padding:0 !important;
  }

  html body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body.home-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger .locale-mobile-caret{
    width:12px !important;
    height:12px !important;
    min-width:12px !important;
    max-width:12px !important;
    margin:0 0 0 1px !important;
    display:block !important;
    color:#334155 !important;
    fill:#334155 !important;
    stroke:none !important;
    position:static !important;
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    transform:none !important;
  }
}

/* ===== ABSOLUTE LAST: search input icon geometric centering ===== */
.bshop-central-header .desktop-search-field .desktop-search-icon-slot{
  position:absolute !important;
  left:14px !important;
  top:50% !important;
  width:20px !important;
  height:20px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  transform:translateY(-50%) !important;
  pointer-events:none !important;
}

.bshop-central-header .desktop-search-field .desktop-search-input-icon{
  position:static !important;
  width:20px !important;
  height:20px !important;
  display:block !important;
  margin:0 !important;
  transform:none !important;
}

@media (max-width: 1023px){
  #bshopHeaderMobileSearch .mobile-search-input-wrap{
    position:relative !important;
  }

  #bshopHeaderMobileSearch .mobile-search-icon-slot{
    position:absolute !important;
    left:14px !important;
    top:50% !important;
    width:20px !important;
    height:20px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    transform:translateY(-50%) !important;
    margin:0 !important;
    padding:0 !important;
    line-height:1 !important;
    pointer-events:none !important;
  }

  #bshopHeaderMobileSearch .mobile-search-input-icon{
    position:static !important;
    width:20px !important;
    height:20px !important;
    display:block !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
    vector-effect:non-scaling-stroke !important;
  }
}

/* Search loupe must remain clickable on desktop/mobile (JS handles focus/search). */
.bshop-central-header .desktop-search-icon-slot,
.bshop-central-header .desktop-search-input-icon{
  pointer-events:auto !important;
}
@media (max-width: 1023px){
  #bshopHeaderMobileSearch .mobile-search-icon-slot,
  #bshopHeaderMobileSearch .mobile-search-input-icon{
    pointer-events:auto !important;
  }
}

/* Keep the categories menu mount alive on mobile/tablet.
   If `.header-center` is `display:none`, `#categoriesAllMenu` cannot render,
   even when JS toggles it to `.is-open`. */
@media (max-width: 1023px){
  html body .bshop-central-header .header-center{
    display:block !important;
    width:0 !important;
    min-width:0 !important;
    flex:0 0 auto !important;
    height:0 !important;
    overflow:visible !important;
    position:static !important;
  }
  html body .bshop-central-header .header-center .header-categories{
    display:block !important;
    position:static !important;
    width:0 !important;
    min-width:0 !important;
    overflow:visible !important;
  }
  html body .bshop-central-header .header-center .header-categories > #headerCategoriesTrigger{
    display:none !important;
  }
}

/* Align store/product mobile header metrics with index reference */
@media (max-width: 1023px){
  html body.store-page .bshop-central-header .header-logo .site-logo,
  html body[data-product-v2="1"] .bshop-central-header .header-logo .site-logo{
    display:block !important;
    height:32px !important;
    width:auto !important;
    max-width:none !important;
    min-width:0 !important;
    margin:0 !important;
  }

  html body.store-page .bshop-central-header .header-right,
  html body.store-page .bshop-central-header .header-mobile-actions,
  html body.store-page .bshop-central-header .mobile-actions-primary,
  html body[data-product-v2="1"] .bshop-central-header .header-right,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions,
  html body[data-product-v2="1"] .bshop-central-header .mobile-actions-primary{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex-wrap:nowrap !important;
    gap:12px !important;
    height:24px !important;
    line-height:1 !important;
  }

  html body.store-page .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileSearchTrigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileCartTrigger,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileAccountTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileSearchTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileCartTrigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileAccountTrigger{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
    height:24px !important;
    min-height:24px !important;
    max-height:24px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    line-height:1 !important;
    transform:none !important;
  }

  html body.store-page .bshop-central-header .header-mobile-actions .mobile-header-icon,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger svg,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileSearchTrigger svg,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileCartTrigger svg,
  html body.store-page .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions .mobile-header-icon,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileCategoriesTrigger svg,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileSearchTrigger svg,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileCartTrigger svg,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileAccountTrigger svg{
    width:20px !important;
    height:20px !important;
    min-width:20px !important;
    min-height:20px !important;
    margin:0 !important;
    padding:0 !important;
    transform:none !important;
  }

  html body.store-page .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html body[data-product-v2="1"] .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger{
    width:36px !important;
    min-width:36px !important;
    max-width:36px !important;
    gap:2px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    padding:0 !important;
  }
}

/* === Unified header desktop spacing (reference = produitv2.php) === */
@media (min-width: 1024px){
  html.ui-desktop body .bshop-central-header .header-container{
    max-width:1536px !important;
    margin:0 auto !important;
    padding:0 1.25rem !important;
    box-sizing:border-box !important;
  }
  html.ui-desktop body .bshop-central-header .header-shell{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:1.25rem !important;
    min-height:72px !important;
    padding:0 !important;
  }
  html.ui-desktop body .bshop-central-header .header-center{
    display:flex !important;
    align-items:center !important;
    flex:1 1 auto !important;
    min-width:0 !important;
    gap:1.1rem !important;
  }
  html.ui-desktop body .bshop-central-header .header-right{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex:0 0 auto !important;
    gap:1rem !important;
  }
  html.ui-desktop body .bshop-central-header .bshop-header-categories-btn{
    padding:0 1.5rem !important;
    gap:.65rem !important;
  }
  html.ui-desktop body .bshop-central-header .header-desktop-actions{
    display:flex !important;
    align-items:center !important;
    gap:.9rem !important;
  }
}

/* Desktop shared header: enforce one sizing baseline across pages */
@media (min-width: 1024px){
  html.ui-desktop body .bshop-central-header{
    font-size:12px !important;
    line-height:1.6 !important;
    font-family:"Segoe UI",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif !important;
  }

  html.ui-desktop body .bshop-central-header button,
  html.ui-desktop body .bshop-central-header a,
  html.ui-desktop body .bshop-central-header input{
    font-family:"Segoe UI",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif !important;
  }

  /* Neutralize utility spacing margins; keep spacing controlled by flex gap only */
  html.ui-desktop body .bshop-central-header .header-desktop-actions > *{
    margin-left:0 !important;
    margin-right:0 !important;
  }
}

/* === Mobile/tablet: locale trigger without circle === */
@media (max-width: 1023px){
  html.ui-mobile body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html.ui-tablet body .bshop-central-header .header-mobile-actions #mobileLocaleTrigger.locale-mobile-trigger,
  html.ui-mobile body .bshop-central-header .header-mobile-actions .locale-mobile-trigger,
  html.ui-tablet body .bshop-central-header .header-mobile-actions .locale-mobile-trigger{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    height:34px !important;
    min-height:34px !important;
    padding:0 6px !important;
    gap:4px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
  }
  html.ui-mobile body .bshop-central-header .header-mobile-actions .locale-mobile-flag,
  html.ui-tablet body .bshop-central-header .header-mobile-actions .locale-mobile-flag{
    border-radius:2px !important;
    background:transparent !important;
  }
}
