:root {
  --red: #e30613;
  --orange: #ff6a00;
  --dark: #0a0a0a;
  --card: #141414;
  --muted: #9b9b9b;
  --line: #313131;
  --text: #ececec;
}

* {
  box-sizing: border-box;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 106, 0, 0.65) #1a1a1a;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #151515;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6a00, #e30613);
  border-radius: 999px;
  border: 2px solid #151515;
}

body.admin-body {
  margin: 0;
  background: radial-gradient(circle at 100% 0, rgba(255, 106, 0, 0.1), transparent 28%), var(--dark);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body.admin-body.device-mobile,
body.admin-body.device-tablet {
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}

body.modal-open {
  overflow: hidden;
}

.admin-shell {
  min-height: 100vh;
}

.admin-topbar {
  height: 68px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar-left, .admin-topbar-right, .admin-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 2px;
}

.admin-logo {
  margin: 0;
  font: 700 1.2rem "Orbitron", monospace;
  letter-spacing: 0.02em;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.68rem;
  border: 1px solid #3b3b3b;
}

.role-admin {
  color: #ffb380;
  background: rgba(255, 106, 0, 0.16);
}

.role-operator {
  color: #8ac6ff;
  background: rgba(100, 200, 255, 0.14);
}

.admin-body-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 68px);
}

.admin-sidebar {
  position: sticky;
  top: 68px;
  width: 100%;
  height: calc(100vh - 68px);
  overflow-y: auto;
  border-right: 1px solid var(--line);
  background: #101010;
  padding: 1rem 0.75rem;
  z-index: 45;
}

.admin-bottom-nav {
  display: none;
}

.admin-bottom-link {
  text-decoration: none;
}

.admin-nav-link {
  color: #d6d6d6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  margin-bottom: 0.35rem;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.9), rgba(255, 106, 0, 0.65));
  color: #fff;
}

.admin-main {
  padding: 1.1rem;
}

.admin-main-focused {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.admin-page-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 18px;
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 32%), linear-gradient(135deg, rgba(227, 6, 19, 0.09), rgba(255, 106, 0, 0.08));
}

.admin-page-kicker {
  display: inline-flex;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffd5bf;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-page-intro h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.admin-page-intro p {
  margin: 0.35rem 0 0;
  color: #c8c8c8;
  max-width: 70ch;
}

.admin-section {
  display: none;
}

.admin-section.active {
  display: block;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.section-head p {
  margin: 0.35rem 0 0;
}

.section-head-actions {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.metric-grid-extended {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#adminSalesDashboard {
  display: grid;
  gap: 1rem;
}

.sales-admin-layout {
  align-content: start;
}

.sales-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.2), transparent 42%), linear-gradient(135deg, rgba(227, 6, 19, 0.12), rgba(255, 106, 0, 0.08));
  border-color: rgba(255, 106, 0, 0.28);
}

.sales-admin-header h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
}

.sales-admin-header p {
  margin: 0.45rem 0 0;
  max-width: 62ch;
}

.sales-admin-header-actions {
  display: grid;
  gap: 0.55rem;
  min-width: 250px;
}

.sales-admin-meta-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.55rem 0.7rem;
  display: grid;
  gap: 0.2rem;
}

.sales-admin-meta-card small {
  color: #bbbbbb;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.sales-admin-meta-card strong {
  font-size: 0.94rem;
}

.sales-admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.sales-intro-actions {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 0.55rem;
}

.sales-intro-top-seller {
  display: grid;
  gap: 0.12rem;
  justify-items: end;
  border: 1px solid rgba(255, 106, 0, 0.3);
  border-radius: 11px;
  background: rgba(255, 106, 0, 0.08);
  padding: 0.35rem 0.55rem;
}

.sales-intro-top-seller small {
  color: #ffd7bf;
  font-size: 0.72rem;
}

.sales-intro-top-seller strong {
  color: #fff;
}

.sales-intro-top-seller span {
  color: #ffd7bf;
  font-size: 0.82rem;
}

.pdv-fullscreen-mode .admin-topbar,
.pdv-fullscreen-mode .admin-sidebar,
.pdv-fullscreen-mode .admin-bottom-nav,
.pdv-fullscreen-mode .admin-page-intro {
  display: none !important;
}

.pdv-fullscreen-mode .admin-body-layout {
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.pdv-fullscreen-mode .admin-main,
.pdv-fullscreen-mode .admin-main-workspace {
  padding: 0;
}

.pdv-fullscreen-mode .workspace-pdv-shell {
  height: 100vh;
  border-radius: 0;
}

.sales-admin-kpi {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.12);
}

.sales-admin-kpi-label {
  color: #bbbbbb;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sales-admin-kpi strong {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.sales-admin-kpi-physical {
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.22), rgba(255, 106, 0, 0.04));
}

.sales-admin-kpi-online {
  background: linear-gradient(135deg, rgba(44, 196, 255, 0.24), rgba(44, 196, 255, 0.05));
}

.sales-admin-kpi-ticket {
  background: linear-gradient(135deg, rgba(255, 214, 94, 0.2), rgba(255, 214, 94, 0.04));
}

.sales-admin-kpi-receivable {
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.2), rgba(227, 6, 19, 0.05));
}

.sales-admin-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sales-admin-surface {
  border-color: rgba(255, 255, 255, 0.12);
}

.sales-admin-surface-hot {
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.16), transparent 46%), var(--card);
}

.sales-admin-surface-cool {
  background: radial-gradient(circle at top right, rgba(44, 196, 255, 0.16), transparent 46%), var(--card);
}

.seller-dashboard-chart-card {
  padding: 0.75rem 0.85rem;
  margin-bottom: 0;
}

.seller-dashboard-chart-card .section-head {
  margin-bottom: 0.45rem;
}

.seller-dashboard-chart-card .section-head h3 {
  font-size: 1rem;
}

.seller-dashboard-chart-card canvas {
  display: block;
  width: 100% !important;
  max-height: 190px;
}

.seller-config-tabs-shell {
  border-color: rgba(255, 255, 255, 0.12);
}

.seller-config-tabs {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid #303030;
  border-radius: 999px;
  background: #141414;
  margin-bottom: 1rem;
}

.seller-config-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  color: #d5d5d5;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.seller-config-tab.active {
  color: #121212;
  background: linear-gradient(135deg, #ff9e3d, #ff6a00);
}

.seller-config-tab-panels {
  display: grid;
}

.seller-config-panel {
  display: none;
}

.seller-config-panel.active {
  display: block;
}

.seller-config-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.seller-config-section-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #333;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.seller-config-section-item input {
  width: 16px;
  height: 16px;
}

.seller-config-section-item.mandatory {
  border-color: rgba(255, 106, 0, 0.45);
  background: rgba(255, 106, 0, 0.08);
}

.seller-config-floating-save {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1800;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}

.seller-config-floating-save.hidden {
  display: none;
}

.sales-admin-table-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.seller-progress-cell {
  display: grid;
  gap: 0.28rem;
}

.seller-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.seller-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6a00, #ffd342);
}

.seller-progress-cell small {
  color: #b9b9b9;
  font-size: 0.74rem;
}

.sales-admin-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.sales-admin-main-col,
.sales-admin-side-col {
  display: grid;
  gap: 1rem;
}

.sales-admin-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.2), transparent 45%), linear-gradient(135deg, rgba(227, 6, 19, 0.1), rgba(255, 106, 0, 0.08));
  border-color: rgba(255, 106, 0, 0.28);
}

.sales-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
  padding: 0.62rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 0.9rem;
}

.table-wrap th {
  color: #d7d7d7;
  font-weight: 600;
}

.admin-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.1rem;
}

.metric-card {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.metric-grid .metric-card {
  margin-bottom: 0;
}

.overview-filters-pro {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  padding: 0.8rem;
  border: 1px solid #343434;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.07), rgba(227, 6, 19, 0.06));
}

.overview-presets {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid #3a3a3a;
  background: #171717;
}

.overview-filter-btn {
  border: 0;
  color: #ddd;
  background: transparent;
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.overview-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.overview-filter-btn.active {
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.95), rgba(255, 106, 0, 0.8));
  color: #fff;
}

.overview-custom-range {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.overview-export-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.overview-last-update {
  font-size: 0.78rem;
  color: #bfbfbf;
  padding-left: 0.3rem;
}

.overview-custom-range label {
  display: grid;
  gap: 0.25rem;
}

.overview-custom-range span {
  font-size: 0.78rem;
  color: #bcbcbc;
}

.overview-custom-range input[type=date] {
  min-width: 160px;
}

.metric-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.metric-label {
  color: var(--muted);
  margin: 0 0 0.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.metric-value {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.kpi-list > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #333;
  padding: 0.4rem 0;
}

.toolbar {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  align-items: center;
}

.form-grid {
  display: grid;
  gap: 0.6rem;
}

input, select, textarea {
  width: 100%;
  background: #1b1b1b;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #9d9d9d;
  opacity: 1;
}

input::placeholder,
textarea::placeholder {
  color: #9d9d9d;
  opacity: 1;
}

.estoque-filters-pro {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, minmax(150px, 1fr)) auto auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid #303030;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.07), rgba(227, 6, 19, 0.05));
}

.table-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.8rem;
}

.is-collapsed {
  display: none;
}

.btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.28);
}

.btn:active {
  transform: translateY(1px);
}

.btn:focus-visible,
.btn-secondary:focus-visible,
.icon-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(227, 6, 19, 0.1));
}

.btn-secondary:hover {
  border-color: rgba(255, 106, 0, 0.7);
}

.btn-danger {
  background: #c31420;
}

.btn-sm {
  padding: 0.45rem 0.75rem;
}

.icon-btn {
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(227, 6, 19, 0.1));
  color: #fff;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s ease;
}

.icon-btn:hover {
  border-color: rgba(255, 106, 0, 0.7);
  filter: brightness(1.08);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid #2c2c2c;
  padding: 0.55rem;
  text-align: left;
}

th {
  color: #bdbdbd;
  font-size: 0.82rem;
}

.stock-low {
  color: #ffb14f;
  font-weight: 700;
}

.stock-ok {
  color: #5ce28f;
  font-weight: 700;
}

.badge {
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  border: 1px solid #3e3e3e;
}

.badge.pending {
  color: #ffc65c;
  background: rgba(255, 198, 92, 0.12);
}

.badge.completed {
  color: #64dd8e;
  background: rgba(100, 221, 142, 0.12);
}

.badge.cancelled {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.12);
}

.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1600;
  padding: 1rem;
}

.admin-modal.open {
  display: flex;
}

.admin-modal-card {
  width: min(780px, 100%);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid var(--line);
  background: #101010;
  border-radius: 14px;
  padding: 1rem;
}

.admin-modal-card.fullscreen {
  width: min(1400px, 98vw);
  max-height: 96vh;
}

.seller-budget-view-modal-card {
  background: radial-gradient(circle at 0 0, rgba(255, 106, 0, 0.08), transparent 26%), radial-gradient(circle at 100% 0, rgba(227, 6, 19, 0.1), transparent 34%), #0c1018;
  border: 1px solid rgba(255, 106, 0, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

#sellerDashBudgetViewContent {
  display: block;
}

.seller-budget-view-shell {
  display: grid;
  gap: 0.9rem;
}

.seller-budget-view-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  background: linear-gradient(135deg, rgba(48, 18, 18, 0.78), rgba(28, 17, 17, 0.94));
}

.seller-budget-view-kicker {
  display: inline-flex;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 106, 0, 0.45);
  border-radius: 999px;
  color: #ffd7bd;
  padding: 0.18rem 0.55rem;
  margin-bottom: 0.45rem;
}

.seller-budget-view-head h4 {
  margin: 0;
  font-size: 1.08rem;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.03em;
}

.seller-budget-view-head p {
  margin: 0.42rem 0 0;
}

.seller-budget-view-status .badge {
  background: rgba(255, 106, 0, 0.14);
  border-color: rgba(255, 106, 0, 0.45);
}

.seller-budget-view-metrics {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seller-budget-kpi-card {
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(165deg, rgba(33, 19, 19, 0.92), rgba(15, 13, 13, 0.95));
  display: grid;
  gap: 0.3rem;
}

.seller-budget-kpi-card span {
  font-size: 0.74rem;
  color: #f5b58f;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.seller-budget-kpi-card strong {
  font-size: 1.05rem;
}

.seller-budget-view-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seller-budget-panel {
  border: 1px solid rgba(255, 106, 0, 0.18);
  border-radius: 12px;
  background: rgba(17, 13, 13, 0.9);
  padding: 0.82rem;
}

.seller-budget-panel h5 {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffc7a1;
}

.seller-budget-info-list {
  display: grid;
  gap: 0.55rem;
}

.seller-budget-info-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.42rem 0;
  border-bottom: 1px dashed rgba(255, 106, 0, 0.24);
}

.seller-budget-info-list > div:last-child {
  border-bottom: 0;
}

.seller-budget-info-list span {
  color: #d2b2a2;
  font-size: 0.84rem;
}

.seller-budget-info-list strong {
  color: #ffe6d7;
  text-align: right;
}

.seller-budget-notes-panel p {
  margin: 0;
  color: #f0d7cb;
  line-height: 1.45;
}

.seller-budget-items-table-wrap {
  border: 1px solid rgba(255, 106, 0, 0.24);
  border-radius: 10px;
  overflow: auto;
}

.seller-budget-items-table th {
  background: rgba(255, 106, 0, 0.14);
  color: #ffd4be;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.seller-budget-items-table td {
  background: rgba(16, 12, 12, 0.86);
}

.seller-budget-edit-modal-card {
  width: min(1200px, 98vw);
}

.seller-budget-edit-form {
  display: grid;
  gap: 0.9rem;
}

.seller-budget-edit-panel .form-grid.cols-2 {
  gap: 0.75rem;
}

.seller-budget-edit-panel .document-field {
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 10px;
  padding: 0.55rem;
  background: rgba(20, 14, 14, 0.65);
}

.seller-budget-edit-panel .document-label {
  color: #f5b58f;
  letter-spacing: 0.03em;
}

.seller-budget-edit-panel input,
.seller-budget-edit-panel select,
.seller-budget-edit-panel textarea {
  background: rgba(12, 10, 10, 0.95);
  border: 1px solid rgba(255, 106, 0, 0.3);
  color: #ffe6d7;
}

.seller-budget-edit-panel input:focus,
.seller-budget-edit-panel select:focus,
.seller-budget-edit-panel textarea:focus {
  border-color: rgba(255, 106, 0, 0.65);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.18);
  outline: none;
}

.seller-budget-edit-actions {
  justify-content: flex-end;
}

.seller-budget-edit-item-adders {
  border: 1px dashed rgba(255, 106, 0, 0.26);
  border-radius: 10px;
  padding: 0.7rem;
  background: rgba(14, 11, 11, 0.6);
}

.seller-budget-edit-items-summary {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  color: #f2c8ae;
}

.seller-budget-edit-total-line {
  margin-top: 0.7rem;
  border-top: 1px dashed rgba(255, 106, 0, 0.28);
  padding-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f6c7ab;
}

.seller-budget-edit-total-line strong {
  font-size: 1.08rem;
  color: #ffe7d8;
}

.pdv-fullscreen-modal-card {
  width: 100vw !important;
  max-width: 100vw !important;
  height: 100vh;
  max-height: 100vh !important;
  border-radius: 0;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
}

#pdvFullscreenModal {
  padding: 0;
  background: rgba(0, 0, 0, 0.96);
}

.pdv-fullscreen-modal-head {
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pdv-fullscreen-modal-frame {
  display: block;
  width: 100%;
  flex: 1;
  min-height: 0;
  border: 0;
  background: #080808;
  overflow: hidden;
}

#sellerDashPinSetupModal,
#sellerDashPinVerifyModal {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(7px) brightness(0.35);
}

#sellerDashPinSetupModal .admin-modal-card,
#sellerDashPinVerifyModal .admin-modal-card {
  background: #090909;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.78);
}

.stock-adjust-modal {
  border-color: #2f2f2f;
}

.stock-adjust-impact {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
}

.table-sort-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.table-sort-btn span {
  opacity: 0.9;
  font-size: 0.75rem;
}

.stock-adjust-impact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.product-view-modal {
  width: min(1000px, 98vw);
}

.product-view-layout {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-view-media {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.product-view-image-wrap {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  overflow: hidden;
  background: #131313;
  position: relative;
}

.product-view-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.18s ease;
}

.product-view-image.is-zoomable {
  cursor: zoom-in;
}

.product-view-content {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  min-width: 0;
}

.product-view-image-controls {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0.55rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.product-view-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.product-view-thumb {
  border: 1px solid #2f2f2f;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background: #121212;
  cursor: pointer;
}

.product-view-thumb.active {
  border-color: #e30613;
  box-shadow: 0 0 0 1px rgba(227, 6, 19, 0.45);
}

.product-view-thumb img {
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-view-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-view-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.product-view-prices strong {
  display: block;
  margin-top: 0.2rem;
}

.product-view-description {
  border: 1px solid #2f2f2f;
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
}

.product-view-description h4 {
  margin: 0 0 0.35rem 0;
  font-size: 0.92rem;
}

.product-view-description p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.45;
}

.product-view-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .product-view-layout {
    grid-template-columns: 1fr;
  }
  .product-view-prices,
  .product-view-meta {
    grid-template-columns: 1fr;
  }
}
.modal-product-pro {
  width: min(1100px, 98vw);
}

.product-modal-intro {
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  margin: 0.2rem 0 0.9rem;
  background: rgba(255, 255, 255, 0.02);
}

.product-modal-intro strong {
  display: block;
  margin-bottom: 0.2rem;
}

.product-modal-intro p {
  margin: 0;
}

.product-form-pro .form-section {
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 0.9rem;
  margin: 0;
}

.product-form-pro .form-section legend {
  color: #f1f1f1;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 0.25rem;
}

.product-form-pro .form-help {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.field-block {
  display: grid;
  gap: 0.35rem;
}

.field-block span {
  font-size: 0.8rem;
  color: #cfcfcf;
}

.field-block input.field-invalid,
.field-block textarea.field-invalid,
.field-block select.field-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.18);
}

.field-block.full {
  grid-column: 1/-1;
}

.product-modal-actions {
  justify-content: flex-end;
  margin-top: 0.2rem;
}

.product-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.product-channel-card {
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(227, 6, 19, 0.05));
  display: grid;
  gap: 0.35rem;
}

.product-channel-card small {
  margin-left: 2.7rem;
}

.category-modal-pro {
  width: min(760px, 96vw);
}

.category-modal-intro {
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  margin: 0.25rem 0 0.8rem;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(227, 6, 19, 0.06));
}

.category-modal-intro strong {
  display: block;
  margin-bottom: 0.2rem;
}

.category-modal-intro p {
  margin: 0;
}

.category-form-grid {
  gap: 0.75rem;
}

.category-status-card {
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(227, 6, 19, 0.08));
  display: grid;
  gap: 0.45rem;
  align-content: center;
}

.category-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.category-status-head strong {
  font-size: 0.88rem;
}

.category-status-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.category-status-toggle input {
  margin: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-status-switch {
  width: 56px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a2a2a, #1b1b1b);
  border: 1px solid #3f3f3f;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.35);
}

.category-status-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0f0f0, #cfcfcf);
  border: 1px solid #9a9a9a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.category-status-switch::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: transparent;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}

.category-status-toggle input:checked + .category-status-switch {
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-color: rgba(255, 106, 0, 0.7);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 106, 0, 0.18);
}

.category-status-toggle input:checked + .category-status-switch::after {
  transform: translateX(26px);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22), 0 2px 6px rgba(0, 0, 0, 0.45);
}

.category-status-toggle input:focus-visible + .category-status-switch {
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.35), inset 0 2px 5px rgba(0, 0, 0, 0.35);
}

.category-modal-actions {
  justify-content: flex-end;
  margin-top: 0.2rem;
}

.product-pricing-assist {
  margin-top: 0.7rem;
  border: 1px solid #2d3e2f;
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(92, 226, 143, 0.08);
}

.product-pricing-assist.has-error {
  border-color: #5a2d30;
  background: rgba(255, 107, 107, 0.08);
}

.product-pricing-assist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.product-pricing-assist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.55rem;
}

.product-pricing-assist-grid span {
  display: grid;
  gap: 0.2rem;
}

.product-pricing-assist-note {
  margin: 0.6rem 0 0;
}

.product-pricing-assist-errors {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: #ff9a9a;
}

.product-manual-modal {
  width: min(1320px, 98vw);
}

.product-manual-content {
  display: grid;
  gap: 0.85rem;
  padding-right: 0.2rem;
}

.product-manual-cover {
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  padding: 1rem;
  background: radial-gradient(circle at 10% 0%, rgba(227, 6, 19, 0.18), rgba(227, 6, 19, 0) 42%), rgba(255, 255, 255, 0.02);
}

.product-manual-cover h4 {
  margin: 0;
  font-size: 1.08rem;
}

.product-manual-cover p {
  margin: 0.35rem 0 0;
}

.product-manual-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.product-manual-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.product-manual-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.82rem;
  border: 1px solid #393939;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
}

.product-manual-nav a:hover {
  border-color: #e30613;
  background: rgba(227, 6, 19, 0.15);
}

.product-manual-block {
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.product-manual-block h4,
.product-manual-block h5 {
  margin: 0 0 0.45rem;
  color: #f5f5f5;
}

.product-manual-block p,
.product-manual-block ul,
.product-manual-block ol {
  margin: 0.35rem 0 0;
}

.product-manual-block ul,
.product-manual-block ol {
  padding-left: 1.1rem;
}

.product-manual-pricing {
  border-color: #2f3b2f;
  background: rgba(92, 226, 143, 0.05);
}

.product-manual-equation {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding: 0.55rem 0.65rem;
  border: 1px dashed #3e5340;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.product-manual-table-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px;
  gap: 0.6rem;
  margin: 0.65rem 0;
}

.intel-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) 180px 170px 170px;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.intel-modal-fixed {
  height: min(86vh, 860px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.category-table-modal-fixed {
  height: min(86vh, 860px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
}

.intel-modal-fixed #intelTableWrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.intel-modal-fixed #intelPagination {
  margin-top: 0.6rem;
}

.category-table-modal-fixed #categoriasTableWrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.category-table-modal-fixed #catTablePagination {
  margin-top: 0.6rem;
}

@media (max-width: 900px) {
  .product-manual-table-filters {
    grid-template-columns: 1fr;
  }
  .intel-filters {
    grid-template-columns: 1fr;
  }
  .intel-modal-fixed {
    min-height: auto;
    height: 90vh;
  }
  .category-table-modal-fixed {
    min-height: auto;
    height: 90vh;
  }
  .product-channel-grid {
    grid-template-columns: 1fr;
  }
  .product-channel-card small {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .product-pricing-assist-grid {
    grid-template-columns: 1fr;
  }
}
.form-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.upload-preview img {
  width: 100%;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  border: 1px solid #2e2e2e;
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.product-thumb {
  width: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #333;
}

.admin-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.admin-toast {
  position: fixed;
  left: 50%;
  top: 16px;
  background: #101010;
  border: 1px solid rgba(255, 106, 0, 0.45);
  border-radius: 10px;
  padding: 0.62rem 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: all 0.2s ease;
  z-index: 1700;
  min-width: 280px;
  text-align: center;
}

.admin-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.muted {
  color: var(--muted);
}

.checkbox-inline {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 1080px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sales-admin-chart-grid {
    grid-template-columns: 1fr;
  }
  .sales-admin-table-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .seller-budget-view-head {
    flex-direction: column;
    align-items: stretch;
  }
  .seller-budget-view-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seller-budget-view-grid {
    grid-template-columns: 1fr;
  }
  .admin-body-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: none;
    position: fixed;
    inset: 68px 0 auto 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    z-index: 55;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  }
  .admin-sidebar.open {
    display: block;
  }
  .admin-main {
    padding: 0.85rem;
  }
  .admin-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(10px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: min(95vw, 720px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.42rem;
    padding: 0.42rem;
    border-radius: 17px;
    border: 1px solid rgba(255, 106, 0, 0.36);
    background: radial-gradient(circle at top right, rgba(255, 106, 0, 0.22), transparent 48%), rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    z-index: 70;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  }
  .admin-bottom-link {
    min-height: 56px;
    border-radius: 12px;
    color: #d4d4d4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 0.62rem;
    font-weight: 700;
  }
  .admin-bottom-link i {
    font-size: 0.95rem;
  }
  .admin-bottom-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.95), rgba(255, 106, 0, 0.79));
  }
}
@media (max-width: 680px) {
  .seller-budget-view-metrics {
    grid-template-columns: 1fr;
  }
  .metric-grid, .split-grid {
    grid-template-columns: 1fr;
  }
  .sales-admin-grid {
    grid-template-columns: 1fr;
  }
  .sales-admin-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .sales-admin-kpi-grid {
    grid-template-columns: 1fr;
  }
  .sales-admin-chart-grid {
    grid-template-columns: 1fr;
  }
  .sales-admin-table-grid {
    grid-template-columns: 1fr;
  }
  .sales-admin-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .sales-admin-header-actions {
    width: 100%;
    min-width: 0;
  }
  .sales-intro-actions {
    justify-items: start;
    width: 100%;
  }
  .sales-intro-top-seller {
    justify-items: start;
    width: 100%;
  }
  .admin-page-intro {
    padding: 0.9rem;
  }
  .section-head-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .metric-grid {
    gap: 0.9rem;
  }
  .admin-card {
    margin-bottom: 0.9rem;
  }
  .overview-filters-pro {
    padding: 0.65rem;
  }
  .overview-presets {
    width: 100%;
    justify-content: space-between;
  }
  .overview-custom-range {
    width: 100%;
  }
  .overview-custom-range label {
    flex: 1 1 46%;
  }
  .overview-custom-range input[type=date] {
    min-width: 0;
    width: 100%;
  }
  .overview-export-actions {
    width: 100%;
  }
  .form-grid.cols-2, .form-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .estoque-filters-pro {
    grid-template-columns: 1fr;
  }
  .table-pagination {
    justify-content: space-between;
  }
  .admin-topbar {
    height: 62px;
    padding: 0 0.75rem;
  }
  .admin-brand-logo {
    width: 32px;
    height: 32px;
  }
  .admin-logo {
    font-size: 1rem;
  }
  .admin-user {
    font-size: 0.76rem;
  }
  .admin-topbar-right .btn {
    padding: 0.4rem 0.6rem;
  }
  .admin-bottom-nav {
    width: calc(100vw - 14px);
    gap: 0.3rem;
    bottom: calc(8px + env(safe-area-inset-bottom));
  }
}
.admin-login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

.admin-login-container {
  width: 100%;
  max-width: 420px;
  background: rgba(20, 20, 20, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 1.4rem;
}

.admin-login-logo {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.7rem;
  font: 800 1.8rem "Orbitron", monospace;
  background: linear-gradient(135deg, #e30613, #ff6a00);
}

.admin-login-header h1 {
  margin: 0;
}

.admin-login-header p {
  color: var(--muted);
  margin: 0.3rem 0 0;
}

.admin-login-form {
  display: grid;
  gap: 0.8rem;
}

.btn-login {
  width: 100%;
  justify-content: center;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-label {
  color: #cfcfcf;
  font-size: 0.82rem;
}

.alert {
  border-left: 4px solid var(--red);
  background: rgba(227, 6, 19, 0.14);
  color: #ff8d8d;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.9rem;
}

.login-feedback,
.admin-login-footer {
  color: var(--muted);
  text-align: center;
}

.admin-login-footer {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 0.8rem;
  font-size: 0.8rem;
}
