.loadoutPanel{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 90vw;
  background: rgba(20,20,20,0.96);
  border-left: 1px solid rgba(255,255,255,0.12);
  transform: translateX(102%);
  transition: transform 180ms ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.loadoutPanel.show{
  transform: translateX(0);
}

.loadoutHdr{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.loadoutTitle{
  font-weight: 700;
}

.loadoutClose{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.loadoutBody{
  padding: 10px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loadoutActions{
  display: flex;
  gap: 8px;
}

.loadoutActions button{
  flex: 1;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.loadoutActions button.secondary{
  background: rgba(0,0,0,0.25);
}

.loadoutHint{
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.35;
}

.iconBtn{
  width: 40px;
  padding: 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hidden{ display: none !important; }
