
:root{
  --boeh-navy:#210044;
  --boeh-navy-2:#16002f;
  --boeh-purple:#7c3aed;
  --boeh-purple-2:#9b5cff;
  --boeh-white:#ffffff;
  --boeh-soft:#efe8ff;
}
.boeh,.boeh *{box-sizing:border-box}
.boeh{
  position:relative;
  z-index:9998;
  width:100%;
  background:linear-gradient(90deg,var(--boeh-navy-2),var(--boeh-navy));
  color:#fff;
  font-family:inherit;
  box-shadow:0 8px 24px rgba(17,0,39,.12);
}
.boeh.boeh-sticky{position:sticky;top:0}
body.admin-bar .boeh.boeh-sticky{top:32px}
.boeh-inner{
  width:min(1500px,96%);
  height:72px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:24px;
}
.boeh-brand{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  text-decoration:none;
}
.boeh-brand img{
  display:block;
  width:64px;
  height:64px;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  padding:3px;
}
.boeh-desktop-nav{
  min-width:0;
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(14px,1.4vw,28px);
  white-space:nowrap;
}
.boeh-desktop-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px;
  line-height:1.1;
  font-weight:700;
  letter-spacing:-.1px;
  opacity:.92;
  transition:opacity .18s ease,transform .18s ease;
}
.boeh-desktop-nav a:hover{opacity:1;transform:translateY(-1px)}
.boeh-desktop-nav a:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:-9px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,var(--boeh-purple),var(--boeh-purple-2));
  transform:scaleX(0);
  transition:transform .18s ease;
}
.boeh-desktop-nav a:hover:after{transform:scaleX(1)}
.boeh-desktop-nav svg{width:15px;height:15px;fill:none;stroke:currentColor;stroke-width:1.8}
.boeh-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.boeh-quote{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 17px;
  color:#fff!important;
  text-decoration:none!important;
  background:linear-gradient(135deg,var(--boeh-purple),var(--boeh-purple-2));
  border-radius:12px;
  font-size:13px;
  font-weight:800;
  box-shadow:0 8px 18px rgba(124,58,237,.26);
  transition:transform .18s ease,box-shadow .18s ease;
  white-space:nowrap;
}
.boeh-quote:hover{transform:translateY(-1px);box-shadow:0 10px 24px rgba(124,58,237,.35)}
.boeh-icon-link,.boeh-burger{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:11px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.07);
  color:#fff!important;
  text-decoration:none!important;
}
.boeh-icon-link svg{
  width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round
}
.boeh-cart{position:relative}
.boeh-cart-count{
  position:absolute;
  top:-5px;right:-5px;
  min-width:18px;height:18px;
  padding:0 4px;
  border-radius:999px;
  background:var(--boeh-purple-2);
  color:#fff;
  font-size:10px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--boeh-navy);
}
.boeh-burger{
  display:none;
  padding:0;
  cursor:pointer;
}
.boeh-burger span{
  display:block;
  width:18px;height:2px;
  background:#fff;
  border-radius:2px;
  margin:2px 0;
}
.boeh-mobile-panel{
  display:none;
  position:absolute;
  left:0;right:0;top:100%;
  background:#fff;
  color:var(--boeh-navy);
  border-top:1px solid rgba(33,0,68,.08);
  box-shadow:0 18px 35px rgba(17,0,39,.16);
}
.boeh-mobile-grid{
  width:min(720px,94%);
  margin:auto;
  padding:14px 0 18px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.boeh-mobile-grid>a{
  min-height:44px;
  padding:11px 13px;
  display:flex;
  align-items:center;
  color:var(--boeh-navy)!important;
  text-decoration:none!important;
  border:1px solid #e9e1f5;
  border-radius:11px;
  font-weight:750;
  font-size:13px;
  background:#fff;
}
.boeh-mobile-grid>a:hover{background:#f7f2ff;border-color:#d9c5ff}
.boeh-mobile-primary{
  min-height:58px!important;
  flex-direction:column;
  align-items:flex-start!important;
  justify-content:center;
  background:#f7f2ff!important;
}
.boeh-mobile-primary span{font-size:14px;font-weight:850}
.boeh-mobile-primary small{font-size:11px;opacity:.72;margin-top:2px;font-weight:600}
.boeh-mobile-quote{
  background:linear-gradient(135deg,var(--boeh-purple),var(--boeh-purple-2))!important;
  color:#fff!important;
  border-color:transparent!important;
}
.boeh-mobile-quote small{color:#fff}
@media(max-width:1120px){
  .boeh-desktop-nav{gap:14px}
  .boeh-desktop-nav a{font-size:13px}
  .boeh-quote{padding:0 13px;font-size:12px}
}
@media(max-width:980px){
  .boeh-inner{
    width:94%;
    height:64px;
    gap:10px;
  }
  .boeh-brand img{width:54px;height:54px;border-radius:10px}
  .boeh-desktop-nav{display:none}
  .boeh-actions{margin-left:auto}
  .boeh-burger{display:inline-flex;flex-direction:column}
  .boeh-mobile-panel:not([hidden]){display:block}
  .boeh-quote{min-height:38px;padding:0 12px}
}
@media(max-width:560px){
  body.admin-bar .boeh.boeh-sticky{top:46px}
  .boeh-inner{height:60px}
  .boeh-brand img{width:50px;height:50px}
  .boeh-quote{font-size:11px;padding:0 10px;min-height:36px;border-radius:10px}
  .boeh-icon-link,.boeh-burger{width:36px;height:36px;border-radius:10px}
  .boeh-actions{gap:6px}
  .boeh-mobile-grid{grid-template-columns:1fr}
  .boeh-mobile-primary{min-height:54px!important}
}
@media(max-width:390px){
  .boeh-icon-link[aria-label="Mon compte"]{display:none}
  .boeh-quote{padding:0 9px}
}


/* V1.0.1 — sous-menu Personnaliser */
.boeh-nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
  height:72px;
}
.boeh-nav-parent{
  cursor:pointer;
}
.boeh-nav-chevron{
  font-size:16px;
  line-height:1;
  margin-left:1px;
  transform:translateY(-1px);
}
.boeh-submenu{
  position:absolute;
  top:calc(100% - 6px);
  left:50%;
  width:300px;
  transform:translateX(-50%) translateY(8px);
  padding:8px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(33,0,68,.08);
  box-shadow:0 18px 42px rgba(17,0,39,.20);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease;
}
.boeh-nav-dropdown:hover .boeh-submenu,
.boeh-nav-dropdown:focus-within .boeh-submenu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.boeh-submenu a{
  display:flex!important;
  flex-direction:column;
  align-items:flex-start!important;
  gap:3px!important;
  padding:11px 12px;
  border-radius:10px;
  color:var(--boeh-navy)!important;
  opacity:1!important;
  transform:none!important;
}
.boeh-submenu a:hover{
  background:#f7f2ff;
}
.boeh-submenu a:after{
  display:none!important;
}
.boeh-submenu strong{
  font-size:13px;
  color:var(--boeh-navy);
}
.boeh-submenu small{
  font-size:11px;
  line-height:1.3;
  font-weight:600;
  color:#6d5a82;
  white-space:normal;
}

/* Mobile — rubrique Personnaliser déroulante */
.boeh-mobile-personalize{
  grid-column:1/-1;
  border:1px solid #e9e1f5;
  border-radius:11px;
  overflow:hidden;
  background:#fff;
}
.boeh-mobile-subtoggle{
  width:100%;
  min-height:48px;
  padding:11px 13px;
  border:0;
  background:#f7f2ff;
  color:var(--boeh-navy);
  display:flex;
  align-items:center;
  justify-content:space-between;
  font:inherit;
  font-size:14px;
  font-weight:850;
  cursor:pointer;
}
.boeh-mobile-arrow{
  font-size:18px;
  transition:transform .18s ease;
}
.boeh-mobile-subtoggle[aria-expanded="true"] .boeh-mobile-arrow{
  transform:rotate(180deg);
}
.boeh-mobile-submenu{
  padding:6px;
  background:#fff;
}
.boeh-mobile-submenu:not([hidden]){
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:6px;
}
.boeh-mobile-submenu a{
  min-height:58px;
  padding:10px 11px;
  border-radius:9px;
  background:#fff;
  border:1px solid #eee7f7;
  color:var(--boeh-navy)!important;
  text-decoration:none!important;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:2px;
}
.boeh-mobile-submenu a:hover{
  background:#f7f2ff;
}
.boeh-mobile-submenu strong{
  font-size:13px;
}
.boeh-mobile-submenu small{
  font-size:10.5px;
  line-height:1.25;
  color:#6d5a82;
  font-weight:600;
}
@media(max-width:560px){
  .boeh-mobile-submenu:not([hidden]){
    grid-template-columns:1fr;
  }
}


/* V1.0.2 — bandeau supérieur reproduit d'après la maquette utilisateur */
.boeh-utilitybar{
  width:100%;
  height:30px;
  background:#fff;
  border-top:1px solid #2c2540;
  border-bottom:1px solid #e5e1eb;
  color:var(--boeh-navy);
}
.boeh-utilitybar-inner{
  width:calc(100% - 58px);
  max-width:none;
  height:100%;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.boeh-utility-left,
.boeh-discover{
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
  font-size:16px;
  line-height:1;
  font-weight:800;
}
.boeh-utility-left a{
  color:var(--boeh-navy)!important;
  text-decoration:none!important;
}
.boeh-discover{
  color:#55445f;
  font-size:15px;
}
.boeh-discover a{
  color:#a900dc!important;
  text-decoration:none!important;
  font-weight:900;
}
.boeh-utility-left a:hover,
.boeh-discover a:hover{
  text-decoration:underline!important;
}
@media(max-width:980px){
  .boeh-utilitybar{
    height:auto;
    min-height:28px;
  }
  .boeh-utilitybar-inner{
    width:94%;
    min-height:28px;
    justify-content:center;
  }
  .boeh-utility-left{
    display:none;
  }
  .boeh-discover{
    width:100%;
    justify-content:center;
    gap:5px;
    font-size:12px;
    padding:6px 0;
  }
}
@media(max-width:420px){
  .boeh-discover{
    font-size:11px;
  }
}

/* V1.0.3 — liens inter-sites SSO */
.boeh-crosssite{position:relative}
.boeh-crosssite:after{
  content:"↗";
  display:inline-block;
  margin-left:3px;
  font-size:.76em;
  opacity:.55;
  transform:translateY(-1px);
}
.boeh-crosssite:hover:after{opacity:1}
