/* SDD language switcher */
.sdd-lang-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.sdd-lang-switch a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:32px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#111;
  text-decoration:none;
}
.sdd-lang-switch a.active,
.sdd-lang-switch a:hover{
  background:#ff6b1a;
  color:#fff;
}
.sdd-floating-lang{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
}
@media(max-width:900px){
  .sdd-lang-switch{width:100%;justify-content:center;margin-top:8px}
  .sdd-floating-lang{right:12px;bottom:12px}
}
