:root {
  --ink: #092047;
  --muted: #5b6473;
  --paper: #fff8ef;
  --panel: #ffffff;
  --line: #eadfd3;
  --green: #39a86b;
  --green-dark: #137452;
  --coral: #f25f83;
  --sky: #68c7d8;
  --yellow: #ffc943;
  --navy: #092047;
  --cream: #fff8ef;
  --shadow: 0 18px 45px rgba(9, 32, 71, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf4 0, var(--paper) 42%, #ffffff 100%);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.filters,
.item-meta,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-action,
.primary-btn,
.secondary-btn,
.request-btn,
.filter,
.request-form button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.nav-action,
.primary-btn,
.request-form button {
  color: #fff;
  background: var(--navy);
}

.nav-action {
  padding: 11px 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(38px, 7vw, 82px) clamp(20px, 4vw, 64px);
  background:
    linear-gradient(105deg, rgba(255, 248, 239, 0.98) 0%, rgba(255, 248, 239, 0.9) 48%, rgba(104, 199, 216, 0.24) 100%),
    radial-gradient(circle at 8% 14%, rgba(242, 95, 131, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf4, #fff2e0);
}

.hero::after {
  position: absolute;
  right: -9vw;
  bottom: -70px;
  width: min(520px, 48vw);
  height: 150px;
  content: "";
  background:
    linear-gradient(8deg, transparent 12%, rgba(57, 168, 107, 0.8) 13% 78%, transparent 79%),
    linear-gradient(-6deg, transparent 18%, rgba(104, 199, 216, 0.72) 19% 64%, transparent 65%);
  opacity: 0.95;
  transform: rotate(-4deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: fade-up 700ms ease both;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.hero-text {
  max-width: 680px;
  color: #34445c;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.secondary-btn {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.promo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 24px;
}

.promo-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--navy);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 32, 71, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.promo-pills span:nth-child(1) {
  border-color: rgba(242, 95, 131, 0.35);
}

.promo-pills span:nth-child(2) {
  border-color: rgba(255, 201, 67, 0.55);
}

.promo-pills span:nth-child(3) {
  border-color: rgba(57, 168, 107, 0.38);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 0;
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(9, 32, 71, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(9, 32, 71, 0.08);
}

.trust-strip dt {
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fade-up 900ms ease 120ms both;
}

.hero-showcase {
  position: relative;
  width: min(100%, 510px);
  padding: 14px;
  background: #fff;
  border: 2px solid rgba(9, 32, 71, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: soft-float 5.5s ease-in-out infinite;
}

.hero-showcase > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  border-radius: 8px;
}

.new-app-badge {
  position: absolute;
  top: -22px;
  left: -18px;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: #fff;
  background: var(--coral);
  border: 6px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(242, 95, 131, 0.28);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.impact-card {
  position: absolute;
  right: -16px;
  bottom: 86px;
  display: grid;
  gap: 6px;
  width: min(280px, 72%);
  padding: 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 16px 28px rgba(9, 32, 71, 0.22);
}

.impact-card strong {
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.impact-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

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

.category-chips span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 6px;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.category-chips span:nth-child(1) {
  background: var(--coral);
}

.category-chips span:nth-child(2) {
  background: var(--green);
}

.category-chips span:nth-child(3) {
  color: var(--navy);
  background: var(--yellow);
}

.category-chips span:nth-child(4) {
  background: var(--sky);
}

.phone-card {
  width: min(100%, 410px);
  padding: 18px;
  background: #f4fbf8;
  border: 1px solid rgba(17, 106, 85, 0.2);
  border-radius: 26px;
  box-shadow: var(--shadow);
  animation: soft-float 5.5s ease-in-out infinite;
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.phone-head span {
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 18px 0 0 var(--yellow), 36px 0 0 var(--green);
}

.chat {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 12px;
  padding: 13px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.incoming {
  background: #fff;
}

.outgoing {
  margin-left: auto;
  color: #fff;
  background: var(--green);
}

.deal-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
}

.deal-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
}

.deal-card p {
  margin-bottom: 8px;
  font-weight: 800;
}

.deal-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.deal-card span {
  color: var(--muted);
  font-size: 13px;
}

.search-band,
.process,
.split {
  padding: 70px clamp(20px, 4vw, 64px);
}

.search-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.filters {
  flex-wrap: wrap;
  gap: 8px;
}

.listing-controls {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.location-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.location-tools label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-tools input,
.location-tools select {
  min-height: 42px;
  width: 190px;
  padding: 0 12px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter {
  padding: 10px 14px;
  color: var(--navy);
  background: #fff6e6;
  border: 1px solid rgba(255, 201, 67, 0.36);
}

.filter.active {
  color: #fff;
  background: var(--coral);
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 26px clamp(20px, 4vw, 64px) 78px;
  background:
    linear-gradient(180deg, #ffffff 0, #fff8ef 100%);
}

.item-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  animation: fade-up 520ms ease both;
}

.item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 95, 131, 0.32);
  box-shadow: 0 16px 32px rgba(9, 32, 71, 0.11);
}

.item-image-wrap {
  position: relative;
}

.item-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.item-image-wrap span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(9, 32, 71, 0.84);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.public-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb:focus,
.gallery-thumb:hover {
  border-color: var(--coral);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}

.item-body {
  padding: 18px;
}

.item-body p,
.steps p,
.split p {
  color: var(--muted);
  line-height: 1.55;
}

.location-line {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
}

.item-meta {
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.item-meta strong {
  color: var(--green-dark);
  font-size: 21px;
}

.request-btn {
  padding: 10px 13px;
  color: #fff;
  background: var(--navy);
}

.readonly-status {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--muted);
  background: #eef1f0;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.process {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 32, 71, 0.96), rgba(9, 32, 71, 1)),
    linear-gradient(90deg, var(--navy), #12336b);
}

.process .section-kicker {
  color: var(--yellow);
}

.process h2 {
  color: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

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

.steps div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.steps div:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.process .steps p {
  color: rgba(255, 255, 255, 0.76);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #344047;
  font-weight: 700;
}

.request-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-form select,
.request-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.request-form textarea {
  min-height: 120px;
  resize: vertical;
}

.request-form button {
  min-height: 50px;
}

.form-note {
  min-height: 48px;
  margin: 0;
  padding: 12px;
  color: var(--muted);
  background: #fff5e4;
  border-radius: 8px;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 64px);
  color: #fff;
  background: var(--navy);
}

.footer span {
  color: rgba(255, 255, 255, 0.74);
  text-align: right;
}

.button-reset {
  border: 0;
}

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

.policy-box,
.mini-ledger,
.empty-state {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.policy-box {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.policy-box strong {
  color: var(--coral);
}

.policy-box span,
.checkout-band p {
  color: var(--muted);
  line-height: 1.55;
}

.checkout-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding: 62px clamp(20px, 4vw, 64px);
  background:
    linear-gradient(90deg, #ffffff 0%, #fff4df 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.delivery-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding: 62px clamp(20px, 4vw, 64px) 70px;
  background: #fff;
}

.delivery-estimator {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: #f2fbfd;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.delivery-quote {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.delivery-quote span {
  color: var(--sky);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-quote strong {
  font-size: 18px;
  line-height: 1.4;
}

.mini-ledger {
  display: grid;
  gap: 10px;
}

.mini-ledger span,
.mini-ledger strong {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.mini-ledger strong {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.buyer-section {
  background:
    linear-gradient(180deg, var(--paper), #ffffff);
}

.faq-band {
  padding: 0 clamp(20px, 4vw, 64px) 78px;
  background: var(--paper);
}

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

.faq-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: fade-up 560ms ease both;
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(25, 32, 36, 0.1);
}

.faq-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(25, 32, 36, 0.58);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.response-card {
  width: min(100%, 500px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.modal-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  background: #f6f8f7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.modal-summary span,
.modal-summary strong {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.response-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-page {
  background: #f4f7f6;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 75px);
  padding: 40px 20px;
}

.login-card {
  width: min(100%, 520px);
}

.login-card h1,
.admin-shell h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.admin-shell {
  padding: 46px clamp(20px, 4vw, 64px) 70px;
}

.dashboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-head p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.55;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 38px;
}

.stats-grid div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
}

.stats-grid span {
  color: var(--muted);
  font-size: 14px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.admin-tab {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  background: #eef1f0;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.admin-tab.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.admin-tab-panel[hidden] {
  display: none;
}

.payment-history-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.payment-history-summary div {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-history-summary strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

.payment-history-summary span {
  color: var(--muted);
  font-size: 14px;
}

.admin-section {
  margin-top: 38px;
}

.admin-list {
  display: grid;
  gap: 16px;
}

.approval-group {
  display: grid;
  gap: 14px;
}

.approval-group + .approval-group {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.approval-group > h3 {
  margin: 0;
}

.admin-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.admin-image-stack > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--paper);
}

.admin-image-stack div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.admin-image-stack div img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.detail-grid div {
  padding: 12px;
  background: #f6f8f7;
  border-radius: 8px;
}

.detail-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-grid dd {
  margin: 5px 0 0;
  font-weight: 700;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions button {
  padding: 10px 12px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.admin-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 700;
}

.admin-actions button:nth-child(3),
.admin-actions button:last-child {
  background: var(--coral);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  color: #fff;
  background: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill.approved,
.status-pill.paid,
.status-pill.delivered,
.status-pill.buyer-approved,
.status-pill.seller-paid,
.status-pill.buyer_approved,
.status-pill.seller_paid,
.status-pill.received {
  background: var(--green);
}

.status-pill.pending,
.status-pill.interested,
.status-pill.awaiting_payment {
  color: var(--ink);
  background: var(--yellow);
}

.status-pill.rejected,
.status-pill.disputed {
  background: var(--coral);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .checkout-band,
  .delivery-band,
  .dashboard-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
  }

  .nav-action {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .trust-strip,
  .items-grid {
    grid-template-columns: 1fr;
  }

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

  .search-band {
    align-items: stretch;
    flex-direction: column;
  }

  .listing-controls {
    justify-items: stretch;
  }

  .location-tools {
    justify-content: stretch;
  }

  .location-tools label,
  .location-tools input,
  .location-tools select {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer span {
    text-align: left;
  }

  .form-grid,
  .checkout-band,
  .stats-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
