/* src/styles/tokens.css */
:root {
  --brand-50: #eef3fd;
  --brand-100: #d9e4fa;
  --brand-500: #2653c5;
  --brand-600: #1e44a6;
  --brand-700: #183783;
  --accent-500: #f7941d;
  --accent-600: #e07f0a;
  --accent-soft: #fef3e2;
  --bg: #f3f5f9;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e4e8f0;
  --border-strong: #d3d9e4;
  --text: #17203a;
  --text-2: #5a6478;
  --text-3: #8a93a8;
  --text-on-brand: #ffffff;
  --hot: #e11d2e;
  --hot-soft: #fdeaec;
  --ok: #16a34a;
  --ok-soft: #e8f7ee;
  --warn: #e07f0a;
  --warn-soft: #fdf2e0;
  --info: #2563eb;
  --info-soft: #e8effd;
  --neutral: #64748b;
  --neutral-soft: #eef1f5;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow-1: 0 1px 2px rgba(23, 32, 58, .05), 0 1px 3px rgba(23, 32, 58, .06);
  --shadow-2: 0 4px 14px rgba(23, 32, 58, .08);
  --shadow-3: 0 10px 30px rgba(23, 32, 58, .14);
  --sidebar-bg: #101a33;
  --sidebar-text: #aeb9d2;
  --sidebar-text-active: #ffffff;
  --sidebar-hover: rgba(255, 255, 255, .06);
  --sidebar-active: rgba(247, 148, 29, .14);
  --sidebar-border: rgba(255, 255, 255, .08);
  --sidebar-width: 264px;
  --font:
    "Segoe UI",
    system-ui,
    -apple-system,
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}
:root[data-theme=dark] {
  --bg: #0d1220;
  --surface: #161d30;
  --surface-2: #1b2338;
  --border: #262f48;
  --border-strong: #333d5a;
  --text: #e6eaf4;
  --text-2: #a3adc4;
  --text-3: #6d7893;
  --brand-50: #1a2440;
  --brand-100: #21305a;
  --brand-500: #5c85f2;
  --brand-600: #4a72e0;
  --brand-700: #3a5fc4;
  --accent-soft: #33270f;
  --hot-soft: #38151a;
  --ok-soft: #10291a;
  --warn-soft: #33250e;
  --info-soft: #16223d;
  --neutral-soft: #222a3f;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, .3);
  --shadow-2: 0 4px 14px rgba(0, 0, 0, .35);
  --shadow-3: 0 10px 30px rgba(0, 0, 0, .5);
  --sidebar-bg: #0b1122;
  --sidebar-border: rgba(255, 255, 255, .06);
}

/* src/styles/base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
input,
select {
  font: inherit;
  color: inherit;
}
.icon {
  flex: none;
  display: block;
}
.muted {
  color: var(--text-3);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-track {
  background: transparent;
}
:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}
body,
.card,
.sidebar,
.header,
.input,
.chip,
.btn {
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease;
}

/* src/styles/layout.css */
.shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.sidebar {
  width: var(--sidebar-width);
  flex: none;
  display: flex;
  flex-direction: column;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  transition: width .22s ease, margin-left .22s ease;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--sidebar-border);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      var(--accent-500),
      #fbb03b);
  color: #fff;
  box-shadow: 0 4px 10px rgba(247, 148, 29, .35);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-text b {
  color: #fff;
  font-size: 17px;
  letter-spacing: .12em;
}
.brand-sub {
  font-size: 11px;
  color: var(--sidebar-text);
}
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 12px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .15);
  background-clip: content-box;
}
.nav-group {
  margin-bottom: 6px;
}
.nav-group-title {
  padding: 12px 10px 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(174, 185, 210, .55);
  white-space: nowrap;
  overflow: hidden;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8.5px 10px;
  margin: 1px 0;
  border-radius: 9px;
  font-size: 13.5px;
  color: var(--sidebar-text);
  white-space: nowrap;
  overflow: hidden;
  transition: background .15s ease, color .15s ease;
}
.nav-item:hover {
  background: var(--sidebar-hover);
  color: #fff;
}
.nav-item.active {
  background: var(--sidebar-active);
  color: var(--sidebar-text-active);
  box-shadow: inset 2.5px 0 0 var(--accent-500);
  font-weight: 600;
}
.nav-item.active .icon {
  color: var(--accent-500);
}
.nav-label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-footer {
  padding: 12px;
  border-top: 1px solid var(--sidebar-border);
}
.nav-portal {
  color: #ffc880;
}
.nav-portal:hover {
  background: var(--sidebar-hover);
  color: #ffd9a8;
}
.sidebar-collapsed .sidebar {
  width: 68px;
}
.sidebar-collapsed .brand-text,
.sidebar-collapsed .nav-label,
.sidebar-collapsed .nav-group-title {
  display: none;
}
.sidebar-collapsed .nav-item {
  justify-content: center;
  padding: 10px;
}
.sidebar-collapsed .sidebar-brand {
  justify-content: center;
  padding: 18px 10px 14px;
}
.shell-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  flex: none;
  padding: 0 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.header-titles {
  min-width: 0;
}
.header-title {
  font-size: 16px;
  font-weight: 700;
}
.header-subtitle {
  font-size: 11.5px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 44vw;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.header-sep {
  width: 1px;
  height: 26px;
  background: var(--border);
  margin: 0 4px;
}
.profile-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 6px;
  margin-left: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.profile-chip:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-1);
}
.avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      var(--brand-500),
      var(--brand-700));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.profile-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.profile-name {
  font-size: 12.5px;
  font-weight: 600;
}
.profile-role {
  font-size: 10.5px;
  color: var(--accent-600);
  font-weight: 600;
}
.content {
  flex: 1;
  overflow-y: auto;
  padding: 22px;
}
.page {
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .header .btn span {
    display: none;
  }
  .profile-meta {
    display: none;
  }
}

/* src/styles/components.css */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8.5px 15px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    background .15s ease,
    border-color .15s ease,
    box-shadow .15s ease,
    transform .05s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn.sm {
  padding: 6.5px 12px;
  font-size: 12.5px;
}
.btn-primary {
  background: var(--brand-600);
  color: var(--text-on-brand);
  box-shadow: 0 2px 8px rgba(30, 68, 166, .3);
}
.btn-primary:hover {
  background: var(--brand-700);
}
.btn-outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--surface);
}
.btn-outline:hover {
  border-color: var(--brand-500);
  color: var(--brand-500);
}
.btn-ghost {
  color: var(--text-2);
}
.btn-ghost:hover {
  background: var(--neutral-soft);
  color: var(--text);
}
.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--text-2);
  border: 1px solid transparent;
  transition:
    background .15s ease,
    color .15s ease,
    border-color .15s ease;
}
.icon-btn:hover {
  background: var(--neutral-soft);
  color: var(--text);
}
.icon-btn.sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.icon-btn.has-dot::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hot);
  border: 2px solid var(--surface);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 10px;
}
.card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.card-title .icon {
  color: var(--brand-500);
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6.5px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--surface);
  transition: all .15s ease;
}
.chip:hover {
  border-color: var(--brand-500);
  color: var(--brand-500);
}
.chip.active {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  box-shadow: 0 2px 6px rgba(30, 68, 166, .3);
}
.chip-select {
  background: var(--surface-2);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4.5px 10px;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow-1);
}
.badge-hot {
  background: var(--hot);
}
.badge-contract {
  background: var(--ok);
}
.badge-deposit {
  background: var(--warn);
}
.badge-archive {
  background: var(--neutral);
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-500);
  font-size: 12px;
  font-weight: 700;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.field-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-3);
}
.input {
  width: 100%;
  padding: 8.5px 11px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 13.5px;
  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}
.input:hover {
  border-color: var(--border-strong);
}
.input:focus {
  outline: none;
  border-color: var(--brand-500);
  background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-500) 18%, transparent);
}
.select {
  appearance: none;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--text-3) 50%),
    linear-gradient(
      135deg,
      var(--text-3) 50%,
      transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 11px) 55%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}
.range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 56px 20px;
  color: var(--text-3);
  text-align: center;
}
.empty-state p {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
}
.empty-state.big {
  padding: 96px 20px;
}
.empty-state.big h2 {
  color: var(--text);
  font-size: 20px;
}
.empty-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: var(--brand-50);
  color: var(--brand-500);
  margin-bottom: 6px;
}

/* src/styles/pages.css */
.quick-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  text-align: left;
  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    transform .12s ease;
}
.quick-card:hover {
  border-color: var(--brand-500);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.quick-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand-500);
}
.quick-label {
  font-size: 13px;
  font-weight: 700;
  flex: 1;
}
.quick-count {
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-600);
  font-size: 12.5px;
  font-weight: 800;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 16px;
  align-items: start;
}
.dashboard-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.analytics {
  overflow: hidden;
}
.land-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 16px 12px;
  padding: 11px 16px;
  border-radius: 10px;
  background:
    linear-gradient(
      120deg,
      var(--accent-500),
      #fbb03b);
  color: #fff;
}
.land-title {
  font-size: 13px;
  font-weight: 700;
}
.land-value {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}
.price-block {
  padding: 0 16px 14px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  text-align: left;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.price-table th:first-child {
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 13px;
  border-radius: 8px 0 0 0;
}
.pt-note {
  color: var(--text-3);
  font-weight: 500;
  font-size: 11px;
}
.price-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-size: 13px;
}
.price-table td.pt-seg {
  color: var(--text-2);
}
.price-table td.pt-val {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.actions-card {
  padding: 6px;
}
.action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  transition: background .15s ease;
}
.action-row:hover {
  background: var(--surface-2);
}
.action-row .icon:first-child {
  color: var(--accent-600);
}
.action-row span {
  flex: 1;
}
.action-row .icon:last-child {
  color: var(--text-3);
}
.action-row + .action-row {
  border-top: 1px solid var(--border);
  border-radius: 0 0 9px 9px;
}
.task-list {
  padding: 2px 16px 14px;
}
.task-item {
  display: flex;
  gap: 12px;
  position: relative;
}
.task-time {
  width: 42px;
  flex: none;
  padding-top: 1px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.task-rail {
  width: 10px;
  flex: none;
  position: relative;
}
.task-rail::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-500) 20%, transparent);
}
.task-item.task-call .task-rail::before {
  background: var(--ok);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 20%, transparent);
}
.task-item.task-docs .task-rail::before {
  background: var(--warn);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--warn) 20%, transparent);
}
.task-item.task-showing .task-rail::before {
  background: var(--accent-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-500) 22%, transparent);
}
.task-item:not(:last-child) .task-rail::after {
  content: "";
  position: absolute;
  left: 7.5px;
  top: 17px;
  bottom: -4px;
  width: 1.5px;
  background: var(--border);
}
.task-body {
  display: flex;
  flex-direction: column;
  padding-bottom: 14px;
  min-width: 0;
}
.task-title {
  font-size: 13px;
  font-weight: 600;
}
.task-note {
  font-size: 12px;
  color: var(--text-3);
}
.cal-month {
  text-transform: capitalize;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 4px 12px 14px;
}
.cal-dow {
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-3);
  padding: 4px 0;
}
.cal-cell {
  position: relative;
  display: grid;
  place-items: center;
  height: 34px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  cursor: pointer;
  transition: background .12s ease;
}
.cal-cell:hover:not(.empty) {
  background: var(--surface-2);
}
.cal-cell.today {
  background: var(--brand-600);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(30, 68, 166, .35);
}
.cal-dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: var(--accent-500);
}
.cal-cell.today .cal-dot {
  background: #fff;
}
.cat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.cat-tab {
  padding: 8.5px 17px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .15s ease;
}
.cat-tab:hover {
  border-color: var(--brand-500);
  color: var(--brand-500);
}
.cat-tab.active {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
  box-shadow: 0 3px 10px rgba(30, 68, 166, .35);
}
.filters {
  padding: 16px;
  margin-bottom: 12px;
}
.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px 14px;
  align-items: end;
}
.filters-buttons {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}
.chips-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.sort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sort-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sort-btn {
  padding: 6.5px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
}
.sort-btn:hover {
  color: var(--text);
  background: var(--neutral-soft);
}
.sort-btn.active {
  background: var(--surface);
  border-color: var(--brand-500);
  color: var(--brand-500);
  box-shadow: var(--shadow-1);
}
.sort-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.found-label {
  font-size: 13px;
  color: var(--text-2);
}
.found-label b {
  color: var(--text);
}
.objects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 16px;
}
.object-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition:
    box-shadow .18s ease,
    transform .18s ease,
    border-color .18s ease;
}
.object-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.object-card.archived {
  opacity: .62;
}
.object-card.archived:hover {
  opacity: .85;
}
.card-media {
  position: relative;
  height: 168px;
  background:
    radial-gradient(
      ellipse 120% 90% at 30% 0%,
      color-mix(in srgb, var(--brand-500) 9%, transparent),
      transparent),
    var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.card-media .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.media-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--text-3);
  opacity: .75;
}
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(4px);
  color: var(--text-2);
  box-shadow: var(--shadow-1);
  transition: color .15s ease, transform .12s ease;
}
.fav-btn:hover {
  transform: scale(1.08);
  color: var(--hot);
}
.fav-btn.active {
  color: var(--hot);
}
.fav-btn.active .icon {
  fill: var(--hot);
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 15px 13px;
}
.obj-title {
  font-size: 15px;
  font-weight: 700;
}
.obj-addr {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-3);
}
.obj-addr .icon {
  color: var(--text-3);
  flex: none;
}
.obj-addr span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.obj-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.obj-price {
  font-size: 17.5px;
  font-weight: 800;
  color: var(--brand-500);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.obj-price-m2 {
  font-size: 12px;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}
.obj-props {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
}
.obj-prop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-2);
}
.obj-prop .icon {
  color: var(--text-3);
}
.obj-actions {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding-top: 3px;
}
.obj-action {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-2);
  background: var(--surface-2);
  transition: all .13s ease;
}
.obj-action:hover {
  border-color: var(--brand-500);
  color: var(--brand-500);
  background: var(--brand-50);
}
.obj-footer {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.agent-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  flex: none;
}
.obj-agent {
  font-weight: 600;
  color: var(--text-2);
}
.obj-district {
  margin-left: auto;
  color: var(--text-3);
}
@media (max-width: 1280px) {
  .quick-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .filters-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}
@media (max-width: 820px) {
  .quick-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content {
    padding: 14px;
  }
}

/* src/styles/portal.css */
.p-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.p-content {
  flex: 1;
}
.p-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 22px 48px;
}
.blk {
  margin-bottom: 22px;
}
.p-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.p-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  height: 58px;
}
.p-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  flex: none;
}
.p-brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.p-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.p-nav::-webkit-scrollbar {
  display: none;
}
.p-nav-link {
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  transition: background .13s ease, color .13s ease;
}
.p-nav-link:hover {
  background: var(--neutral-soft);
  color: var(--text);
}
.p-nav-link.active {
  background: var(--accent-soft);
  color: var(--accent-600);
}
.p-topbar-right {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: none;
}
.lang-switch {
  display: flex;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  overflow: hidden;
}
.lang-btn {
  padding: 5.5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  transition: all .13s ease;
}
.lang-btn.active {
  background: var(--brand-600);
  color: #fff;
}
.hero-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.hero-brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark.lg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}
.hero-brand-names {
  display: flex;
  flex-direction: column;
}
.hero-brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .01em;
}
.hero-brand-sub {
  font-size: 12px;
  color: var(--text-3);
}
.hero-tagline {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--accent-600);
  padding: 8px 14px;
  background: var(--accent-soft);
  border-radius: 9px;
}
.hero-slogan {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-600);
  margin-left: auto;
}
.action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.deal-tabs {
  display: flex;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--accent-600);
  box-shadow: var(--shadow-1);
}
.deal-tab {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  background: var(--surface);
  color: var(--accent-600);
  transition: all .13s ease;
}
.deal-tab + .deal-tab {
  border-left: 1px solid var(--accent-600);
}
.deal-tab:hover {
  background: var(--accent-soft);
}
.deal-tab.active {
  background: var(--accent-500);
  color: #fff;
}
.action-mid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-accent {
  background: var(--accent-500);
  color: #fff;
  box-shadow: 0 3px 10px rgba(247, 148, 29, .4);
}
.btn-accent:hover {
  background: var(--accent-600);
}
.btn-accent.lg {
  padding: 11px 22px;
  font-size: 14px;
  margin-left: auto;
}
.btn-dark {
  background: #1a2233;
  color: #fff;
}
.btn-dark:hover {
  background: #2a3550;
}
.btn-on-accent {
  background: rgba(255, 255, 255, .92);
  color: var(--accent-600);
  font-weight: 700;
}
.btn-on-accent:hover {
  background: #fff;
}
.w100 {
  width: 100%;
  justify-content: center;
}
.search-panel {
  padding: 16px;
}
.search-panel .cat-tabs {
  margin-bottom: 16px;
}
.search-panel .chips-row {
  margin: 14px 0 0;
}
.banner-accent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      115deg,
      var(--accent-500),
      #fbb03b);
  color: #fff;
  box-shadow: 0 6px 18px rgba(247, 148, 29, .35);
}
.banner-accent-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16.5px;
  font-weight: 800;
}
.rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.rail-title {
  font-size: 17px;
  font-weight: 800;
}
.rail-more {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 16px;
  font-weight: 800;
  transition: all .13s ease;
}
.rail-more:hover {
  background: var(--brand-600);
  color: #fff;
}
.rail-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 13px;
}
.p-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow .16s ease, transform .16s ease;
}
.p-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.p-card-media {
  position: relative;
  height: 120px;
  background:
    radial-gradient(
      ellipse 120% 90% at 30% 0%,
      color-mix(in srgb, var(--brand-500) 8%, transparent),
      transparent),
    var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.p-card-media .badge {
  position: absolute;
  top: 9px;
  left: 9px;
  font-size: 10.5px;
  padding: 3.5px 8px;
}
.p-card-media .fav-btn {
  width: 28px;
  height: 28px;
  top: 7px;
  right: 7px;
  border-radius: 8px;
}
.p-card-body {
  padding: 11px 13px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-card-title {
  font-size: 13.5px;
  font-weight: 700;
}
.p-card-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-500);
  font-variant-numeric: tabular-nums;
}
.p-card-meta {
  font-size: 11.5px;
  color: var(--text-3);
}
.qr-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}
.qr-box {
  display: grid;
  grid-template-columns: repeat(8, 7px);
  grid-auto-rows: 7px;
  gap: 1.5px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  flex: none;
}
.qr-cell {
  background: #e9edf3;
  border-radius: 1px;
}
.qr-cell.on {
  background: #17203a;
}
.qr-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
}
.page-header-blk {
  padding: 26px 0 2px;
}
.page-header-blk h1 {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.page-header-blk p {
  margin-top: 6px;
  font-size: 14.5px;
}
.text-section h2,
.feature-cards h2,
.steps-section h2 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}
.text-section p {
  margin: 0 0 10px;
  max-width: 860px;
  color: var(--text-2);
  font-size: 14.5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 13px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-600);
}
.feature-card b {
  font-size: 14px;
}
.feature-card p {
  font-size: 12.5px;
  line-height: 1.5;
}
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.step-text {
  font-size: 13.5px;
  color: var(--text-2);
  padding-top: 4px;
}
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      115deg,
      var(--brand-600),
      var(--brand-700));
  color: #fff;
  box-shadow: 0 6px 18px rgba(30, 68, 166, .3);
}
.cta-title {
  font-size: 17px;
  font-weight: 800;
}
.login-blk {
  display: flex;
  justify-content: center;
  padding: 10px 0 30px;
}
.login-card {
  width: 100%;
  max-width: 420px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.login-tabs {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.login-tab {
  flex: 1;
  padding: 9px 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-2);
  background: var(--surface-2);
}
.login-tab.active {
  background: var(--brand-600);
  color: #fff;
}
.login-hints {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.login-hint {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-3);
}
.login-forgot {
  font-size: 12.5px;
  color: var(--brand-500);
  align-self: flex-end;
}
.login-or {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 12px;
}
.login-or::before,
.login-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.reg-note {
  margin-bottom: 12px;
}
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.role-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.role-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
}
.role-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand-600);
}
.role-part {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.role-part-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-3);
}
.role-part p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.role-card .btn {
  margin-top: auto;
}
.p-footer {
  margin-top: 30px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
}
.p-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding: 32px 22px 22px;
}
.p-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}
.p-footer-col b {
  color: #fff;
  font-size: 13px;
}
.p-footer-col a {
  color: var(--sidebar-text);
}
.p-footer-col a:hover {
  color: #fff;
}
.p-footer .p-brand b {
  color: #fff;
}
.p-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 22px;
  border-top: 1px solid var(--sidebar-border);
  font-size: 12px;
  color: rgba(174, 185, 210, .6);
}
@media (max-width: 900px) {
  .p-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slogan {
    margin-left: 0;
  }
  .btn-accent.lg {
    margin-left: 0;
  }
}

/* src/styles/admin.css */
.admin-page {
  max-width: 1500px;
}
.adm-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  margin-bottom: 16px;
}
.adm-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.adm-title {
  font-size: 15px;
}
.adm-page-select {
  width: 260px;
}
.adm-toolbar-right {
  display: flex;
  gap: 8px;
}
.adm-status {
  font-size: 12px;
  color: var(--text-3);
}
.adm-status.dirty {
  color: var(--warn);
  font-weight: 700;
}
.adm-grid {
  display: grid;
  grid-template-columns: 340px 300px 1fr;
  gap: 14px;
  align-items: start;
}
.adm-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 9px;
}
.adm-blocks,
.adm-library,
.adm-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px;
  box-shadow: var(--shadow-1);
}
.adm-blocks {
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.adm-library {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.adm-block-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 7px;
  background: var(--surface-2);
  transition: border-color .13s ease;
}
.adm-block-card.open {
  border-color: var(--brand-500);
  background: var(--surface);
}
.adm-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 11px;
  font-size: 13px;
}
.adm-block-tools {
  display: flex;
  gap: 2px;
}
.adm-block-tools .icon-btn[disabled] {
  opacity: .3;
  pointer-events: none;
}
.rot90 svg {
  transform: rotate(90deg);
}
.adm-props {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 4px 11px 12px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
  padding-top: 10px;
}
.adm-props textarea.input {
  resize: vertical;
  min-height: 64px;
  font-size: 12.5px;
}
.adm-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.adm-toggle {
  accent-color: var(--brand-600);
  width: 16px;
  height: 16px;
}
.adm-lib-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-600);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 12px 0 6px;
}
.adm-lib-cat:first-of-type {
  margin-top: 2px;
}
.adm-lib-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: 6px;
  transition: border-color .13s ease;
}
.adm-lib-item:hover {
  border-color: var(--brand-500);
}
.adm-lib-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.adm-lib-meta b {
  font-size: 12.5px;
}
.adm-lib-desc {
  font-size: 11px;
  color: var(--text-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.icon-btn.add {
  border: 1px solid var(--border-strong);
  flex: none;
}
.icon-btn.add:hover {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}
.adm-preview {
  overflow: hidden;
}
.adm-preview-frame {
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  padding: 14px;
  background: var(--bg);
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  zoom: 0.72;
}
.adm-preview-frame [data-block] {
  outline: 1px dashed color-mix(in srgb, var(--brand-500) 35%, transparent);
  outline-offset: 3px;
}
.block-error {
  padding: 10px 14px;
  background: var(--hot-soft);
  color: var(--hot);
  border-radius: 8px;
  font-size: 13px;
}
@media (max-width: 1200px) {
  .adm-grid {
    grid-template-columns: 1fr 1fr;
  }
  .adm-preview {
    grid-column: 1 / -1;
  }
}

/* src/styles/responsive.css */
.p-burger {
  display: none;
}
@media (max-width: 920px) {
  .p-burger {
    display: grid;
  }
  .p-topbar-inner {
    height: 54px;
    gap: 10px;
    padding: 0 14px;
  }
  .p-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 54px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-2);
    padding: 8px 10px 12px;
    gap: 2px;
    z-index: 60;
  }
  .p-topbar.nav-open .p-nav {
    display: flex;
  }
  .p-nav-link {
    padding: 11px 12px;
    font-size: 14px;
  }
  .hide-m {
    display: none;
  }
  .p-page {
    padding: 14px 14px 40px;
  }
  .hero-brand {
    padding: 16px;
    gap: 12px;
  }
  .hero-slogan {
    margin-left: 0;
    font-size: 14px;
  }
  .deal-tab {
    padding: 9px 14px;
    font-size: 13px;
    flex: 1;
    text-align: center;
  }
  .deal-tabs {
    width: 100%;
  }
  .btn-accent.lg {
    width: 100%;
    justify-content: center;
  }
  .action-mid {
    width: 100%;
  }
  .action-mid .btn {
    flex: 1;
    justify-content: center;
  }
  .filters-grid {
    grid-template-columns: 1fr 1fr;
  }
  .filters-buttons {
    grid-column: 1 / -1;
  }
  .filters-buttons .btn {
    flex: 1;
    justify-content: center;
  }
  .rail-track {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 9px;
  }
  .p-card-media {
    height: 96px;
  }
  .banner-accent {
    padding: 14px 16px;
  }
  .banner-accent .btn {
    width: 100%;
    justify-content: center;
  }
  .qr-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-header-blk h1 {
    font-size: 22px;
  }
  .roles-grid {
    grid-template-columns: 1fr;
  }
  .p-footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 16px 16px;
  }
  .content {
    padding: 12px;
  }
  .header {
    padding: 0 12px;
    gap: 8px;
  }
  .header-subtitle {
    display: none;
  }
  .header .btn {
    padding: 8px 10px;
  }
  .quick-row {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .objects-grid {
    grid-template-columns: 1fr;
  }
  .sort-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .shell:not(.sidebar-collapsed) .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    box-shadow: 0 0 0 100vmax rgba(10, 15, 30, .45);
  }
  .adm-grid {
    grid-template-columns: 1fr;
  }
  .adm-blocks,
  .adm-library {
    position: static;
    max-height: none;
  }
}
@media (max-width: 520px) {
  .quick-row {
    grid-template-columns: 1fr;
  }
  .filters-grid {
    grid-template-columns: 1fr;
  }
  .cat-tab {
    padding: 7px 12px;
    font-size: 12.5px;
  }
  .p-topbar-right .btn {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* src/styles/index.css */
