body {
  font-family: "DM Sans", sans-serif;
  background: #faf6f1;
  color: #f04400;
}
.admin-shell {
  min-height: 100vh;
}
.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #d13b00;
  color: #fff;
}
.admin-nav {
  background: #fff;
  border-bottom: 1px solid #ede5da;
  overflow-x: auto;
}
.tab {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #7a6b5d;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.tab.active {
  color: #d4621a;
  border-bottom-color: #d4621a;
}
.card {
  background: #fff;
  border: 1px solid #ede5da;
  border-radius: 16px;
}
.input {
  width: 100%;
  border: 1.5px solid #ede5da;
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  background: #fff;
}
.input:focus {
  border-color: #d4621a;
}
.btn {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 12px;
}
.btn-primary {
  background: #d4621a;
  color: #fff;
}
.btn-danger {
  background: #c0392b;
  color: #fff;
}
.btn-outline {
  border: 1.5px solid #ede5da;
  background: #fff;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal.show {
  display: flex;
}
.sheet {
  background: #fff;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow: auto;
  border-radius: 20px 20px 0 0;
}
.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}
.badge-preview {
  display: inline-flex;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
}
.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: #ffffff;
  color: #fff;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 12px;
}
.toast.error {
  background: #c0392b;
}
.toast.success {
  background: #2d8b4e;
}
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #ede5da;
  border-radius: 20px;
  padding: 28px;
}
.hidden {
  display: none !important;
}
