/* Mobile drawer overlay for radnyrataje.pl (safe add-on) */
.nav-burger{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
  margin-left:10px;
}
.theme-light .nav-burger{
  border-color: rgba(0,0,0,.14);
  background: rgba(0,0,0,.04);
}
.nav-burger-lines{
  width:18px;
  height:2px;
  background: currentColor;
  position:relative;
  display:block;
  border-radius:2px;
}
.nav-burger-lines::before,
.nav-burger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: currentColor;
  border-radius:2px;
}
.nav-burger-lines::before{ top:-6px; }
.nav-burger-lines::after{ top:6px; }

/* Drawer */
.rr-backdrop{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
}
.rr-drawer{
  position:fixed;
  left:12px;
  right:12px;
  top:12px;
  max-height: calc(100dvh - 24px);
  overflow:auto;
  z-index: 9999;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(12,18,32,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.theme-light .rr-drawer{
  border-color: rgba(0,0,0,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.rr-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.theme-light .rr-drawer-head{ border-bottom-color: rgba(0,0,0,.10); }
.rr-drawer-title{
  font-weight:900;
  letter-spacing:.2px;
}
.rr-drawer-close{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  cursor:pointer;
}
.theme-light .rr-drawer-close{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
}
.rr-drawer-links{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:12px;
}
.rr-drawer-links a{
  display:flex;
  align-items:center;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid transparent;
  background: rgba(255,255,255,.03);
}
.theme-light .rr-drawer-links a{ background: rgba(0,0,0,.03); }
.rr-drawer-links a:hover{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.theme-light .rr-drawer-links a:hover{
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.05);
}
.rr-drawer-foot{
  padding:12px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:flex-end;
}
.theme-light .rr-drawer-foot{ border-top-color: rgba(0,0,0,.10); }

/* Mobile rules: show burger, hide desktop links/cta (they stay in drawer) */
@media (max-width: 900px){
  .nav-burger{ display:inline-flex; }
  .nav-links{ display:none !important; }
  /* Keep CTA compact; it can stay visible, but often it overflows—hide on very small */
}
@media (max-width: 520px){
  .nav-cta .btn.small{ display:none; } /* keep header clean on tiny phones */
}
