.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(520px, 92vw);
  background: #fff;
  box-shadow: -20px 0 40px rgba(15, 23, 42, 0.2);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 11;
  display: flex;
  flex-direction: column;
}
.drawer.active {
  transform: translateX(0);
}
.drawer__head {
  padding: 18px 22px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer__body {
  padding: 20px 22px 32px;
  overflow: auto;
  flex: 1;
}
