/* [project]/casaya/web/app/globals.css [app-client] (css) */
:root {
  --red: #e2241b;
  --black: #111;
  --white: #fff;
  --page: #f7f8fb;
  --line: #e5e7eb;
  --muted: #64748b;
  --font-body: "Avenir Next", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-display: "Roketto", "Trebuchet MS", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-chat: ui-rounded, "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 760px) {
  .saved-properties-page {
    padding: 48px 22px 76px;
  }

  .saved-property-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .saved-property-card {
    grid-template-columns: 130px 1fr;
  }

  .saved-property-card > img {
    min-height: 160px;
  }
}

@font-face {
  font-display: swap;
  font-family: Monigue;
  font-style: normal;
  font-weight: 400 900;
  src: url("/fonts/Monigue.woff2") format("woff2"), url("/fonts/Monigue.woff") format("woff"), url("/fonts/Monigue.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: Roketto;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Roketto.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background: var(--page);
  color: var(--black);
  font-family: var(--font-body);
  margin: 0;
}

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

button, input {
  font: inherit;
}

.site-shell {
  background: var(--white);
  min-height: 100vh;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: #fffffff5;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(22px, 5vw, 72px);
  display: flex;
}

.brand {
  align-items: center;
  display: inline-flex;
}

.brand-logo {
  width: 176px;
  height: auto;
  display: block;
}

.topbar-actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.topbar-actions form {
  display: flex;
}

.saved-nav-actions {
  align-items: center;
  gap: 4px;
  margin-right: 4px;
  display: flex;
}

.saved-nav-action {
  width: 38px;
  height: 38px;
  color: var(--red);
  background: #fff;
  border: 1px solid #f3c9c3;
  border-radius: 50%;
  place-items: center;
  transition: border-color .16s, color .16s, background .16s;
  display: grid;
  position: relative;
}

.saved-nav-action:hover {
  color: var(--red);
  background: #fff8f6;
  border-color: #f3b8b1;
}

.saved-nav-action svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  width: 19px;
  height: 19px;
}

.saved-nav-badge {
  background: var(--red);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  display: grid;
  position: absolute;
  top: -5px;
  right: -4px;
}

.topbar-profile {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
}

.topbar-profile > img, .topbar-profile > span:first-child {
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
}

.topbar-profile > img {
  display: block;
}

.topbar-profile > span:first-child {
  background: var(--red);
  color: var(--white);
  place-items: center;
  font-size: 11px;
  display: grid;
}

.topbar-logout {
  min-height: 38px;
  padding-inline: 14px;
}

.home-nav {
  color: #64748b;
  gap: 30px;
  margin-left: auto;
  margin-right: 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.home-nav a:hover {
  color: var(--black);
}

.button {
  border: 1px solid #0000;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .16s, background .16s, color .16s;
  display: inline-flex;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible, input:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #e2241b38;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: #c91d15;
}

.button-secondary {
  background: var(--white);
  color: var(--black);
  border-color: #d8d8d8;
}

.button-secondary:hover {
  border-color: var(--black);
}

.home-main {
  overflow: hidden;
}

.home-search-hero {
  background-color: #c91d15;
  background-image: radial-gradient(circle at 12% 18%, #ffffff29 0 1px, #0000 2px), radial-gradient(circle at 78% 68%, #50000021 0 1px, #0000 2px), linear-gradient(125deg, #ffffff1a, #0000 42%, #4d000024);
  background-size: 19px 19px, 23px 23px, auto;
  padding: 82px 48px 92px;
  position: relative;
  overflow: hidden;
}

.home-search-hero:before, .home-search-hero:after {
  content: "";
  border: 1px solid #ffffff24;
  border-radius: 50%;
  position: absolute;
}

.home-search-hero:before {
  width: 540px;
  height: 540px;
  top: -210px;
  right: -110px;
}

.home-search-hero:after {
  width: 620px;
  height: 620px;
  bottom: -320px;
  left: -160px;
}

.home-search-inner {
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.home-search-kicker {
  color: #ffd7d2;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
  font-size: 13px;
  font-weight: 850;
}

.home-search-inner h1 {
  color: #fff;
  max-width: 760px;
  font-family: var(--font-display);
  letter-spacing: -.025em;
  word-spacing: .015em;
  margin: 13px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
}

.home-search-lede {
  color: #ffeae7;
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.home-search-form {
  background: #fff;
  border-radius: 10px;
  grid-template-columns: 1.45fr repeat(3, 1fr) auto;
  align-items: end;
  gap: 8px;
  margin-top: 34px;
  padding: 10px;
  display: grid;
  box-shadow: 0 18px 38px #43000033;
}

.home-search-form label {
  color: #475569;
  gap: 7px;
  min-width: 0;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}

.home-search-form input, .home-search-form select, .catalog-search-form input, .catalog-search-form select {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 6px;
  width: 100%;
  min-width: 0;
  height: 44px;
  font-size: 14px;
}

.home-search-form input, .home-search-form select {
  padding: 0 10px;
}

.home-search-form input:focus, .home-search-form select:focus, .catalog-search-form input:focus, .catalog-search-form select:focus {
  border-color: var(--red);
  outline: 3px solid #e2241b24;
}

.home-search-button {
  background: var(--red);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  border: 0;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
  display: inline-flex;
}

.home-search-button:hover {
  background: #a91913;
}

.home-search-button span {
  font-size: 23px;
  line-height: 1;
}

.home-search-links {
  color: #ffd7d2;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
  font-size: 13px;
  display: flex;
}

.home-search-links a {
  color: #fff;
  text-underline-offset: 3px;
  font-weight: 750;
  -webkit-text-decoration: underline #ffffff59;
  text-decoration: underline #ffffff59;
}

.home-search-links a:hover {
  text-decoration-color: #fff;
}

.home-search-tabs .home-search-form {
  margin-top: 0;
}

.home-search-tablist {
  gap: 6px;
  margin-bottom: 10px;
  display: flex;
}

.home-search-tablist button, .home-search-tablist a {
  color: #ffeae7;
  font: inherit;
  cursor: pointer;
  background: #7a000038;
  border: 1px solid #ffffff59;
  border-radius: 7px 7px 0 0;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
}

.home-search-tablist button.active {
  color: var(--red);
  background: #fff;
  border-color: #fff;
}

.home-search-tablist button span, .home-search-tablist a span {
  color: var(--red);
  text-transform: uppercase;
  background: #fff0ed;
  border-radius: 999px;
  margin-left: 5px;
  padding: 3px 6px;
  font-size: 9px;
}

.home-ai-panel {
  color: #0f172a;
  font-family: var(--font-chat);
  background: #fff;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 18px 38px #43000033;
}

.home-ai-intro {
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.home-ai-spark {
  width: 38px;
  height: 38px;
  color: var(--red);
  background: #fff0ed;
  border-radius: 11px;
  flex: 0 0 38px;
  place-items: center;
  font-size: 21px;
  display: grid;
}

.home-ai-label {
  color: var(--red);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
  font-size: 11px;
  font-weight: 850;
}

.home-ai-intro h2 {
  letter-spacing: -.03em;
  margin: 5px 0 6px;
  font-size: 25px;
}

.home-ai-intro p:last-child {
  color: #64748b;
  max-width: 650px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.home-ai-form {
  gap: 13px;
  margin-top: 24px;
  display: grid;
}

.home-ai-form label {
  color: #475569;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}

.home-ai-form textarea, .home-ai-form select {
  color: #0f172a;
  width: 100%;
  min-width: 0;
  font-family: var(--font-chat);
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
}

.home-ai-form textarea {
  resize: vertical;
  letter-spacing: 0;
  padding: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.home-ai-form select {
  height: 44px;
  padding: 0 10px;
}

.home-ai-fields {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  display: grid;
}

.home-ai-form .home-search-button {
  justify-self: start;
}

.home-ai-note, .home-ai-feedback {
  color: #64748b;
  font-family: var(--font-chat);
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.home-ai-feedback {
  color: #16804a;
  font-weight: 650;
}

.home-ai-feedback.error {
  color: #b42318;
}

.home-ai-results > div {
  gap: 8px;
  margin-top: 12px;
  display: grid;
}

.home-ai-results a {
  color: #0f172a;
  font-family: var(--font-chat);
  border: 1px solid #dbe2ea;
  border-radius: 7px;
  gap: 4px;
  padding: 14px 15px;
  text-decoration: none;
  display: grid;
}

.home-ai-results a:hover {
  background: #fff8f6;
  border-color: #f3a39b;
}

.home-ai-results a strong {
  font-weight: 650;
}

.home-ai-results span, .home-ai-results small {
  color: #64748b;
  font-size: 13px;
}

.home-ai-results small {
  line-height: 1.5;
}

.home-search-inner {
  text-align: center;
}

.home-search-tabs {
  margin-top: 0;
}

.home-search-tablist {
  justify-content: center;
  margin-bottom: 28px;
}

.home-search-tablist button {
  background: #7a000042;
  border-radius: 999px;
  min-width: 162px;
}

.home-search-tablist button.active {
  box-shadow: 0 6px 18px #50000029;
}

.home-search-kicker {
  color: #ffd7d2;
}

.home-search-inner h1 {
  max-width: 810px;
  margin: 13px auto 18px;
}

.home-search-lede {
  margin-inline: auto;
}

.home-search-form {
  text-align: left;
  margin-top: 34px;
}

.home-search-form label {
  text-align: center;
}

.home-search-form input, .home-search-form select {
  text-align: left;
}

.home-search-links {
  justify-content: center;
}

.home-ai-chat {
  color: #162033;
  max-width: 900px;
  min-height: 510px;
  font-family: var(--font-chat);
  text-align: left;
  background: #fff;
  border: 1px solid #f1d4d0;
  border-radius: 18px;
  margin: 34px auto 0;
  overflow: hidden;
  box-shadow: 0 24px 55px #43000038;
}

.home-ai-chat-header {
  background: #fffaf9;
  border-bottom: 1px solid #f0e5e2;
  align-items: center;
  gap: 11px;
  padding: 16px 20px;
  display: flex;
}

.home-ai-chat-header .home-ai-spark {
  border-radius: 10px;
  flex-basis: 35px;
  width: 35px;
  height: 35px;
  font-size: 18px;
}

.home-ai-chat-header strong, .home-ai-chat-header small {
  display: block;
}

.home-ai-chat-header strong {
  font-size: 14px;
  font-weight: 750;
}

.home-ai-chat-header small {
  color: #718096;
  margin-top: 2px;
  font-size: 12px;
}

.home-ai-status {
  color: #4b617c;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.home-ai-status i {
  background: #27a965;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 3px #e5f7ed;
}

.home-ai-conversation {
  background: linear-gradient(#fff 0%, #fffaf9 100%);
  align-content: start;
  gap: 18px;
  min-height: 270px;
  max-height: 510px;
  padding: 26px clamp(18px, 4vw, 42px);
  display: grid;
  overflow-y: auto;
}

.home-ai-message {
  align-items: flex-start;
  gap: 10px;
  max-width: 88%;
  display: flex;
}

.home-ai-message > div {
  color: #334155;
  background: #f4f7fa;
  border-radius: 5px 17px 17px;
  padding: 12px 15px;
  font-size: 15px;
  line-height: 1.58;
}

.home-ai-message p {
  margin: 0;
}

.home-ai-avatar {
  background: var(--red);
  color: #fff;
  border-radius: 9px;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  display: grid;
}

.home-ai-message.user {
  flex-direction: row-reverse;
  align-self: end;
}

.home-ai-message.user > div {
  color: #fff;
  background: #e2241b;
  border-radius: 17px 5px 17px 17px;
}

.home-ai-message.error > div {
  color: #b42318;
  background: #fff1f2;
  border: 1px solid #fecaca;
}

.home-ai-thinking {
  align-items: center;
  gap: 4px;
  min-height: 46px;
  display: inline-flex;
}

.home-ai-thinking b {
  background: #aab6c5;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.1s ease-in-out infinite ai-pulse;
}

.home-ai-thinking b:nth-child(2) {
  animation-delay: .14s;
}

.home-ai-thinking b:nth-child(3) {
  animation-delay: .28s;
}

@keyframes ai-pulse {
  0%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.home-ai-answer {
  width: min(100%, 720px);
}

.home-ai-property-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  display: grid;
}

.home-ai-property-card {
  color: #172033;
  background: #fff;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  overflow: hidden;
  box-shadow: 0 4px 13px #0f172a0d;
}

.home-ai-property-card:hover {
  border-color: #f09e97;
  transform: translateY(-2px);
  box-shadow: 0 11px 25px #82281f21;
}

.home-ai-property-image {
  color: #a7413a;
  background: linear-gradient(135deg, #fee9e5, #f8f1ef) center / cover;
  place-items: center;
  width: 100%;
  height: 128px;
  font-size: 12px;
  font-weight: 700;
  display: grid;
}

.home-ai-property-card > div {
  gap: 5px;
  padding: 12px;
  display: grid;
}

.home-ai-property-card small {
  color: #b52a21;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.home-ai-property-card strong {
  color: #172033;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
  overflow: hidden;
}

.home-ai-property-card b {
  color: #e2241b;
  font-size: 15px;
}

.home-ai-property-card span, .home-ai-property-card em {
  color: #68788d;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-style: normal;
  line-height: 1.35;
  overflow: hidden;
}

.home-ai-property-card p {
  color: #506176;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.home-ai-show-more {
  color: #cf251c;
  width: fit-content;
  font-family: var(--font-chat);
  cursor: pointer;
  background: #fff;
  border: 1px solid #efb1aa;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  margin: 18px auto 2px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.home-ai-show-more:hover {
  background: #fff5f3;
  border-color: #e2241b;
}

.home-ai-empty {
  color: #68788d;
  margin-top: 13px !important;
}

.home-ai-suggestions {
  background: #fffaf9;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 24px 18px;
  display: flex;
}

.home-ai-suggestions > span {
  color: #718096;
  text-align: center;
  width: 100%;
  font-size: 12px;
}

.home-ai-suggestions button {
  color: #5f6d80;
  font-family: var(--font-chat);
  cursor: pointer;
  background: #fff;
  border: 1px solid #e7d9d6;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
}

.home-ai-suggestions button:hover {
  color: #c1261d;
  border-color: #ee9e97;
}

.home-ai-composer {
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 16px;
  align-items: end;
  gap: 10px;
  margin: 18px 24px 10px;
  padding: 9px 10px 9px 15px;
  display: flex;
  box-shadow: 0 8px 20px #0f172a14;
}

.home-ai-composer:focus-within {
  border-color: #e2241b;
  box-shadow: 0 0 0 3px #e2241b1f, 0 8px 20px #0f172a14;
}

.home-ai-composer textarea {
  resize: none;
  color: #1f2937;
  width: 100%;
  min-height: 27px;
  max-height: 120px;
  font-family: var(--font-chat);
  background: none;
  border: 0;
  outline: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.home-ai-composer textarea::placeholder {
  color: #8a98a9;
}

.home-ai-composer button {
  color: #fff;
  cursor: pointer;
  background: #e2241b;
  border: 0;
  border-radius: 10px;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  font-family: Arial, sans-serif;
  font-size: 21px;
  line-height: 1;
  display: grid;
}

.home-ai-composer button:hover:not(:disabled) {
  background: #c91d15;
}

.home-ai-composer button:disabled {
  cursor: not-allowed;
  background: #cbd5df;
}

.home-ai-disclaimer {
  color: #8793a2;
  text-align: center;
  margin: 0 20px 18px;
  font-size: 11px;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: 44px;
  max-width: 1240px;
  min-height: 590px;
  margin: 0 auto;
  padding: 76px 48px 90px;
  display: grid;
}

.home-hero-copy {
  z-index: 1;
  max-width: 590px;
  position: relative;
}

.home-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  margin: 16px 0 20px;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 1.02;
}

.home-hero h1 span {
  color: var(--red);
}

.home-lede {
  color: #526070;
  max-width: 500px;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  display: flex;
}

.button-large {
  min-height: 56px;
  padding-inline: 25px;
  font-size: 15px;
}

.button-large span {
  margin-left: 22px;
  font-size: 20px;
}

.text-link {
  color: #526070;
  font-size: 14px;
  font-weight: 750;
}

.text-link span {
  color: var(--red);
  margin-left: 8px;
}

.hero-proof {
  color: #7b8794;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.proof-dot {
  background: #4caf78;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px #e9f7ef;
}

.hero-visual {
  background: radial-gradient(circle, #fff9f8 0 34%, #0000 35%), linear-gradient(135deg, #fff 0%, #fff3f0 100%);
  border-radius: 50%;
  min-height: 470px;
  position: relative;
}

.hero-sun {
  background: #ffd7b4;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  position: absolute;
  top: 47px;
  right: 88px;
}

.hero-house {
  width: 278px;
  position: absolute;
  bottom: 66px;
  left: 50%;
  transform: translateX(-50%);
}

.house-roof {
  border-bottom: 134px solid #e2241b;
  border-left: 158px solid #0000;
  border-right: 158px solid #0000;
  width: 0;
  height: 0;
  margin: auto;
}

.house-body {
  background: #fff;
  border: 6px solid #141414;
  border-top: 0;
  width: 238px;
  height: 175px;
  margin: -3px auto 0;
  position: relative;
  box-shadow: 13px 13px #ffd8d2;
}

.house-window {
  background: #d7f2f3;
  border: 5px solid #141414;
  width: 53px;
  height: 53px;
  position: absolute;
  top: 30px;
}

.window-left {
  left: 22px;
}

.window-right {
  right: 22px;
}

.house-door {
  background: #ffd7b4;
  border: 5px solid #141414;
  border-bottom: 0;
  width: 58px;
  height: 99px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.house-door:after {
  content: "";
  background: #141414;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 8px;
}

.hero-card {
  background: #fff;
  border: 1px solid #f0d7d2;
  border-radius: 12px;
  flex-direction: column;
  padding: 18px 20px;
  display: flex;
  position: absolute;
  box-shadow: 0 16px 35px #5c2f2a1f;
}

.hero-card-main {
  width: 190px;
  top: 109px;
  left: 4px;
}

.hero-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.mini-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
}

.card-bars {
  gap: 5px;
  margin-top: 15px;
  display: flex;
}

.card-bars i {
  background: #ffd7d2;
  border-radius: 10px;
  width: 34px;
  height: 5px;
  display: block;
}

.card-bars i:first-child {
  background: var(--red);
  width: 52px;
}

.hero-card-small {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  bottom: 39px;
  right: 1px;
}

.hero-card-small small {
  color: #87919a;
  margin-top: 4px;
  font-size: 10px;
  display: block;
}

.check-circle {
  color: #35a467;
  background: #e5f6ed;
  border-radius: 50%;
  place-items: center;
  width: 29px;
  height: 29px;
  font-weight: 900;
  display: grid;
}

.hero-spark {
  color: var(--red);
  font-size: 25px;
  position: absolute;
}

.spark-one {
  bottom: 111px;
  left: 39px;
}

.spark-two {
  color: #f5ac99;
  font-size: 16px;
  top: 62px;
  left: 46%;
}

.home-properties-section {
  background: #f7f8fb;
  padding: 96px max(22px, 50% - 572px);
}

.home-properties-section .section-heading {
  max-width: 620px;
}

.home-properties-intro {
  color: #687381;
  max-width: 540px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.home-property-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  display: grid;
}

.home-property-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px #0f172a0d;
}

.home-property-card-image {
  color: #8b1e17;
  background: linear-gradient(135deg, #fce7e3 0%, #fff1ef 52%, #e9eef5 100%);
  flex-direction: column;
  justify-content: space-between;
  min-height: 150px;
  padding: 16px;
  display: flex;
  position: relative;
}

.home-property-card-image:after {
  content: "";
  background: #ffffffa6;
  border-radius: 50%;
  width: 145px;
  height: 145px;
  position: absolute;
  bottom: -42px;
  right: -18px;
}

.home-property-card-image span {
  z-index: 1;
  background: #ffffffc7;
  border-radius: 999px;
  align-self: flex-start;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
}

.home-property-card-image strong {
  z-index: 1;
  color: #8b1e178c;
  font-family: var(--font-display);
  letter-spacing: -.05em;
  align-self: flex-end;
  font-size: 26px;
}

.home-property-card-content {
  padding: 20px;
}

.home-property-card-type {
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 850;
}

.home-property-card h3 {
  color: #0f172a;
  letter-spacing: -.025em;
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.home-property-card-location {
  color: #64748b;
  margin: 10px 0 0;
  font-size: 14px;
}

.home-property-card-facts {
  color: #334155;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.home-property-card-facts span + span {
  border-left: 1px solid #cbd5e1;
  padding-left: 12px;
}

.home-property-card-description {
  color: #64748b;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.home-property-card-link {
  color: var(--red);
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 850;
  display: inline-flex;
}

.home-property-card-link span {
  font-size: 19px;
  transition: transform .16s;
}

.home-property-card-link:hover span {
  transform: translateX(3px);
}

.public-page {
  background: var(--page);
  min-height: 100vh;
}

.catalog-page, .categories-page, .property-detail-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 48px 110px;
}

.catalog-heading {
  max-width: 720px;
}

.catalog-heading.compact {
  max-width: 620px;
}

.catalog-heading h1 {
  color: #0f172a;
  font-family: var(--font-display);
  letter-spacing: -.025em;
  margin: 14px 0 18px;
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.04;
}

.catalog-heading h1 span {
  color: var(--red);
}

.catalog-heading > p:last-child {
  color: #64748b;
  max-width: 580px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.category-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin: 42px 0 34px;
  display: flex;
}

.category-pill {
  color: #475569;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 750;
}

.category-pill:hover, .category-pill.active {
  border-color: var(--red);
  color: var(--red);
  background: #fff1ef;
}

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

.related-properties-section {
  border-top: 1px solid #e2e8f0;
  margin-top: 92px;
  padding-top: 64px;
}

.related-properties-section .section-heading {
  max-width: 650px;
}

.property-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px #0f172a0d;
}

.property-card-image {
  color: #8b1e17;
  background: linear-gradient(135deg, #fce7e3 0%, #fff1ef 52%, #e9eef5 100%);
  flex-direction: column;
  justify-content: space-between;
  min-height: 265px;
  padding: 16px;
  display: flex;
  position: relative;
}

.property-card-image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.property-card-image-overlay {
  z-index: 1;
  color: #fff;
  background: linear-gradient(#0f172a57, #0000 45%);
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: 0;
}

.property-card-image span, .property-card-image strong {
  z-index: 1;
}

.property-card-actions {
  align-self: flex-end;
  gap: 8px;
  display: flex;
}

.property-card-action {
  width: 38px;
  height: 38px;
  color: var(--red);
  cursor: pointer;
  background: #ffffffe6;
  border: 1px solid #ffffffb3;
  border-radius: 50%;
  place-items: center;
  transition: transform .16s, background .16s, color .16s;
  display: grid;
}

.property-card-action:hover {
  background: #fff;
  transform: translateY(-2px);
}

.property-card-action.active {
  border-color: var(--red);
  color: var(--red);
  background: #fff0ed;
}

.property-card-action svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 20px;
  height: 20px;
}

.saved-properties-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 48px 110px;
}

.saved-properties-heading {
  max-width: 720px;
}

.saved-properties-heading h1 {
  color: #0f172a;
  font-family: var(--font-display);
  margin: 12px 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.saved-properties-heading p:last-child {
  color: #64748b;
  font-size: 18px;
}

.saved-property-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
  display: grid;
}

.saved-property-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  grid-template-columns: 190px 1fr;
  display: grid;
  overflow: hidden;
}

.saved-property-card > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 190px;
}

.saved-property-card > div {
  padding: 22px;
}

.saved-property-card h2 {
  margin: 7px 0;
  font-size: 20px;
}

.saved-property-card p:not(.eyebrow) {
  color: var(--red);
  margin: 0 0 5px;
  font-weight: 800;
}

.saved-property-card small {
  color: #64748b;
}

.saved-property-card > div > div {
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  display: flex;
}

.saved-remove {
  color: var(--red);
  cursor: pointer;
  background: none;
  border: 0;
  font-weight: 800;
}

.saved-empty {
  text-align: center;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  margin-top: 48px;
  padding: 70px 30px;
}

.saved-empty p {
  color: #64748b;
  margin-bottom: 25px;
}

.seller-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 48px 110px;
}

.seller-hero {
  background: linear-gradient(135deg, #fff5f2, #fff 70%);
  border-radius: 18px;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
  padding: 38px;
  display: flex;
}

.seller-avatar-large {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  flex: 0 0 112px;
  place-items: center;
  width: 112px;
  height: 112px;
  font-size: 32px;
  font-weight: 850;
  display: grid;
  overflow: hidden;
}

.seller-avatar-large img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.seller-hero h1 {
  color: #0f172a;
  letter-spacing: -.04em;
  margin: 7px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
}

.seller-hero p:not(.eyebrow) {
  color: #64748b;
  max-width: 680px;
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.6;
}

.seller-properties {
  margin-top: 82px;
}

.comparison-table-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  margin-top: 48px;
  overflow-x: auto;
}

.comparison-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  min-width: 700px;
}

.comparison-table th, .comparison-table td {
  vertical-align: middle;
  border-bottom: 1px solid #eef2f7;
  padding: 17px 18px;
}

.comparison-table thead th {
  color: #0f172a;
  background: #fff8f6;
}

.comparison-table tbody th {
  color: #64748b;
  width: 150px;
  font-size: 13px;
}

.comparison-table a {
  color: #0f172a;
}

.comparison-table td img {
  object-fit: cover;
  border-radius: 10px;
  width: 150px;
  height: 90px;
}

.property-card-image span {
  color: #8b1e17;
  background: #ffffffd9;
  border-radius: 999px;
  align-self: flex-start;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 800;
}

.property-card-image strong {
  color: #ffffffbd;
  font-family: var(--font-display);
  letter-spacing: -.05em;
  align-self: center;
  font-size: 64px;
  line-height: 1;
}

.property-card-image small {
  color: #ffffffe6;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
}

.property-card-content {
  padding: 20px;
}

.property-card-heading {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.property-card-type {
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 850;
}

.property-card-status {
  color: #16804a;
  background: #ecfdf3;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}

.property-card h2 {
  color: #0f172a;
  letter-spacing: -.025em;
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.property-card-price, .property-detail-price {
  color: #0f172a;
  margin: 10px 0 0;
  font-size: 21px;
  font-weight: 850;
}

.property-card-price small {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.property-card-location {
  color: #64748b;
  margin: 10px 0 0;
  font-size: 14px;
}

.property-card-facts {
  color: #334155;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.property-card-fact {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.property-card-fact b {
  width: 30px;
  height: 30px;
  color: var(--red);
  background: linear-gradient(145deg, #fff8f6, #ffece8);
  border: 1px solid #f6d8d2;
  border-radius: 9px;
  place-items: center;
  display: inline-grid;
}

.property-card-fact svg {
  width: 17px;
  height: 17px;
}

.property-card-description {
  color: #64748b;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.property-card-link {
  color: var(--red);
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 850;
  display: inline-flex;
}

.property-card-link span {
  font-size: 19px;
  transition: transform .16s;
}

.property-card-link:hover span {
  transform: translateX(3px);
}

.catalog-empty {
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  margin-top: 42px;
  padding: 56px 24px;
}

.catalog-search-form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(150px, 1fr)) auto auto;
  align-items: center;
  gap: 8px;
  margin-top: 38px;
  padding: 10px;
  display: grid;
}

.catalog-search-form input, .catalog-search-form select {
  padding: 0 11px;
}

.category-filter-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-top: 24px;
  padding: 22px;
  box-shadow: 0 10px 28px #0f172a0a;
}

.category-filter-heading {
  border-bottom: 1px solid #eef2f7;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 18px;
  display: flex;
}

.category-filter-heading .eyebrow {
  margin: 0;
}

.category-filter-heading h2 {
  color: #0f172a;
  letter-spacing: -.035em;
  margin: 5px 0 0;
  font-size: 23px;
}

.category-filter-heading > p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.category-filter-form {
  gap: 16px;
  margin-top: 18px;
  display: grid;
}

.category-filter-primary, .category-filter-advanced > div {
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(130px, 1fr));
  gap: 12px;
  display: grid;
}

.category-filter-primary label, .category-filter-advanced label {
  color: #475569;
  gap: 7px;
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}

.category-filter-primary input, .category-filter-primary select, .category-filter-advanced input, .category-filter-advanced select {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 7px;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 500;
}

.category-filter-primary input:focus, .category-filter-primary select:focus, .category-filter-advanced input:focus, .category-filter-advanced select:focus {
  border-color: var(--red);
  outline: 3px solid #e2241b24;
}

.location-suggestion-field > div {
  position: relative;
}

.location-suggestion-field input:not([type="hidden"]) {
  padding-right: 36px;
}

.location-suggestion-clear {
  z-index: 1;
  color: #64748b;
  cursor: pointer;
  background: #eef2f7;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 18px;
  line-height: 1;
  display: grid;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.location-suggestion-clear:hover {
  color: var(--red);
  background: #fee2e2;
}

.location-suggestions {
  z-index: 8;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 8px;
  max-height: 260px;
  margin: 0;
  padding: 5px;
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: auto;
  box-shadow: 0 14px 32px #0f172a29;
}

.location-suggestions li button {
  color: #0f172a;
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 11px;
  display: flex;
}

.location-suggestions li button:hover {
  color: var(--red);
  background: #fff1ef;
}

.location-suggestions li button small {
  color: #64748b;
  font-size: 11px;
  font-weight: 650;
}

.location-suggestion-empty {
  color: #64748b;
  padding: 11px;
  font-size: 13px;
}

.category-filter-advanced {
  background: #f8fafc;
  border: 1px solid #e7ecf2;
  border-radius: 9px;
}

.category-filter-advanced summary {
  color: #0f172a;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  font-size: 14px;
  font-weight: 850;
  display: flex;
}

.category-filter-advanced summary span {
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
}

.category-filter-advanced > div {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 2px 14px 15px;
}

.price-range-filter {
  border: 0;
  grid-column: span 2;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.price-range-filter legend {
  color: #475569;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.price-range-values {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 7px;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 11px;
  font-size: 13px;
  display: flex;
}

.price-range-values strong {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  font-size: 13px;
  overflow: hidden;
}

.price-range-values span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}

.price-range-sliders {
  height: 28px;
  margin: 12px 3px 0;
  position: relative;
}

.price-range-track {
  background: #dbe2ea;
  border-radius: 999px;
  height: 4px;
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
}

.price-range-track i {
  border-radius: inherit;
  background: var(--red);
  position: absolute;
  top: 0;
  bottom: 0;
}

.price-range-sliders input {
  z-index: 2;
  appearance: none;
  pointer-events: none;
  background: none;
  width: 100%;
  height: 16px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 5px;
}

.price-range-sliders input::-webkit-slider-thumb {
  border: 3px solid var(--red);
  appearance: none;
  pointer-events: auto;
  cursor: grab;
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: 0 2px 5px #0f172a33;
}

.price-range-sliders input::-webkit-slider-thumb:active {
  cursor: grabbing;
}

.price-range-sliders input::-moz-range-thumb {
  border: 3px solid var(--red);
  pointer-events: auto;
  cursor: grab;
  background: #fff;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  box-shadow: 0 2px 5px #0f172a33;
}

.price-range-sliders input:focus-visible::-webkit-slider-thumb {
  outline-offset: 2px;
  outline: 3px solid #e2241b38;
}

.price-range-limits {
  color: #94a3b8;
  justify-content: space-between;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
}

.category-filter-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.category-filter-actions .button {
  min-height: 44px;
}

.catalog-empty h2 {
  color: #0f172a;
  margin: 0 0 8px;
  font-size: 24px;
}

.catalog-empty p {
  color: #64748b;
  margin: 0 0 22px;
  font-size: 15px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
  display: grid;
}

.category-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  min-height: 190px;
  padding: 26px;
  transition: border-color .16s, box-shadow .16s, transform .16s;
  position: relative;
}

.category-card:hover {
  border-color: #f0aaa4;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px #0f172a12;
}

.category-card-number {
  color: #f2a49d;
  font-family: var(--font-display);
  font-size: 34px;
}

.category-card h2 {
  color: #0f172a;
  margin: 26px 0 6px;
  font-size: 21px;
}

.category-card p {
  color: #64748b;
  margin: 0;
  font-size: 14px;
}

.category-card-arrow {
  color: var(--red);
  font-size: 25px;
  position: absolute;
  bottom: 22px;
  right: 24px;
}

.back-catalog-link {
  color: #64748b;
  margin-top: 34px;
  font-size: 14px;
  font-weight: 750;
  display: inline-flex;
}

.back-catalog-link:hover {
  color: var(--red);
}

.property-detail-page {
  padding-top: 42px;
}

.property-detail-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
  gap: 28px;
  margin-top: 28px;
  display: grid;
}

.property-detail-hero {
  background: #fff1ef;
  border-radius: 14px;
  min-height: 410px;
  overflow: hidden;
}

.property-detail-placeholder {
  color: #8b1e17;
  background: linear-gradient(135deg, #fce7e3, #fff1ef 55%, #e9eef5);
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding: 28px;
  display: flex;
}

.property-detail-placeholder span {
  background: #fffc;
  border-radius: 999px;
  align-self: flex-start;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 800;
}

.property-detail-placeholder strong {
  color: #8b1e178c;
  font-family: var(--font-display);
  letter-spacing: -.06em;
  align-self: flex-end;
  font-size: 46px;
}

.property-detail-media-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  display: grid;
}

.property-detail-media-grid img {
  object-fit: cover;
  width: 100%;
  height: 205px;
  display: block;
}

.property-detail-copy {
  padding: 28px 4px;
}

.property-detail-title-row {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  display: flex;
}

.property-detail-title-row h1 {
  flex: 1;
}

.property-detail-title-row .property-card-actions {
  flex: none;
  margin-top: 13px;
}

.property-detail-title-row .property-card-action {
  background: #fff8f6;
  border-color: #f3c9c3;
}

.property-detail-copy h1 {
  color: #0f172a;
  max-width: 760px;
  font-family: var(--font-body);
  letter-spacing: -.035em;
  margin: 10px 0 14px;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
}

.property-detail-location {
  color: #64748b;
  margin: 0;
  font-size: 16px;
}

.property-detail-price {
  font-size: 28px;
}

.property-detail-description {
  color: #475569;
  max-width: 740px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.property-detail-sidebar {
  align-content: start;
  gap: 16px;
  display: grid;
}

.property-detail-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.seller-profile {
  align-items: center;
  gap: 13px;
  margin: 14px 0 18px;
  display: flex;
}

.seller-profile > img, .seller-profile > span {
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
}

.seller-profile > span {
  background: var(--red);
  color: #fff;
  place-items: center;
  font-size: 15px;
  font-weight: 850;
  display: grid;
}

.seller-profile h2 {
  color: #0f172a;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.seller-profile p {
  color: #64748b;
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.seller-contact {
  color: #334155;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 750;
  display: block;
}

.seller-contact:hover {
  color: var(--red);
}

.property-detail-panel h2 {
  color: #0f172a;
  margin: 8px 0;
  font-size: 22px;
}

.property-detail-panel > p:not(.eyebrow):not(.property-detail-feature) {
  color: #64748b;
  font-size: 15px;
  line-height: 1.55;
}

.property-detail-facts {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
  display: grid;
}

.property-detail-facts div {
  border-top: 1px solid #eef2f7;
  padding-top: 10px;
}

.property-detail-facts dt {
  color: #94a3b8;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.property-detail-facts dd {
  color: #1e293b;
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 750;
}

.property-detail-feature {
  color: #15803d;
  margin: 8px 0;
  font-size: 14px;
  font-weight: 750;
}

.property-detail-cta {
  width: 100%;
  margin-top: 18px;
}

.benefits-section {
  background: #fff8f6;
  padding: 95px max(48px, 50% - 572px);
}

.section-heading h2, .process-section h2 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  margin: 13px 0 0;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.04;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 54px;
  display: grid;
}

.benefit-grid article {
  background: #fff;
  border: 1px solid #f6ded9;
  border-radius: 12px;
  min-height: 190px;
  padding: 26px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  color: var(--red);
  background: #fff0ed;
  border-radius: 10px;
  place-items: center;
  font-size: 25px;
  display: grid;
}

.benefit-grid h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

.benefit-grid p, .process-copy {
  color: #687381;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.process-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
  max-width: 1144px;
  margin: auto;
  padding: 100px 48px;
  display: grid;
}

.process-copy {
  max-width: 380px;
  margin: 22px 0 30px;
}

.process-list {
  gap: 0;
  display: grid;
}

.process-list > div {
  border-bottom: 1px solid #e8eaed;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  display: flex;
}

.process-list span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 25px;
}

.process-list p {
  color: #78818b;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.process-list strong {
  color: #111;
  font-size: 17px;
}

.public-footer {
  background: #fff;
  border-top: 1px solid #eceff3;
}

.public-footer-inner {
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, .75fr) minmax(180px, .55fr);
  align-items: start;
  gap: 34px;
  max-width: 1144px;
  margin: 0 auto;
  padding: 46px 48px 32px;
  display: grid;
}

.public-footer-brand .brand-logo {
  width: 154px;
}

.public-footer-brand p {
  color: #64748b;
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.public-footer-links {
  color: #475569;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  font-size: 14px;
  font-weight: 750;
  display: grid;
}

.public-footer-links a:hover, .public-footer-contact a:hover {
  color: var(--red);
}

.public-footer-contact {
  color: #64748b;
  justify-items: end;
  gap: 8px;
  font-size: 14px;
  display: grid;
}

.public-footer-contact span {
  color: #111;
  font-weight: 850;
}

.public-footer-contact a {
  color: #475569;
  font-weight: 750;
}

.public-footer-bottom {
  color: #94a3b8;
  border-top: 1px solid #eef2f7;
  max-width: 1144px;
  margin: 0 auto;
  padding: 18px 48px 30px;
  font-size: 12px;
  font-weight: 650;
}

.affiliate-page {
  background: #fdf8f7;
  min-height: 100vh;
}

.affiliate-header {
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(22px, 5vw, 70px);
  display: flex;
}

.affiliate-header .brand-logo {
  width: 155px;
}

.affiliate-login {
  color: #7b818a;
  font-size: 13px;
}

.affiliate-login strong {
  color: var(--black);
}

.affiliate-layout {
  grid-template-columns: minmax(300px, .82fr) minmax(480px, 1.18fr);
  gap: clamp(40px, 7vw, 110px);
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
}

.affiliate-intro {
  padding-top: 35px;
}

.affiliate-intro h1 {
  max-width: 450px;
  font-family: var(--font-display);
  letter-spacing: -.06em;
  margin: 14px 0 20px;
  font-size: clamp(44px, 5vw, 65px);
  line-height: .98;
}

.affiliate-lede {
  color: #6a747e;
  max-width: 430px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.affiliate-note {
  background: #fff;
  border: 1px solid #f1d9d4;
  border-radius: 10px;
  gap: 13px;
  margin-top: 40px;
  padding: 18px;
  display: flex;
}

.affiliate-note > span {
  color: var(--red);
}

.affiliate-note p {
  color: #7d858f;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.affiliate-note strong {
  color: #2d3237;
  font-size: 13px;
}

.affiliate-steps {
  gap: 20px;
  margin-top: 44px;
  display: grid;
}

.affiliate-step {
  color: #b6bdc4;
  align-items: center;
  gap: 13px;
  display: flex;
}

.affiliate-step span {
  border: 1px solid;
  border-radius: 50%;
  place-items: center;
  width: 27px;
  height: 27px;
  font-size: 11px;
  font-weight: 800;
  display: grid;
}

.affiliate-step p {
  margin: 0;
  font-size: 13px;
}

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

.affiliate-step small {
  margin-top: 3px;
  font-size: 11px;
}

.affiliate-step.active {
  color: var(--red);
}

.affiliate-step.active p {
  color: #363b40;
}

.signup-panel {
  background: #fff;
  border: 1px solid #f0dfdb;
  border-radius: 16px;
  min-height: 590px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 22px 60px #74453e17;
}

.signup-heading h2 {
  font-family: var(--font-display);
  letter-spacing: -.05em;
  margin: 12px 0 9px;
  font-size: 38px;
}

.signup-heading > p:last-child {
  color: #79838c;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.signup-form {
  margin-top: 32px;
}

.field-grid {
  gap: 19px;
  display: grid;
}

.field-grid label, fieldset {
  border: 0;
  gap: 8px;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  display: grid;
}

fieldset {
  margin: 0;
}

legend {
  margin-bottom: 1px;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
}

.optional {
  float: right;
  color: #a2aab1;
  font-weight: 500;
}

.field-grid input:not([type="radio"]):not([type="checkbox"]), .field-grid textarea {
  color: #222;
  background: #fff;
  border: 1px solid #e2e4e7;
  border-radius: 7px;
  outline: none;
  width: 100%;
  padding: 13px 14px;
  font-size: 14px;
}

.field-grid textarea {
  resize: vertical;
}

.field-grid input:focus, .field-grid textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px #e2241b17;
}

.choice-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  display: grid;
}

.choice {
  color: #64707a;
  cursor: pointer;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 13px 10px;
  font-weight: 650 !important;
  display: block !important;
}

.choice input {
  opacity: 0;
  position: absolute;
}

.choice.selected {
  border-color: var(--red);
  color: var(--red);
  background: #fff5f3;
}

.review-box {
  color: #78828b;
  background: #fff4f1;
  border-radius: 8px;
  gap: 6px;
  padding: 15px;
  font-size: 12px;
  display: grid;
}

.review-box strong {
  color: #252a2e;
  font-size: 16px;
}

.review-box small {
  color: #8c959d;
}

.terms {
  color: #7a848d;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  font-weight: 500 !important;
  display: flex !important;
}

.terms input {
  accent-color: var(--red);
  margin-top: 2px;
}

.signup-actions {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
  display: flex;
}

.signup-actions .button {
  min-width: 135px;
}

.signup-success {
  text-align: center;
  align-content: center;
  min-height: 480px;
  display: grid;
}

.success-mark {
  color: #39a469;
  background: #e5f6ed;
  border-radius: 50%;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  font-size: 30px;
  font-weight: 800;
  display: grid;
}

.signup-success h2 {
  max-width: 430px;
  font-family: var(--font-display);
  letter-spacing: -.05em;
  margin: 13px auto;
  font-size: 40px;
  line-height: .98;
}

.signup-success p:not(.eyebrow) {
  color: #7a858e;
  max-width: 410px;
  margin: 0 auto 25px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 18px 20px 20px;
  }

  .topbar-actions {
    width: 100%;
  }

  .topbar-actions .button {
    flex: 1;
    padding-inline: 12px;
  }

  .home-nav {
    display: none;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 22px 65px;
  }

  .home-hero h1 {
    font-size: 58px;
  }

  .home-lede {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 350px;
    margin: -15px -40px -20px;
    transform: scale(.84);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .home-search-hero {
    padding: 58px 22px 64px;
  }

  .home-search-inner h1 {
    font-size: 46px;
  }

  .home-search-form, .catalog-search-form {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-search-form {
    padding: 12px;
  }

  .home-search-form label {
    padding-inline: 4px;
  }

  .home-search-button {
    width: 100%;
  }

  .home-properties-section {
    padding: 68px 22px;
  }

  .home-property-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .catalog-page, .categories-page, .property-detail-page {
    padding: 48px 22px 76px;
  }

  .catalog-heading h1 {
    font-size: 48px;
  }

  .category-pills {
    margin-top: 30px;
  }

  .category-filter-panel {
    padding: 16px;
  }

  .category-filter-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .category-filter-primary, .category-filter-advanced > div {
    grid-template-columns: 1fr;
  }

  .category-filter-advanced > div {
    padding: 2px 12px 14px;
  }

  .price-range-filter {
    grid-column: auto;
  }

  .category-filter-advanced summary span {
    display: none;
  }

  .category-filter-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }

  .category-filter-actions .button, .category-filter-actions .filter-clear {
    text-align: center;
    width: 100%;
  }

  .property-grid, .category-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .property-detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .property-detail-layout > section, .property-detail-sidebar {
    min-width: 0;
  }

  .property-detail-hero, .property-detail-placeholder {
    min-height: 300px;
  }

  .property-detail-placeholder strong {
    font-size: 38px;
  }

  .property-detail-media-grid img {
    height: 150px;
  }

  .property-detail-copy h1 {
    font-size: 44px;
  }

  .benefits-section {
    padding: 68px 22px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .process-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 22px;
  }

  .public-footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 22px 26px;
  }

  .public-footer-links {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .public-footer-contact {
    justify-items: start;
  }

  .public-footer-bottom {
    padding: 18px 22px 86px;
  }

  .affiliate-header {
    padding: 18px 20px;
  }

  .affiliate-header .brand-logo {
    width: 130px;
  }

  .affiliate-login {
    font-size: 11px;
  }

  .affiliate-layout {
    padding: 25px 16px 45px;
    display: block;
  }

  .affiliate-intro {
    padding-top: 10px;
  }

  .affiliate-intro h1 {
    font-size: 48px;
  }

  .affiliate-steps, .affiliate-note {
    display: none;
  }

  .signup-panel {
    margin-top: 34px;
    padding: 27px 20px;
  }

  .signup-heading h2 {
    font-size: 34px;
  }

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

  .choice {
    text-align: left;
  }

  .signup-actions {
    justify-content: stretch;
  }

  .signup-actions .button {
    flex: 1;
    min-width: 0;
  }

  .home-search-tabs {
    margin-top: 28px;
  }

  .home-search-tablist {
    gap: 4px;
  }

  .home-search-tablist button {
    flex: 1;
    min-width: 0;
    padding: 11px 8px;
    font-size: 12px;
  }

  .home-search-tablist button span {
    width: fit-content;
    margin: 3px auto 0;
    display: block;
  }

  .home-ai-panel {
    padding: 18px;
  }

  .home-ai-intro h2 {
    font-size: 21px;
  }

  .home-ai-fields {
    grid-template-columns: 1fr;
  }

  .home-ai-form .home-search-button {
    width: 100%;
    padding-inline: 10px;
    font-size: 13px;
  }

  .home-ai-chat {
    border-radius: 14px;
    min-height: 0;
    margin-top: 28px;
  }

  .home-ai-chat-header {
    padding: 14px;
  }

  .home-ai-status {
    display: none;
  }

  .home-ai-conversation {
    min-height: 250px;
    max-height: 500px;
    padding: 20px 14px;
  }

  .home-ai-message {
    max-width: 96%;
  }

  .home-ai-message > div {
    font-size: 14px;
  }

  .home-ai-property-grid {
    grid-template-columns: 1fr;
  }

  .home-ai-property-card {
    grid-template-columns: 112px minmax(0, 1fr);
    display: grid;
  }

  .home-ai-property-image {
    height: 100%;
    min-height: 142px;
  }

  .home-ai-suggestions {
    padding: 0 14px 15px;
  }

  .home-ai-suggestions button {
    max-width: 100%;
  }

  .home-ai-composer {
    margin: 14px 14px 9px;
  }

  .home-ai-disclaimer {
    margin-inline: 14px;
  }

  .saved-nav-actions {
    z-index: 50;
    background: #fffffff7;
    border: 1px solid #f3c9c3;
    border-radius: 18px;
    justify-content: space-around;
    gap: 8px;
    margin: 0;
    padding: 9px 12px;
    display: flex;
    position: fixed;
    bottom: 14px;
    left: 16px;
    right: 16px;
    box-shadow: 0 12px 32px #0f172a33;
  }

  .saved-nav-action {
    border-color: var(--red);
    width: 44px;
    height: 44px;
    color: var(--red);
    background: #fff8f6;
  }
}

.auth-page {
  background: var(--page);
  place-items: center;
  min-height: 100vh;
  padding: 72px 24px;
  display: grid;
  position: relative;
}

.auth-page:before {
  content: "";
  background: var(--red);
  width: 100%;
  height: 5px;
  position: fixed;
  inset: 0 auto auto 0;
}

.back-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: 34px;
  left: clamp(22px, 5vw, 72px);
}

.back-link:hover {
  color: var(--black);
}

.auth-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  width: min(100%, 460px);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 28px 80px #00000014;
}

.auth-brand {
  margin-bottom: 46px;
}

.auth-heading h1 {
  letter-spacing: -.055em;
  margin: 7px 0 9px;
  font-size: clamp(32px, 5vw, 42px);
}

.auth-heading h1, .dashboard-header h1 {
  font-family: var(--font-display);
}

.auth-heading > p:last-child {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.form-error {
  color: #b42318;
  margin: 16px 0 -8px;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  color: var(--red);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
  font-size: 12px;
  font-weight: 850;
}

.auth-form {
  margin-top: 34px;
  display: grid;
}

.auth-form label {
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 750;
}

.auth-form input {
  background: var(--white);
  width: 100%;
  height: 52px;
  color: var(--black);
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  margin-bottom: 22px;
  padding: 0 15px;
}

.auth-form input::placeholder {
  color: #999;
}

.label-row {
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  display: flex;
}

.label-row a, .auth-footer a {
  color: var(--red);
  font-size: 13px;
  font-weight: 750;
}

.auth-submit {
  cursor: pointer;
  border: 0;
  width: 100%;
}

.auth-footer {
  text-align: center;
  color: var(--muted);
  margin: 26px 0 0;
  font-size: 14px;
}

.dashboard-shell {
  background: var(--page);
  color: #111827;
  gap: 20px;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  padding: 24px;
  display: flex;
}

.store-dashboard-page {
  font-family: var(--font-body);
  font-size: 15px;
}

.store-dashboard-sidebar {
  z-index: 2;
  background: var(--white);
  border: 1px solid #fecaca;
  border-radius: 8px;
  flex-direction: column;
  flex-shrink: 0;
  width: 76px;
  height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 12px;
  transition: width .18s;
  display: flex;
  position: sticky;
  top: 24px;
  box-shadow: 0 1px 2px #0f172a0d;
}

.store-dashboard-sidebar:not(.is-collapsed) {
  width: min(304px, 100vw - 48px);
  padding: 20px;
}

.store-dashboard-sidebar-head {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.store-dashboard-brand {
  min-width: 0;
  overflow: hidden;
}

.store-dashboard-brand .brand-logo {
  width: 160px;
  max-width: none;
}

.is-collapsed .store-dashboard-brand {
  display: none;
}

.store-dashboard-collapse {
  width: 40px;
  height: 40px;
  color: var(--red);
  cursor: pointer;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.store-dashboard-collapse svg {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  width: 16px;
  height: 16px;
}

.store-dashboard-nav {
  border-top: 1px solid #fecaca;
  flex: 1;
  min-height: 0;
  margin-top: 20px;
  padding-top: 20px;
  overflow: visible;
}

.store-dashboard-nav-group {
  gap: 4px;
  margin-bottom: 18px;
  display: grid;
}

.store-dashboard-nav-label {
  color: #64748b;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 750;
}

.store-dashboard-nav-item {
  color: #475569;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  height: 46px;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 650;
  transition: background .16s, color .16s;
  display: flex;
}

.is-collapsed .store-dashboard-nav-item {
  justify-content: center;
  padding: 0;
}

.store-dashboard-nav-item:hover {
  color: #111827;
  background: #f8fafc;
}

.store-dashboard-nav-item.is-active {
  color: var(--red);
  background: #fef2f2;
}

.dashboard-nav-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.store-dashboard-nav-item span {
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.store-dashboard-nav-item i {
  opacity: .8;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
}

.store-dashboard-back {
  color: #475569;
  border-top: 1px solid #fecaca;
  align-items: center;
  gap: 10px;
  height: 46px;
  margin-top: auto;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 650;
  display: flex;
}

.is-collapsed .store-dashboard-back {
  justify-content: center;
  padding: 0;
}

.store-dashboard-back:hover {
  color: var(--red);
}

.dashboard-main {
  flex: 1;
  min-width: 0;
  padding-bottom: 24px;
}

.store-dashboard-page > .dashboard-main > form {
  justify-content: flex-end;
  margin-bottom: 12px;
  display: flex;
}

.store-dashboard-logout {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 14px;
  font-weight: 650;
}

.store-dashboard-logout:hover {
  color: var(--red);
}

.dashboard-frame {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-height: calc(100vh - 88px);
  padding: 20px;
}

.dashboard-header {
  background: var(--white);
  min-height: 96px;
  color: var(--white);
  border: 0;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 20px;
  display: flex;
}

.dashboard-header h1 {
  color: #020617;
  letter-spacing: -.02em;
  margin: 4px 0 0;
  font-size: clamp(28px, 3vw, 32px);
}

.dashboard-header .eyebrow {
  color: #64748b;
}

.dashboard-subtitle {
  color: #64748b;
  max-width: 720px;
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.55;
}

.dashboard-header-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  display: flex;
}

.dashboard-notifications {
  position: relative;
}

.dashboard-notifications summary {
  width: 44px;
  height: 44px;
  color: var(--red);
  cursor: pointer;
  background: #fff8f6;
  border: 1px solid #f3c9c3;
  border-radius: 50%;
  place-items: center;
  list-style: none;
  display: grid;
  position: relative;
}

.dashboard-notifications summary::-webkit-details-marker {
  display: none;
}

.dashboard-notification-bell {
  color: var(--red);
  place-items: center;
  display: grid;
}

.dashboard-notification-bell svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  width: 21px;
  height: 21px;
}

.dashboard-notifications summary b {
  background: var(--red);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  place-items: center;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  display: grid;
  position: absolute;
  top: -5px;
  right: -4px;
}

.dashboard-notification-menu {
  z-index: 30;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  width: 285px;
  padding: 16px;
  position: absolute;
  top: 53px;
  right: 0;
  box-shadow: 0 16px 36px #0f172a24;
}

.dashboard-notification-menu > strong {
  color: #0f172a;
  margin-bottom: 10px;
  display: block;
}

.dashboard-notification-menu > p {
  color: #64748b;
  margin: 0;
  font-size: 13px;
}

.dashboard-notification-menu a {
  border-top: 1px solid #eef2f7;
  gap: 2px;
  padding: 10px 0;
  display: grid;
}

.dashboard-notification-menu a span, .dashboard-notification-menu a small {
  color: #64748b;
  font-size: 11px;
}

.dashboard-notification-menu a b {
  color: #0f172a;
  font-size: 13px;
}

.dashboard-notification-menu .dashboard-notification-all {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.seller-page-top-link {
  color: var(--red);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.profile-chip {
  background: var(--white);
  cursor: pointer;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 5px 12px 5px 5px;
  display: inline-flex;
}

.profile-chip > span:first-child {
  background: var(--red);
  width: 35px;
  height: 35px;
  color: var(--white);
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 850;
  display: grid;
}

.profile-name {
  font-size: 14px;
  font-weight: 750;
}

.dashboard-empty {
  background: var(--white);
  min-height: calc(100vh - 200px);
}

.dashboard-section {
  border-top: 1px solid #e2e8f0;
  margin: 12px 20px 0;
  padding: 24px 0 4px;
}

.dashboard-section:first-of-type {
  margin-top: 0;
}

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

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

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

.admin-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dashboard-metrics article, .dashboard-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.dashboard-metrics article {
  gap: 6px;
  min-height: 116px;
  padding: 18px;
  display: grid;
}

.dashboard-metrics span, .dashboard-metrics small {
  color: #64748b;
  font-size: 14px;
  font-weight: 750;
}

.dashboard-metrics strong {
  color: #0f172a;
  letter-spacing: -.04em;
  font-size: 28px;
}

.dashboard-panel {
  min-width: 0;
  padding: 20px;
}

.dashboard-panel-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.dashboard-panel-heading h2 {
  color: #0f172a;
  letter-spacing: -.035em;
  margin: 5px 0 0;
  font-size: 21px;
}

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

.dashboard-list a {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 7px;
  gap: 4px;
  padding: 13px;
  display: grid;
}

.dashboard-list a:hover {
  background: snow;
  border-color: #fecaca;
}

.dashboard-list strong {
  color: #111827;
  font-size: 16px;
}

.dashboard-list span {
  color: #64748b;
  font-size: 14px;
}

.dashboard-checklist {
  gap: 10px;
  display: grid;
}

.dashboard-checklist a {
  color: #334155;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 750;
  display: flex;
}

.dashboard-checklist span {
  background: #fecaca;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: inset 0 0 0 3px #fff;
}

.dashboard-empty-state {
  text-align: center;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  align-content: center;
  gap: 8px;
  min-height: 180px;
  padding: 24px;
  display: grid;
}

.dashboard-empty-large {
  min-height: 320px;
}

.dashboard-empty-state h3 {
  color: #0f172a;
  letter-spacing: -.025em;
  margin: 0;
  font-size: 19px;
}

.dashboard-empty-state p, .dashboard-copy {
  color: #64748b;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.profile-bio-form {
  max-width: 760px;
  margin-top: 20px;
}

.profile-bio-form textarea {
  resize: vertical;
  min-height: 170px;
}

.profile-bio-form small {
  color: #94a3b8;
  margin-top: 7px;
  font-size: 12px;
  display: block;
}

.profile-bio-actions {
  justify-content: flex-end;
  margin-top: 16px;
  display: flex;
}

.profile-save-message {
  color: #16804a;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 750;
}

.profile-save-message.error {
  color: var(--red);
}

.lead-form {
  gap: 14px;
  margin-top: 18px;
  display: grid;
}

.lead-form-intro {
  color: #64748b;
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.5;
}

.lead-form .field {
  gap: 7px;
}

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

.lead-form-message {
  color: var(--red);
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.lead-form-message.success {
  color: #16804a;
}

.lead-list {
  gap: 14px;
  display: grid;
}

.lead-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px;
}

.lead-card-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  display: flex;
}

.lead-card-heading h2 {
  color: #0f172a;
  margin: 5px 0 0;
  font-size: 20px;
}

.lead-card-heading .eyebrow {
  margin: 0;
}

.lead-contact-grid {
  color: var(--red);
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 750;
  display: flex;
}

.lead-card > p {
  color: #475569;
  margin: 15px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.lead-card > small {
  color: #94a3b8;
  margin-top: 13px;
  font-size: 12px;
  display: block;
}

.profile-summary {
  text-align: center;
  align-content: center;
  place-items: center;
  min-height: 280px;
  display: grid;
}

.profile-avatar {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 850;
  display: grid;
}

.profile-summary h2 {
  color: #0f172a;
  letter-spacing: -.035em;
  margin: 0;
  font-size: 22px;
}

.profile-summary p {
  color: #64748b;
  margin: 7px 0 18px;
  font-size: 13px;
}

.profile-summary-actions {
  justify-content: center;
  max-width: 100%;
  display: flex;
}

.profile-summary-actions .button {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.dashboard-detail-list {
  gap: 0;
  margin: 0;
  display: grid;
}

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

.dashboard-detail-list div {
  border-top: 1px solid #eef2f7;
  padding: 14px 0;
}

.dashboard-detail-grid div {
  border: 1px solid #eef2f7;
  border-radius: 7px;
  padding: 14px;
}

.dashboard-detail-list div:first-child {
  border-top: 0;
}

.dashboard-detail-list dt {
  color: #94a3b8;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.dashboard-detail-list dd {
  color: #334155;
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.message-tile {
  min-height: 172px;
}

.message-tile span {
  width: 38px;
  height: 38px;
  color: var(--red);
  background: #fef2f2;
  border-radius: 50%;
  place-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 850;
  display: grid;
}

.message-tile h2 {
  color: #0f172a;
  letter-spacing: -.035em;
  margin: 0 0 8px;
  font-size: 18px;
}

.message-tile p {
  color: #64748b;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.properties-panel {
  border-top: 1px solid #e2e8f0;
  margin: 12px 20px 0;
  padding: 24px 0 4px;
}

.properties-panel-standalone {
  margin-top: 0;
}

.properties-panel-heading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
  display: flex;
}

.properties-panel-heading h2, .properties-empty h3 {
  color: #020617;
  letter-spacing: -.035em;
  margin: 5px 0;
  font-size: 21px;
}

.properties-panel-heading p:last-child, .properties-empty p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

.properties-table-wrap {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow-x: auto;
}

.properties-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 900px;
  font-size: 14px;
}

.properties-table th {
  color: #64748b;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  background: #f8fafc;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 800;
}

.properties-table td {
  color: #475569;
  border-top: 1px solid #eef2f7;
  padding: 16px;
}

.properties-table td strong, .properties-table td small {
  display: block;
}

.properties-table td strong {
  color: #111827;
  font-size: 16px;
}

.properties-table td small {
  color: #94a3b8;
  margin-top: 4px;
}

.property-table-image, .property-table-placeholder {
  object-fit: cover;
  border-radius: 6px;
  width: 62px;
  height: 48px;
}

.property-table-placeholder {
  color: var(--red);
  background: #fff1ef;
  place-items: center;
  font-size: 23px;
  display: grid;
}

.property-table-actions {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.properties-pagination {
  color: #64748b;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 750;
  display: flex;
}

.table-action.disabled {
  cursor: not-allowed;
  opacity: .45;
  pointer-events: none;
}

.property-filters {
  grid-template-columns: minmax(180px, 1.5fr) repeat(3, minmax(130px, 1fr)) auto auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  display: grid;
}

.property-filters input, .property-filters select {
  color: #334155;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 6px;
  min-width: 0;
  height: 44px;
  padding: 0 11px;
  font-size: 14px;
}

.property-filters input:focus, .property-filters select:focus {
  border-color: var(--red);
  outline: 3px solid #e2241b1f;
}

.property-filters .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 14px;
}

.filter-clear {
  color: var(--red);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 750;
}

.property-status {
  color: #c2410c;
  background: #fff7ed;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.property-status.archived {
  color: #64748b;
  background: #f1f5f9;
}

.table-action {
  min-height: 36px;
  color: var(--red);
  background: #fff1f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: background .16s, border-color .16s, color .16s, transform .16s;
  display: inline-flex;
}

.table-action:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.table-action:focus-visible {
  outline-offset: 2px;
  outline: 3px solid #e2241b38;
}

.ai-admin-steps {
  color: #334155;
  gap: 9px;
  margin: 18px 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.45;
  display: grid;
}

.dashboard-note, .dashboard-panel-copy {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.dashboard-note {
  margin: 0 0 16px;
}

.dashboard-note code, .ai-admin-steps code {
  color: #0f172a;
  background: #f1f5f9;
  border-radius: 4px;
  padding: 2px 5px;
  font-size: .9em;
}

.ai-settings-form {
  gap: 18px;
  display: grid;
}

.ai-settings-form-heading {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  display: flex;
}

.ai-settings-form-heading h2 {
  color: #0f172a;
  letter-spacing: -.035em;
  margin: 5px 0 0;
  font-size: 21px;
}

.ai-settings-form .dashboard-panel-copy {
  margin: -4px 0 0;
}

.ai-settings-form .field {
  gap: 8px;
}

.ai-settings-form .field input, .ai-settings-form .field select {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 6px;
  min-width: 0;
  height: 46px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
}

.ai-settings-form .field input:focus, .ai-settings-form .field select:focus {
  border-color: var(--red);
  outline: 3px solid #e2241b1f;
}

.ai-model-field {
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .8fr);
  gap: 12px;
  display: grid;
}

.ai-toggle {
  color: #334155;
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.ai-toggle input {
  opacity: 0;
  position: absolute;
}

.ai-toggle span {
  background: #cbd5e1;
  border-radius: 999px;
  width: 38px;
  height: 22px;
  transition: background .16s;
  display: block;
  position: relative;
}

.ai-toggle span:after {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: transform .16s;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 1px 3px #0f172a2e;
}

.ai-toggle input:checked + span {
  background: #16804a;
}

.ai-toggle input:checked + span:after {
  transform: translateX(16px);
}

.ai-toggle input:focus-visible + span {
  outline-offset: 2px;
  outline: 3px solid #e2241b38;
}

.ai-settings-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  display: flex;
}

.ai-settings-actions button {
  cursor: pointer;
}

.ai-settings-actions button:disabled {
  cursor: wait;
  opacity: .58;
}

.ai-settings-message {
  border-radius: 6px;
  margin: -4px 0 0;
  padding: 11px 13px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.ai-settings-message.success {
  color: #15803d;
  background: #f0fdf4;
}

.ai-settings-message.error {
  color: #be123c;
  background: #fff1f2;
}

.properties-empty {
  text-align: center;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  align-content: center;
  place-items: center;
  gap: 8px;
  min-height: 280px;
  padding: 36px;
  display: grid;
}

.properties-empty-icon {
  width: 54px;
  height: 54px;
  color: var(--red);
  background: #fef2f2;
  border-radius: 50%;
  place-items: center;
  margin-bottom: 5px;
  font-size: 28px;
  display: grid;
}

.dashboard-form-main .dashboard-frame {
  padding: 20px 20px 36px;
}

.property-page-header {
  padding: 12px 0 28px;
}

.property-form {
  gap: 20px;
  margin: 0 20px;
  display: grid;
}

.property-form-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
}

.property-form-section-heading {
  margin-bottom: 22px;
}

.property-form-section-heading h2 {
  color: #0f172a;
  letter-spacing: -.03em;
  margin: 6px 0 5px;
  font-size: 22px;
}

.property-form-section-heading p:last-child {
  color: #64748b;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.property-form-grid {
  gap: 18px;
  display: grid;
}

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

.property-form-grid-five {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field {
  color: #334155;
  gap: 8px;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  display: grid;
}

.field label small, .field > span small {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
}

.field-span-2 {
  grid-column: span 2;
}

.field input, .field select, .field textarea {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 6px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
}

.field input, .field select {
  height: 46px;
  padding: 0 12px;
}

.field textarea {
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

.field select:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  outline: 3px solid #e2241b1f;
}

.checkbox-field {
  color: #334155;
  align-self: end;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  font-size: 15px;
  font-weight: 750;
  display: flex;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.image-dropzone {
  color: #475569;
  text-align: center;
  cursor: pointer;
  background: snow;
  border: 1px dashed #f0a5a0;
  border-radius: 8px;
  align-content: center;
  place-items: center;
  gap: 5px;
  min-height: 160px;
  display: grid;
}

.image-dropzone input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
}

.image-dropzone-icon {
  width: 38px;
  height: 38px;
  color: var(--red);
  background: #fef2f2;
  border-radius: 50%;
  place-items: center;
  font-size: 24px;
  display: grid;
}

.image-dropzone strong {
  color: #1e293b;
  font-size: 14px;
}

.image-dropzone small {
  color: #94a3b8;
  font-size: 12px;
}

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

.image-preview {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}

.image-preview img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  display: block;
}

.image-preview > div {
  color: #475569;
  justify-content: space-between;
  gap: 6px;
  padding: 8px;
  font-size: 11px;
  font-weight: 750;
  display: flex;
}

.image-preview small {
  color: #94a3b8;
  font-weight: 600;
}

.image-preview button {
  color: #fff;
  cursor: pointer;
  background: #111827cc;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 18px;
  display: grid;
  position: absolute;
  top: 6px;
  right: 6px;
}

.property-form-message {
  border-radius: 6px;
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.property-form-message.error {
  color: #be123c;
  background: #fff1f2;
}

.property-form-message.success {
  color: #15803d;
  background: #f0fdf4;
}

.upload-status {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.property-form-actions {
  justify-content: flex-end;
  gap: 10px;
  display: flex;
}

.property-form-actions .button[disabled] {
  cursor: wait;
  opacity: .6;
}

.property-wizard {
  gap: 20px;
  margin: 0 20px;
  display: grid;
}

.property-wizard section[hidden] {
  display: none;
}

.property-wizard-progress {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 4px 0 8px;
  display: grid;
}

.wizard-step {
  color: #94a3b8;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-bottom: 2px solid #e2e8f0;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  display: grid;
}

.wizard-step span {
  color: #64748b;
  background: #f1f5f9;
  border-radius: 50%;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 11px;
  font-weight: 850;
  display: grid;
}

.wizard-step small {
  font-size: 12px;
  font-weight: 800;
}

.wizard-step.active {
  border-color: var(--red);
  color: var(--red);
}

.wizard-step.active span, .wizard-step.done span {
  background: var(--red);
  color: #fff;
}

.wizard-step.done {
  color: #64748b;
  border-color: #fecaca;
}

@media (max-width: 760px) {
  .dashboard-shell {
    gap: 12px;
    padding: 12px;
  }

  .store-dashboard-sidebar {
    height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    top: 12px;
  }

  .dashboard-main {
    padding-bottom: 12px;
  }

  .dashboard-frame {
    min-height: calc(100vh - 48px);
    padding: 12px;
  }

  .profile-name {
    display: none;
  }

  .profile-chip {
    padding-right: 5px;
  }

  .properties-panel, .property-form, .property-wizard {
    margin-inline: 0;
  }

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

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

@media (max-width: 560px) {
  .dashboard-shell {
    display: block;
  }

  .store-dashboard-sidebar {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    position: relative;
    top: auto;
  }

  .store-dashboard-sidebar.is-collapsed {
    width: 100%;
  }

  .store-dashboard-sidebar.is-collapsed .store-dashboard-brand {
    display: block;
  }

  .store-dashboard-sidebar.is-collapsed .store-dashboard-brand .brand-logo {
    width: 160px;
  }

  .store-dashboard-sidebar.is-collapsed .store-dashboard-nav, .store-dashboard-sidebar.is-collapsed .store-dashboard-back {
    display: none;
  }

  .store-dashboard-sidebar:not(.is-collapsed) {
    width: 100%;
  }

  .dashboard-main {
    margin-top: 12px;
  }

  .property-detail-panel, .lead-form, .lead-form .field, .lead-form input, .lead-form textarea, .seller-profile > div {
    min-width: 0;
  }

  .seller-profile h2 {
    overflow-wrap: anywhere;
  }

  .property-detail-copy h1 {
    overflow-wrap: anywhere;
    font-size: clamp(34px, 11vw, 44px);
  }

  .property-detail-title-row {
    align-items: flex-start;
    gap: 10px;
  }

  .property-detail-title-row .property-card-actions {
    box-shadow: none;
    background: none;
    border: 0;
    flex: none;
    gap: 7px;
    margin: 7px 0 0;
    padding: 0;
    display: flex;
    position: static;
  }

  .property-detail-title-row .property-card-action {
    width: 46px;
    height: 46px;
    color: var(--red);
    background: #fff8f6;
    border-color: #f3c9c3;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .dashboard-header-actions {
    justify-content: space-between;
    width: 100%;
  }

  .dashboard-section {
    margin-inline: 0;
  }

  .dashboard-grid-two, .dashboard-grid-three, .dashboard-metrics, .dashboard-detail-grid {
    grid-template-columns: 1fr;
  }

  .properties-panel-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .property-filters {
    grid-template-columns: 1fr 1fr;
  }

  .property-filters input {
    grid-column: span 2;
  }

  .property-filters .button, .property-filters .filter-clear {
    text-align: center;
    width: 100%;
  }

  .properties-table {
    min-width: 0;
  }

  .properties-table thead {
    display: none;
  }

  .properties-table, .properties-table tbody, .properties-table tr, .properties-table td {
    width: 100%;
    display: block;
  }

  .properties-table tr {
    border-top: 1px solid #eef2f7;
    padding: 14px;
  }

  .properties-table tr:first-child {
    border-top: 0;
  }

  .properties-table td {
    border: 0;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    display: flex;
  }

  .properties-table td:first-child {
    padding-bottom: 8px;
    display: block;
  }

  .properties-table td:nth-child(3):before {
    content: "Modalidad";
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
  }

  .properties-table td:nth-child(4):before {
    content: "Ubicación";
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
  }

  .properties-table td:nth-child(5):before {
    content: "Estado";
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
  }

  .properties-table td:last-child {
    justify-content: stretch;
    padding-top: 10px;
  }

  .properties-table td:last-child .table-action {
    width: 100%;
  }

  .property-form-section {
    padding: 18px;
  }

  .property-form-grid-wide, .property-form-grid-five {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: auto;
  }

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

  .property-wizard-progress {
    gap: 2px;
  }

  .wizard-step {
    text-align: center;
    grid-template-columns: 26px;
    justify-content: center;
  }

  .wizard-step small {
    display: none;
  }

  .property-form-actions {
    flex-direction: column-reverse;
  }

  .property-form-actions .button {
    width: 100%;
  }

  .ai-settings-form-heading {
    flex-direction: column;
    gap: 13px;
  }

  .ai-model-field {
    grid-template-columns: 1fr;
  }

  .ai-settings-actions {
    flex-direction: column-reverse;
  }

  .ai-settings-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .auth-page {
    align-items: start;
    padding: 92px 16px 30px;
  }

  .auth-card {
    border-radius: 20px;
    padding: 28px 22px;
  }

  .auth-brand {
    margin-bottom: 34px;
  }

  .dashboard-header {
    padding-inline: 20px;
  }
}

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

  .topbar {
    gap: 16px;
  }

  .topbar-actions {
    margin-left: auto;
  }

  .saved-nav-actions {
    z-index: 50;
    background: #fffffff7;
    border: 1px solid #f3c9c3;
    border-radius: 18px;
    justify-content: space-around;
    margin: 0;
    padding: 9px 12px;
    position: fixed;
    bottom: 14px;
    left: 16px;
    right: 16px;
    box-shadow: 0 12px 32px #0f172a33;
  }
}

@media (max-width: 560px) {
  .seller-page {
    padding: 48px 22px 90px;
  }

  .seller-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .seller-properties {
    margin-top: 58px;
  }
}

.assistant-page {
  background: var(--red);
  min-height: 100vh;
}

.assistant-page main {
  width: min(100% - 32px, 1080px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 48px 0 80px;
}

.assistant-chat, .assistant-onboarding {
  background: #fff;
  border: 1px solid #e8e9ee;
  border-radius: 24px;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 18px 56px #0f172a14;
}

.assistant-onboarding {
  overflow: visible;
}

.assistant-chat .home-ai-chat-header {
  border: 0;
  border-bottom: 1px solid #edf0f4;
  border-radius: 0;
}

.assistant-ai-icon {
  object-fit: contain;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.assistant-ai-avatar {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
}

.assistant-preference-summary {
  color: #536273;
  background: #f8fafc;
  margin: 0;
  padding: 13px 28px;
  font-size: 14px;
}

.assistant-edit-preferences {
  color: var(--red);
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
}

.assistant-chat .home-ai-conversation {
  min-height: 380px;
  max-height: 62vh;
  padding: 28px;
}

.assistant-chat .home-ai-composer, .assistant-chat .home-ai-disclaimer {
  margin-inline: 28px;
}

.assistant-chat .home-ai-disclaimer {
  margin-bottom: 20px;
}

.assistant-match {
  color: #13795b !important;
  font-style: normal !important;
  font-weight: 800 !important;
}

.assistant-back-link {
  color: #fff;
  width: max-content;
  margin: 24px auto 0;
  font-weight: 700;
  display: block;
}

.assistant-onboarding > header {
  border-bottom: 1px solid #edf0f4;
  align-items: center;
  gap: 15px;
  padding: 34px 38px 22px;
  display: flex;
}

.assistant-ai-icon-large {
  flex-basis: 64px;
  width: 64px;
  height: 64px;
}

.assistant-onboarding > header p, .assistant-onboarding > header h1 {
  margin: 0;
}

.assistant-onboarding > header h1 {
  color: #172033;
  font-size: clamp(28px, 4vw, 38px);
}

.assistant-onboarding-progress {
  color: #667085;
  gap: 8px;
  padding: 18px 38px;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.assistant-onboarding-progress i {
  background: var(--red);
  border-radius: 99px;
  height: 5px;
  transition: width .2s;
  display: block;
}

.assistant-onboarding-card {
  padding: 18px 38px 36px;
}

.assistant-onboarding-card h2 {
  color: #172033;
  margin: 0 0 22px;
  font-size: 24px;
}

.assistant-choice-grid {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.assistant-choice-grid button {
  color: #384152;
  font: inherit;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
}

.assistant-choice-grid button.selected {
  border-color: var(--red);
  color: var(--red);
  background: #fff0ed;
}

.assistant-select {
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  padding: 14px;
}

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

.assistant-department-grid button {
  color: #253047;
  min-height: 58px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  align-content: center;
  padding: 13px 15px;
  font-weight: 800;
  display: grid;
}

.assistant-department-grid button:hover {
  background: #fff8f7;
  border-color: #f1a6a1;
}

.assistant-department-grid button.selected {
  border-color: var(--red);
  color: var(--red);
  background: #fff0ed;
}

.assistant-area-picker {
  position: relative;
}

.assistant-area-picker > input {
  color: #172033;
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #dce2ea;
  border-radius: 12px;
  outline: none;
  padding: 14px 44px 14px 15px;
}

.assistant-area-picker > input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px #e2241b1f;
}

.assistant-area-picker > input:disabled {
  cursor: not-allowed;
  color: #98a2b3;
  background: #f8fafc;
}

.assistant-area-picker > button {
  color: #64748b;
  cursor: pointer;
  background: #f1f5f9;
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 19px;
  display: grid;
  position: absolute;
  top: 9px;
  right: 10px;
}

.assistant-area-picker > ul {
  z-index: 100;
  background: #fff;
  border: 1px solid #e1e6ed;
  border-radius: 12px;
  max-height: 276px;
  margin: 0;
  padding: 6px;
  list-style: none;
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 16px 36px #0f172a29;
}

.assistant-area-picker li button {
  color: #253047;
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 11px 12px;
  font-weight: 700;
  display: block;
}

.assistant-area-picker li button:hover {
  color: var(--red);
  background: #fff1ef;
}

.assistant-area-picker li button strong, .assistant-area-picker li button small {
  display: block;
}

.assistant-area-picker li button small {
  color: #778397;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

.assistant-area-picker li button:hover small {
  color: currentColor;
}

.assistant-city-empty {
  color: #778397;
  padding: 12px;
  font-size: 14px;
}

.assistant-selected-zones {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  display: flex;
}

.assistant-selected-zones button {
  color: var(--red);
  font: inherit;
  cursor: pointer;
  background: #fff0ed;
  border: 1px solid #f4bbb6;
  border-radius: 999px;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.assistant-selected-zones span {
  font-size: 17px;
  line-height: .8;
}

.assistant-hint {
  color: #667085;
  margin: -10px 0 16px;
}

.assistant-budget {
  gap: 18px;
  display: grid;
}

.assistant-budget-amount {
  max-width: 430px;
}

.assistant-budget-amount label {
  color: #344054;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  display: grid;
}

.assistant-budget-amount input[type="number"] {
  color: #172033;
  font: inherit;
  border: 1px solid #dce2ea;
  border-radius: 10px;
  padding: 13px 14px;
}

.assistant-budget-amount input[type="number"]:focus {
  border-color: var(--red);
  outline: 3px solid #e2241b1f;
}

.assistant-budget-amount small {
  color: #667085;
  font-size: 12px;
  font-weight: 600;
}

.assistant-summary {
  color: #344054;
  background: linear-gradient(145deg, #f8fafc, #fff);
  border: 1px solid #e7ebf0;
  border-radius: 16px;
  padding: 22px;
}

.assistant-summary-heading {
  margin-bottom: 19px;
}

.assistant-summary-heading span {
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.assistant-summary-heading p {
  color: #667085;
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.assistant-summary dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  display: grid;
}

.assistant-summary dl > div {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 11px;
  min-width: 0;
  padding: 13px 14px;
}

.assistant-summary dt {
  color: #7b8798;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.assistant-summary dd {
  overflow-wrap: anywhere;
  color: #253047;
  margin: 5px 0 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.assistant-summary .assistant-summary-wide {
  grid-column: 1 / -1;
}

.assistant-onboarding-card footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  display: flex;
}

@media (max-width: 600px) {
  .assistant-page main {
    width: min(100% - 20px, 1080px);
    padding-top: 22px;
  }

  .assistant-onboarding > header, .assistant-onboarding-card, .assistant-onboarding-progress {
    padding-inline: 22px;
  }

  .assistant-chat .home-ai-conversation {
    padding: 18px;
  }

  .assistant-chat .home-ai-composer, .assistant-chat .home-ai-disclaimer {
    margin-inline: 18px;
  }

  .assistant-preference-summary {
    padding-inline: 18px;
  }

  .assistant-summary {
    padding: 17px;
  }

  .assistant-summary dl {
    grid-template-columns: 1fr;
  }

  .assistant-summary .assistant-summary-wide {
    grid-column: auto;
  }

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

/*# sourceMappingURL=casaya_web_app_globals_00unk83.css.map*/