/* Approved mobile header: logo + language selector + hamburger menu */
.sath-header .sath-actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:0;
}
.sath-header .sath-menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(0,159,218,.08);
  color:#5bc5ef;
  cursor:pointer;
  flex:0 0 auto;
}
.sath-header .sath-menu-toggle span{
  position:relative;
  display:block;
  width:16px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:background .18s ease;
}
.sath-header .sath-menu-toggle span:before,
.sath-header .sath-menu-toggle span:after{
  content:"";
  position:absolute;
  left:0;
  width:16px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:top .18s ease,transform .18s ease;
}
.sath-header .sath-menu-toggle span:before{top:-5px}
.sath-header .sath-menu-toggle span:after{top:5px}
.sath-header.menu-open .sath-menu-toggle span{background:transparent}
.sath-header.menu-open .sath-menu-toggle span:before{top:0;transform:rotate(45deg)}
.sath-header.menu-open .sath-menu-toggle span:after{top:0;transform:rotate(-45deg)}

@media(max-width:1100px){
  .sath-header{
    align-items:center!important;
    gap:14px!important;
    padding:16px 22px!important;
  }
  .sath-header .sath-logo{
    flex:0 1 auto!important;
  }
  .sath-header .sath-actions{
    margin-left:auto!important;
    position:relative!important;
    z-index:3!important;
    flex:0 0 auto!important;
  }
  .sath-header .sath-menu-toggle{
    display:inline-flex!important;
  }
  .sath-header .sath-lang{
    min-width:64px!important;
    margin-left:0!important;
    position:relative!important;
    z-index:4!important;
  }
  .sath-header .sath-lang summary{
    white-space:nowrap!important;
  }
  .sath-header .sath-nav{
    position:absolute!important;
    left:22px!important;
    right:22px!important;
    top:calc(100% + 8px)!important;
    z-index:2!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    justify-content:stretch!important;
    gap:4px!important;
    flex-wrap:nowrap!important;
    padding:12px!important;
    border:1px solid rgba(91,197,239,.22)!important;
    border-radius:14px!important;
    background:rgba(4,17,29,.97)!important;
    box-shadow:0 24px 48px rgba(0,0,0,.36)!important;
    opacity:0!important;
    visibility:hidden!important;
    pointer-events:none!important;
    transform:translateY(-8px)!important;
    transition:opacity .22s ease,transform .22s ease,visibility .22s ease!important;
  }
  .sath-header.menu-open .sath-nav{
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    transform:none!important;
  }
  .sath-header .sath-nav a{
    display:block!important;
    width:100%!important;
    min-height:42px!important;
    padding:12px 14px!important;
    border-radius:10px!important;
    font-size:.9rem!important;
    line-height:1.15!important;
    color:#d7e3ea!important;
    background:transparent!important;
    text-align:left!important;
  }
  .sath-header .sath-nav a:hover,
  .sath-header .sath-nav a:focus{
    background:rgba(0,159,218,.11)!important;
    color:#fff!important;
  }
  .sath-header .sath-optional{
    display:block!important;
  }
  .sath-header .sath-cta{
    border-color:rgba(91,197,239,.4)!important;
    color:#5bc5ef!important;
    text-align:left!important;
    margin-top:4px!important;
  }
}

@media(max-width:520px){
  .sath-header{
    padding:14px 18px!important;
  }
  .sath-header .sath-nav{
    left:18px!important;
    right:18px!important;
  }
  .sath-header .sath-menu-toggle{
    width:42px!important;
    height:42px!important;
  }
}
/* sath-header-blue-line */
.sath-header:before{content:""!important;display:block!important;position:absolute!important;left:clamp(20px,5vw,54px)!important;right:clamp(20px,5vw,54px)!important;bottom:0!important;height:2px!important;background:linear-gradient(90deg,transparent,#009fda,#5bc5ef,transparent)!important;opacity:.95!important;transform:none!important;transform-origin:center!important;pointer-events:none!important;z-index:1!important}
.sath-header>*{position:relative;z-index:2}
@media(max-width:520px){.sath-header:before{left:18px!important;right:18px!important}}
