:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #68746e;
  --soft: #f5f3ed;
  --paper: #ffffff;
  --line: #dedbd1;
  --line-strong: #c9c4b8;
  --forest: #174f43;
  --forest-2: #0f6b58;
  --teal: #d7eee7;
  --blue: #dce8fa;
  --rose: #f6dddd;
  --gold: #f5cf78;
  --amber: #8b5b0e;
  --shadow: 0 20px 50px rgba(41, 38, 30, 0.11);
  --radius: 8px;
  --sidebar: 268px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--soft);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 18px;
  background: #102821;
  color: #eff8f4;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #f5cf78;
  color: #14241f;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 3px;
  color: #b9c9c2;
  font-size: 0.78rem;
}

.nav-list {
  display: grid;
  gap: 8px;
}

.nav-item {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #d6e4df;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: left;
}

.nav-item svg,
.icon-button svg,
.primary-button svg,
.secondary-button svg,
.text-button svg,
.stat-panel svg,
.trust-block > svg,
.sidebar-note svg,
.search-field svg,
.rating-row svg,
.verification-stack svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2.2;
}

.nav-item:hover,
.nav-item.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.sidebar-note {
  margin-top: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(245, 207, 120, 0.12);
  border: 1px solid rgba(245, 207, 120, 0.22);
}

.sidebar-note p {
  margin: 0;
  color: #e4d8b5;
  font-size: 0.82rem;
  line-height: 1.5;
}

.main-content {
  min-width: 0;
  padding: 28px clamp(18px, 3vw, 36px) 44px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--forest-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

h3 {
  margin: 0;
  font-size: 1rem;
}

.topbar-actions,
.modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.user-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #acd2c7;
  border-radius: var(--radius);
  background: #edf8f4;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-button,
.secondary-button,
.text-button,
.icon-button {
  min-height: 40px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.primary-button {
  padding: 0 14px;
  color: #ffffff;
  background: var(--forest);
  box-shadow: 0 10px 22px rgba(23, 79, 67, 0.2);
}

.primary-button:hover {
  transform: translateY(-1px);
  background: #0f4338;
}

.secondary-button {
  padding: 0 12px;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.secondary-button:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.text-button {
  padding: 0 6px;
  color: var(--forest-2);
  background: transparent;
  white-space: nowrap;
}

.icon-button {
  position: relative;
  width: 40px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.notification-dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #d64045;
}

.compliance-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid #d5cab2;
  border-radius: var(--radius);
  background: #fff8e6;
}

.compliance-strip div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
}

.compliance-strip span {
  color: #645941;
  font-size: 0.92rem;
}

.auth-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1px solid #c8d8d2;
  border-radius: var(--radius);
  background: #edf8f4;
}

.auth-status div {
  display: grid;
  gap: 3px;
}

.auth-status span {
  color: #4d6259;
  font-size: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.stat-panel {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(34, 30, 21, 0.04);
}

.stat-panel svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--forest);
}

.stat-panel:nth-child(2) svg {
  background: var(--blue);
  color: #315f9c;
}

.stat-panel:nth-child(3) svg {
  background: #efe4fb;
  color: #6c4a94;
}

.stat-panel:nth-child(4) svg {
  background: #fff1c7;
  color: var(--amber);
}

.stat-panel strong,
.stat-panel small {
  display: block;
}

.stat-panel strong {
  font-size: 1.35rem;
}

.stat-panel small {
  margin-top: 3px;
  color: var(--muted);
}

.view {
  display: none;
}

.view.active {
  display: block;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-field {
  min-width: min(280px, 100%);
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

select,
input,
textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

select {
  height: 42px;
  padding: 0 34px 0 12px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(32, 29, 21, 0.06);
}

.listing-visual {
  position: relative;
  min-height: 152px;
  background:
    linear-gradient(135deg, rgba(16, 40, 33, 0.88), rgba(15, 107, 88, 0.62)),
    var(--image);
  background-size: cover;
  background-position: center;
}

.listing-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.badge,
.status-pill {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge {
  color: #123128;
  background: #f5cf78;
}

.badge.alt {
  color: #0f4338;
  background: #d7eee7;
}

.listing-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  padding: 16px;
}

.listing-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.listing-title-row h3 {
  line-height: 1.25;
}

.price {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: var(--forest);
  white-space: nowrap;
}

.price small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.price strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.84rem;
}

.seller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.seller-id {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.seller-mini-avatar,
.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: #102821;
  color: #ffffff;
  font-weight: 800;
}

.seller-mini-avatar {
  width: 34px;
  height: 34px;
  font-size: 0.78rem;
}

.seller-id strong,
.seller-id small {
  display: block;
}

.seller-id strong {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-id small {
  color: var(--muted);
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #c78914;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.seller-id small span {
  color: #c78914;
}

.orders-layout,
.seller-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 14px;
  align-items: start;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.order-main {
  min-width: 0;
}

.order-main h3 {
  margin-bottom: 8px;
}

.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.contact-card span {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f5ef;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-size: 0.78rem;
}

.contact-card small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.timeline-step {
  min-height: 64px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf9f5;
}

.timeline-step.done {
  border-color: #acd2c7;
  background: #edf8f4;
}

.timeline-step.current {
  border-color: #e6bf5a;
  background: #fff7dc;
}

.timeline-step strong,
.timeline-step small {
  display: block;
}

.timeline-step strong {
  font-size: 0.78rem;
}

.timeline-step small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.order-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.status-pill {
  color: #173129;
  background: #d7eee7;
}

.status-pill.warning {
  color: #5e3f08;
  background: #fff0bd;
}

.status-pill.blue {
  color: #254c80;
  background: #dce8fa;
}

.payout-panel,
.seller-profile,
.seller-table-wrap,
.trust-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.payout-panel {
  padding: 16px;
  position: sticky;
  top: 20px;
}

.payout-summary {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 14px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: #edf8f4;
}

.payout-summary svg {
  color: var(--forest);
}

.payout-summary strong,
.payout-summary small {
  display: block;
}

.queue-list {
  display: grid;
  gap: 10px;
}

.queue-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.queue-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.seller-layout {
  grid-template-columns: 330px minmax(0, 1fr);
}

.seller-profile {
  padding: 18px;
}

.avatar {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.seller-profile p {
  margin: 5px 0 12px;
  color: var(--muted);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  color: #c78914;
}

.rating-row small {
  color: var(--muted);
}

.verification-stack {
  display: grid;
  gap: 8px;
}

.verification-stack span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.seller-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.seller-table th,
.seller-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.seller-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.seller-table tr:last-child td {
  border-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.trust-block {
  min-height: 210px;
  padding: 18px;
}

.trust-block > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--forest);
}

.trust-block:nth-child(2) > svg {
  background: var(--blue);
  color: #315f9c;
}

.trust-block:nth-child(3) > svg {
  background: var(--rose);
  color: #a34040;
}

.trust-block:nth-child(4) > svg {
  background: #fff1c7;
  color: var(--amber);
}

.trust-block p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  max-width: min(380px, calc(100vw - 32px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #ffffff;
  background: #102821;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  width: min(760px, calc(100vw - 24px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.modal::backdrop {
  background: rgba(15, 25, 21, 0.54);
  backdrop-filter: blur(5px);
}

.modal-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-heading {
  padding-right: 48px;
}

.modal-heading h2 {
  font-size: 1.5rem;
}

.modal-heading p:not(.eyebrow) {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.auth-panel {
  gap: 14px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f5ef;
}

.auth-tabs button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted);
  background: transparent;
  font-weight: 800;
}

.auth-tabs button.active {
  color: var(--forest);
  border-color: #acd2c7;
  background: var(--paper);
  box-shadow: 0 8px 18px rgba(23, 79, 67, 0.08);
}

.auth-form {
  display: grid;
  gap: 12px;
}

.verification-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e6bf5a;
  border-radius: var(--radius);
  background: #fff7dc;
}

.verification-box p {
  margin: 4px 0 0;
  color: #6e5a21;
  line-height: 1.45;
}

.verification-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f6f5ef;
}

.summary-tile {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.summary-tile small {
  color: var(--muted);
}

.summary-tile strong {
  overflow-wrap: anywhere;
}

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

label {
  display: grid;
  gap: 7px;
  color: #35413b;
  font-size: 0.9rem;
  font-weight: 700;
}

label input,
label select,
label textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 11px;
  color: var(--ink);
}

label textarea {
  padding-top: 10px;
  resize: vertical;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox-line input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
}

.rating-target {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f5ef;
}

.rating-target strong,
.rating-target small {
  display: block;
}

.rating-target small {
  margin-top: 4px;
  color: var(--muted);
}

.rating-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-picker legend {
  width: 100%;
  margin-bottom: 8px;
  color: #35413b;
  font-size: 0.9rem;
  font-weight: 700;
}

.rating-picker label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rating-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-picker span {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.rating-picker input:checked + span {
  border-color: #d7a129;
  background: #fff1c7;
  color: #744b09;
  box-shadow: inset 0 0 0 2px rgba(245, 207, 120, 0.8);
}

.empty-state {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  text-align: center;
}

.locked-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 28px;
  border: 1px dashed #d5cab2;
  border-radius: var(--radius);
  background: #fff8e6;
  text-align: center;
}

.locked-state svg {
  width: 34px;
  height: 34px;
  color: var(--amber);
}

.locked-state p {
  max-width: 560px;
  margin: 0;
  color: #645941;
  line-height: 1.55;
}

.table-lock {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
}

.table-lock span {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .stats-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orders-layout,
  .seller-layout {
    grid-template-columns: 1fr;
  }

  .payout-panel {
    position: static;
  }
}

@media (max-width: 780px) {
  :root {
    --sidebar: 100%;
  }

  .app-shell {
    display: block;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

  .brand {
    min-height: 44px;
  }

  .nav-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-item {
    min-height: 56px;
    justify-content: center;
    flex-direction: column;
    padding: 6px 4px;
    font-size: 0.78rem;
    text-align: center;
  }

  .sidebar-note {
    display: none;
  }

  .main-content {
    padding: 18px 14px 34px;
  }

  .topbar,
  .section-heading,
  .compliance-strip,
  .auth-status,
  .verification-box {
    align-items: stretch;
    flex-direction: column;
  }

  .topbar-actions,
  .filters {
    justify-content: flex-start;
  }

  .stats-grid,
  .listing-grid,
  .trust-grid,
  .form-grid,
  .booking-summary {
    grid-template-columns: 1fr;
  }

  .order-card {
    grid-template-columns: 1fr;
  }

  .order-actions {
    align-items: stretch;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .search-field,
  .filters select {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}
