:root {
  --bg: #f3eee6;
  --bg-soft: #fbf7f1;
  --card: rgba(255, 252, 247, 0.92);
  --card-strong: #fffaf3;
  --line: rgba(122, 97, 68, 0.14);
  --line-strong: rgba(122, 97, 68, 0.22);
  --text: #241d16;
  --muted: #6f6457;
  --accent: #cb7448;
  --accent-dark: #9d532f;
  --accent-soft: #f1dfcf;
  --accent-soft-strong: #ead4c0;
  --sage: #d8e6d6;
  --shadow: 0 20px 45px rgba(78, 58, 36, 0.08);
  --shadow-strong: 0 26px 60px rgba(78, 58, 36, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(236, 214, 190, 0.58), transparent 24%),
    radial-gradient(circle at top right, rgba(219, 232, 218, 0.42), transparent 22%),
    linear-gradient(180deg, #f8f3ec 0%, #f3eee6 48%, #f7f3ed 100%);
}

h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-family: "Fraunces", serif; letter-spacing: -0.02em; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.app {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

.auth-shell {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 40px);
}

.auth-card {
  width: min(1120px, 100%);
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.auth-visual,
.auth-form-card {
  border-radius: 24px;
  padding: 24px;
}

.auth-visual {
  background:
    radial-gradient(circle at top left, rgba(201, 111, 74, 0.16), transparent 28%),
    linear-gradient(180deg, #fff6ed 0%, #fffdf8 100%);
  border: 1px solid #ead8c5;
  display: grid;
  gap: 18px;
}

.auth-form-card {
  background: #fffdf9;
  border: 1px solid #efe0d1;
  display: grid;
  gap: 18px;
}

.auth-tabs,
.social-grid,
.toggle-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.inline-meta,
.auth-legal-links,
.site-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.text-button,
.button-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-feature-list,
.demo-credentials {
  display: grid;
  gap: 12px;
}

.auth-feature-list article,
.demo-credentials {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #ecdccc;
}

.demo-credentials p + p {
  margin-top: 6px;
}

.status-message {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #eac9bd;
  background: #fff3ef;
  color: #8f4a34;
}

.provider-note {
  font-size: 0.95rem;
}

.auth-legal-links a,
.site-footer-links a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
}

.verification-banner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.site-footer {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px 24px 30px;
}

.legal-shell {
  min-height: calc(100vh - 40px);
  display: grid;
  place-items: center;
}

.legal-card {
  width: min(860px, 100%);
  display: grid;
  gap: 16px;
}

.legal-copy {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.topbar,
.app-nav,
.card,
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 28px;
  margin-bottom: 18px;
  position: sticky;
  top: 14px;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand,
.topbar-actions,
.hero-actions,
.profile-row,
.section-heading,
.toolbar-actions,
.feature-title-row,
.action-bar,
.seller-strip,
.chat-header,
.match-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.action-bar {
  flex-wrap: wrap;
}

.brand-mark,
.brand-logo {
  flex: 0 0 auto;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #edc1a4 0%, #cf7647 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

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

.eyebrow {
  margin-bottom: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  font-weight: 800;
}

.search-box input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.search-box {
  min-width: 280px;
  flex: 1;
}

.primary-button,
.secondary-button,
.nav-tab {
  min-height: 52px;
  border: none;
  border-radius: 18px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.primary-button:hover,
.secondary-button:hover,
.nav-tab:hover {
  transform: translateY(-1px);
}

.primary-button {
  background: linear-gradient(135deg, #d27b4d 0%, #c7683c 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(201, 111, 74, 0.22);
}

.secondary-button {
  background: linear-gradient(180deg, #f3e3d5 0%, #eedbca 100%);
  color: var(--text);
  border: 1px solid rgba(185, 145, 108, 0.1);
}

.app-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border-radius: 24px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.social-button {
  flex: 1 1 220px;
}

.nav-tab {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
}

.nav-tab.active {
  background: #fffaf4;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: 0 10px 18px rgba(82, 58, 33, 0.08);
}

.screen-stack {
  display: grid;
}

.screen {
  display: none;
  gap: 18px;
}

.screen.active {
  display: grid;
  animation: screenEnter 0.28s ease;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(216, 230, 214, 0.56), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.94) 0%, rgba(255, 248, 239, 0.92) 100%);
}

.hero-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 0.98;
  max-width: 10ch;
  margin-bottom: 14px;
}

.hero-copy p {
  max-width: 58ch;
  color: var(--muted);
}

.notice-banner {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff1d7;
  border: 1px solid #ead2a7;
  color: #77561f;
}

.hero-actions {
  margin-top: 18px;
  flex-wrap: wrap;
}

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

.profile-summary {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top left, rgba(202, 116, 72, 0.1), transparent 26%),
    linear-gradient(180deg, #fffaf2 0%, #fffdf9 100%);
}

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

.soft-pill,
.value-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2e4d7 0%, #ecdcc9 100%);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(185, 145, 108, 0.1);
}

.value-pill {
  background: var(--sage);
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-lg {
  width: 68px;
  height: 68px;
}

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

.stat-grid article,
.spec-grid article,
.listing-item,
.match-item,
.chat-bubble,
.photo-thumb,
.feed-card,
.info-list article,
.step-list article,
.info-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.stat-grid article,
.spec-grid article,
.info-list article,
.step-list article,
.info-panel {
  padding: 14px;
}

.stat-grid span,
.spec-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: var(--muted);
}

.home-grid,
.browse-grid,
.sell-grid,
.messages-grid,
.profile-grid {
  display: grid;
  gap: 18px;
}

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

.browse-grid,
.sell-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.section-heading {
  justify-content: space-between;
  margin-bottom: 16px;
}

.info-list,
.step-list,
.listing-feed,
.match-list,
.chat-feed,
.photo-preview-grid {
  display: grid;
  gap: 12px;
}

.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.category-pill.active {
  background: linear-gradient(135deg, #d27b4d 0%, #c7683c 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(201, 111, 74, 0.18);
}

.category-pill:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.info-list article p {
  margin-top: 6px;
}

.browse-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.95) 0%, rgba(255, 248, 239, 0.92) 100%);
}

.range-control {
  display: grid;
  gap: 8px;
  min-width: 220px;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 97, 68, 0.08);
}

.search-alert-actions {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.feature-card {
  display: grid;
  gap: 0;
  background: var(--card-strong);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.map-panel {
  display: grid;
  gap: 12px;
}

.map-surface {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(206, 192, 173, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 192, 173, 0.25) 1px, transparent 1px),
    linear-gradient(180deg, #f7efe3 0%, #f2e6d6 100%);
  background-size: 34px 34px, 34px 34px, auto;
  overflow: hidden;
}

.map-radius-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(201, 111, 74, 0.35);
  background: rgba(201, 111, 74, 0.06);
}

.map-user-dot,
.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 800;
}

.map-user-dot {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: white;
  min-width: 56px;
}

.map-pin {
  cursor: pointer;
}

.feature-media {
  position: relative;
}

.feature-media img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.overlay-pill {
  position: absolute;
  top: 16px;
  right: 16px;
}

.feature-copy {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(122, 97, 68, 0.12);
  font-size: 0.9rem;
}

.details-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.details-gallery div,
.photo-thumb {
  overflow: hidden;
  border-radius: 18px;
}

.details-gallery img,
.photo-thumb img {
  width: 100%;
  height: 124px;
  object-fit: cover;
}

.details-body {
  display: grid;
  gap: 16px;
}

.section-heading h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.section-heading .eyebrow {
  margin-bottom: 6px;
}

.details-title-row,
.listing-item-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.favourite-trader-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.spec-grid,
.split-columns,
.two-col,
.three-col {
  display: grid;
  gap: 12px;
}

.spec-grid,
.split-columns,
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.form-layout {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.search-box input:hover {
  border-color: var(--line-strong);
}

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

.photo-thumb img {
  height: 118px;
}

.listing-feed {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.feed-card,
.listing-item {
  padding: 16px;
}

.feed-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.feed-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  background: linear-gradient(180deg, #f5ecdf 0%, #eee1d1 100%);
  border: 1px solid var(--line);
}

.feed-card .muted,
.feed-card h4,
.feed-card p,
.feed-card .chip-row,
.feed-card .listing-item-head {
  min-width: 0;
}

.feed-card p {
  overflow-wrap: anywhere;
}

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

.listing-action-button {
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  text-align: center;
}

.market-card {
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #fff8f0 100%);
  box-shadow: 0 18px 36px rgba(89, 63, 28, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(89, 63, 28, 0.14);
  border-color: rgba(216, 128, 89, 0.35);
}

.market-card-media {
  position: relative;
  padding: 18px 18px 0;
}

.market-card .market-card-media img {
  height: 208px;
  border-radius: 22px;
  transition: transform 0.3s ease;
}

.market-card:hover .market-card-media img {
  transform: scale(1.02);
}

.market-card-topline,
.market-card-quick {
  position: absolute;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.market-card-topline {
  top: 30px;
}

.market-card-quick {
  bottom: 12px;
  justify-content: flex-end;
}

.market-card-tag,
.market-card-icon {
  pointer-events: auto;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.market-card-icon {
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.market-card-icon:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

.market-card-icon:disabled {
  opacity: 0.76;
  cursor: default;
}

.market-card-body {
  display: grid;
  gap: 14px;
  padding: 18px 18px 20px;
}

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

.market-card-titlewrap {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.market-card-titlewrap h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.28;
}

.market-card-meta {
  margin: 0;
  font-size: 0.96rem;
}

.market-card-price {
  flex-shrink: 0;
  min-width: 92px;
}

.market-card-description {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.market-card-chips {
  min-height: 42px;
}

.market-card-chips span {
  background: rgba(255, 255, 255, 0.78);
}

.market-card-footer {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: end;
}

.market-card-trust {
  display: grid;
  gap: 4px;
  color: var(--muted);
  min-width: 0;
}

.market-card-trust strong {
  color: var(--text);
  font-size: 0.95rem;
}

.market-card-trust span {
  font-size: 0.86rem;
}

.market-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 190px;
}

.saved-search-card {
  display: grid;
  gap: 12px;
}

.saved-search-head {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: start;
}

.market-card .listing-action-button {
  min-height: 46px;
  padding: 10px 14px;
}

.chat-header {
  justify-content: space-between;
  margin-bottom: 12px;
}

.info-list article,
.step-list article,
.info-panel,
.match-item,
.chat-bubble,
.feed-card,
.spec-grid article,
.stat-grid article {
  box-shadow: 0 10px 24px rgba(82, 58, 33, 0.04);
}

.map-panel .muted,
.feature-copy .muted,
.details-body .muted,
.info-list .muted {
  color: #6b6053;
}

@keyframes screenEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-feed {
  min-height: 320px;
  max-height: 520px;
  overflow: auto;
  padding-right: 6px;
}

.chat-bubble {
  max-width: 78%;
  padding: 15px 16px;
}

.chat-bubble.self {
  justify-self: end;
  background: #f4e3d7;
}

.chat-bubble.other {
  background: #f8f4ee;
}

.message-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.message-attachment {
  margin-top: 10px;
}

.message-attachment img {
  width: 100%;
  max-width: 260px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.chat-form {
  display: grid;
  gap: 14px;
}

.trade-fairness-panel {
  min-height: 100%;
  align-content: start;
}

.trade-fairness-panel h4 {
  margin-bottom: 6px;
}

.file-upload-button {
  position: relative;
  overflow: hidden;
}

.file-upload-button,
.secondary-button.file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.file-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.match-item {
  width: 100%;
  text-align: left;
  padding: 14px;
  cursor: pointer;
}

.match-item.active {
  background: #fff5ea;
  border-color: #ddc0a5;
}

.match-copy {
  flex: 1;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 111, 74, 0.35);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .auth-card,
  .hero-card,
  .home-grid,
  .browse-grid,
  .sell-grid,
  .messages-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .browse-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  .app {
    padding: 12px;
  }

  .topbar,
  .app-nav,
  .auth-visual,
  .auth-form-card,
  .card,
  .hero-card {
    border-radius: 20px;
  }

  .topbar-actions,
  .toolbar-actions,
  .toggle-row,
  .verification-banner,
  .feature-title-row,
  .details-title-row,
  .chat-header,
  .action-bar,
  .auth-tabs,
  .social-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    min-width: 0;
  }

  .stat-grid,
  .spec-grid,
  .split-columns,
  .two-col,
  .three-col,
  .photo-preview-grid,
  .details-gallery {
    grid-template-columns: 1fr;
  }

  .listing-feed {
    grid-template-columns: 1fr;
  }

  .market-card-topline,
  .market-card-quick {
    left: 26px;
    right: 26px;
  }

  .market-card-footer,
  .market-card-header {
    grid-template-columns: 1fr;
    display: grid;
  }

  .market-card-actions {
    min-width: 0;
  }

  .feature-media img {
    height: 250px;
  }

  .chat-bubble {
    max-width: 100%;
  }
}
