@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap";

/* src/styles.css */
:root {
  font-family: "DM Sans", sans-serif;
  color: #242522;
  background: #f7f6f2;
  font-synthesis: none;
  --ink:#242522;
  --muted:#7f817a;
  --line:#e6e5de;
  --paper:#fff;
  --lime:#d5f065;
  --coral:#ff765c;
  --blue:#6177f4;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(circle at 80% -20%, #e9f1d5 0, transparent 31rem), #f7f6f2;
}
button,
input,
select {
  font: inherit;
}
button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.app-shell {
  min-height: 100vh;
}
.topbar {
  height: 78px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  gap: 50px;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 4;
}
.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.7px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.brand-mark {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  width: 29px;
  height: 29px;
  border-radius: 9px;
  font: 700 22px "Fraunces", serif;
  transform: rotate(-8deg);
}
.brand-dot {
  color: var(--coral);
}
.main-nav {
  display: flex;
  gap: 29px;
  height: 100%;
  align-items: center;
}
.main-nav button {
  height: 100%;
  color: var(--muted);
  font-size: 14px;
  position: relative;
}
.main-nav button.active {
  color: var(--ink);
  font-weight: 700;
}
.main-nav button.active:after {
  content: "";
  height: 3px;
  background: var(--coral);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  border-radius: 5px;
}
.nav-badge,
.filter-count {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--coral);
  color: #fff;
  border-radius: 20px;
  margin-left: 3px;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 17px;
}
.icon-button {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  position: relative;
}
.notification-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  top: 6px;
  right: 5px;
}
.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.avatar,
.mini-avatar {
  background: #d6e4cb;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #41533b;
  font-size: 11px;
  font-weight: 700;
}
.post-button,
.form-submit {
  background: var(--ink);
  color: #fff;
  padding: 12px 17px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero {
  min-height: 448px;
  display: flex;
  padding: 75px 10vw 60px 11vw;
  overflow: hidden;
  position: relative;
}
.hero-copy {
  width: 53%;
  z-index: 1;
}
.eyebrow,
.tiny-label,
.modal-kicker {
  font-size: 10px;
  letter-spacing: 1.3px;
  color: var(--coral);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero h1 {
  font: 700 clamp(45px, 5.1vw, 76px)/.96 "Fraunces", serif;
  letter-spacing: -3px;
  margin: 20px 0 18px;
}
.hero h1 em {
  color: var(--coral);
  font-style: normal;
}
.hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-search {
  height: 58px;
  max-width: 620px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 0 18px;
  box-shadow: 0 10px 28px #aeb0a21a;
}
.hero-search input {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 0;
  font-size: 14px;
}
.hero-search select {
  border: 0;
  color: var(--muted);
  outline: 0;
  max-width: 135px;
}
.hero-search button {
  background: var(--coral);
  color: #fff;
  width: 39px;
  height: 39px;
  border-radius: 5px;
  display: grid;
  place-items: center;
}
.search-divider {
  height: 24px;
  width: 1px;
  background: var(--line);
}
.hero-note {
  font-size: 11px;
  color: #8a8c84;
  margin-top: 16px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.hero-note svg {
  color: #6fa35a;
}
.hero-note span {
  color: #d0d1c9;
}
.hero-art {
  position: absolute;
  right: 8vw;
  top: 59px;
  width: 370px;
  height: 360px;
}
.art-card {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 25px 45px #6f724c20;
}
.card-back {
  background: #d9ed98;
  width: 210px;
  height: 275px;
  right: 17px;
  top: 5px;
  transform: rotate(12deg);
}
.card-front {
  background: var(--coral);
  width: 250px;
  height: 300px;
  right: 80px;
  top: 32px;
  transform: rotate(-8deg);
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.card-kicker {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
}
.card-front strong {
  font: 600 32px/1.02 "Fraunces", serif;
  margin-top: auto;
}
.card-arrow {
  font-size: 29px;
  margin-top: 18px;
}
.hero-stamp {
  position: absolute;
  background: var(--lime);
  border: 6px solid #f7f6f2;
  border-radius: 50%;
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 10px;
  line-height: 1.1;
  transform: rotate(11deg);
  bottom: 24px;
  right: 35px;
  z-index: 2;
}
.hero-stamp b {
  font: 700 16px "Fraunces", serif;
}
.art-orbit {
  position: absolute;
  border: 1px solid #cedbc0;
  border-radius: 50%;
  width: 340px;
  height: 150px;
  transform: rotate(-25deg);
  top: 100px;
  right: -20px;
}
.orbit-two {
  transform: rotate(50deg);
  width: 240px;
  height: 220px;
  right: 50px;
  top: 60px;
}
.category-strip,
.results-section {
  padding: 40px 8vw;
  border-top: 1px solid var(--line);
}
.section-heading,
.results-toolbar,
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-heading h2,
.results-toolbar h2 {
  font: 600 25px "Fraunces", serif;
  margin: 8px 0 0;
  letter-spacing: -.5px;
}
.text-button {
  font-size: 12px;
  font-weight: 700;
}
.text-button span {
  color: var(--coral);
  font-size: 18px;
  margin-left: 5px;
}
.category-list {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  overflow-x: auto;
  padding-bottom: 5px;
}
.category {
  min-width: 137px;
  height: 95px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .2s;
}
.category:hover,
.category.active {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.category.active {
  background: var(--ink);
  color: #fff;
}
.category-icon {
  font-size: 24px;
}
.category-name {
  font-size: 12px;
  font-weight: 600;
}
.category small {
  font-size: 10px;
  color: var(--muted);
}
.category.active small {
  color: #bdc0b8;
}
.results-toolbar {
  align-items: end;
}
.result-count {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-button,
.sort-control,
.view-toggle {
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 600;
}
.sort-control select {
  border: 0;
  outline: 0;
  font-size: 12px;
  background: transparent;
}
.view-toggle {
  padding: 3px;
}
.view-toggle button {
  height: 30px;
  width: 31px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--muted);
}
.view-toggle button.selected {
  background: var(--ink);
  color: #fff;
}
.filter-panel {
  background: #eeefe7;
  margin: 24px 0 0;
  padding: 18px;
  display: flex;
  align-items: end;
  gap: 28px;
  border-radius: 7px;
}
.filter-panel label {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-panel select {
  border: 0;
  background: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  min-width: 180px;
}
.filter-panel input {
  accent-color: var(--coral);
  min-width: 220px;
}
.filter-panel strong {
  color: var(--ink);
  font-size: 12px;
}
.clear-button {
  font-size: 12px;
  text-decoration: underline;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 29px;
}
.listing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px #5b604118;
}
.listing-image {
  height: 204px;
  position: relative;
  background: #eaeae5;
}
.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #ffffffde;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 10px;
}
.favorite {
  position: absolute;
  right: 11px;
  top: 11px;
  background: #fff;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #62655d;
}
.favorite.active {
  color: var(--coral);
}
.listing-info {
  padding: 14px 15px 15px;
}
.listing-meta {
  display: flex;
  justify-content: space-between;
  color: #96978f;
  font-size: 10px;
}
.listing-meta span {
  display: flex;
  gap: 4px;
  align-items: center;
}
.listing-info h3 {
  font-size: 15px;
  margin: 10px 0 8px;
  font-weight: 700;
}
.price {
  font-size: 17px;
}
.seller {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--muted);
}
.mini-avatar {
  width: 23px;
  height: 23px;
  font-size: 9px;
}
.verified {
  background: #d6ecba;
  color: #5e9848;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
}
.seller button {
  margin-left: auto;
  color: #8d9186;
}
.listing-list {
  margin-top: 29px;
}
.listing-list .listing-card {
  display: flex;
  margin-bottom: 12px;
}
.listing-list .listing-image {
  width: 190px;
  height: 130px;
  flex: none;
}
.listing-list .listing-info {
  flex: 1;
}
.empty-state {
  text-align: center;
  padding: 70px;
  color: var(--muted);
}
.empty-state h3 {
  color: var(--ink);
}
.trust-band {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 34px 10vw;
}
.trust-band > div {
  display: flex;
  gap: 15px;
  align-items: center;
}
.trust-band svg {
  color: var(--lime);
}
.trust-band strong,
.trust-band span {
  display: block;
}
.trust-band strong {
  font-size: 13px;
}
.trust-band span {
  font-size: 11px;
  color: #9ea298;
  margin-top: 4px;
}
.dashboard,
.messages-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 70px 30px;
}
.dashboard-head {
  align-items: center;
}
.dashboard h1,
.messages-page h1 {
  font: 600 46px "Fraunces", serif;
  letter-spacing: -1.5px;
  margin: 10px 0;
}
.dashboard-head p {
  color: var(--muted);
  font-size: 14px;
}
.profile-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 25px 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 35px;
}
.profile-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
}
.profile-panel h2 {
  margin: 0;
  font: 600 20px "Fraunces", serif;
}
.profile-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.outline-button {
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
}
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 15px 0 50px;
}
.dashboard-stats div {
  background: #eeefe7;
  padding: 19px;
  border-radius: 7px;
}
.dashboard-stats span,
.dashboard-stats small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.dashboard-stats strong {
  display: block;
  font: 600 28px "Fraunces", serif;
  margin: 10px 0 4px;
}
.dashboard-stats strong span {
  display: inline;
  color: var(--coral);
  font-size: 18px;
}
.dashboard-list h2 {
  font: 600 25px "Fraunces", serif;
  margin: 8px 0 0;
}
.my-listings {
  margin-top: 23px;
  border-top: 1px solid var(--line);
}
.my-item {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.my-item img {
  width: 68px;
  height: 58px;
  object-fit: cover;
  border-radius: 5px;
}
.my-item h3 {
  font-size: 13px;
  margin: 0 0 5px;
}
.my-item span {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.my-item > strong {
  margin-left: auto;
  font-size: 13px;
}
.status {
  background: #d9efc1;
  color: #60914d !important;
  border-radius: 20px;
  padding: 5px 9px;
  font-size: 10px !important;
}
.dots {
  color: var(--muted);
  letter-spacing: 2px;
}
.inbox-count {
  background: var(--lime);
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
}
.conversation-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 36px;
  height: 570px;
}
.conversation-layout aside {
  border-right: 1px solid var(--line);
  padding: 17px;
}
.message-search {
  background: #f3f3ee;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
}
.message-search input {
  border: 0;
  background: transparent;
  padding: 11px;
  outline: 0;
  width: 100%;
  font-size: 12px;
}
.conversation {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 15px 5px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.conversation.active {
  background: #f1f4df;
  border-radius: 5px;
}
.conversation span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.conversation strong {
  font-size: 12px;
}
.conversation small {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}
.conversation time {
  font-size: 10px;
  color: var(--muted);
  margin-left: auto;
  align-self: flex-start;
}
.conversation i,
.chat-head i {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.chat {
  display: flex;
  flex-direction: column;
}
.chat-head {
  height: 68px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 22px;
  gap: 11px;
}
.chat-head div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chat-head small {
  color: #6d9c56;
  font-size: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.chat-head .icon-button {
  margin-left: auto;
}
.chat-item {
  margin: 20px auto 5px;
  width: calc(100% - 45px);
  background: #f4f3ed;
  padding: 10px;
  display: flex;
  gap: 10px;
  border-radius: 5px;
}
.chat-item img {
  width: 52px;
  height: 45px;
  object-fit: cover;
  border-radius: 3px;
}
.chat-item span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.chat-item small {
  font-size: 9px;
  color: var(--muted);
}
.chat-item strong {
  font-size: 11px;
}
.chat-item b {
  font-size: 12px;
}
.chat-body {
  flex: 1;
  padding: 15px 23px;
  overflow: auto;
}
.date-separator {
  text-align: center;
  color: #aaa;
  font-size: 9px;
  letter-spacing: 1px;
  margin: 12px;
}
.bubble {
  max-width: 70%;
  padding: 11px 14px;
  border-radius: 4px;
  font-size: 12px;
  margin: 12px 0 4px;
}
.received {
  background: #f0f0eb;
}
.sent {
  background: #dceda3;
  margin-left: auto;
}
.chat-body time {
  display: block;
  font-size: 9px;
  color: #aaa;
}
.sent-time {
  text-align: right;
}
.chat-input {
  border-top: 1px solid var(--line);
  padding: 13px;
  display: flex;
  gap: 10px;
}
.chat-input button:first-child {
  color: var(--muted);
  display: grid;
  place-items: center;
}
.chat-input input {
  border: 0;
  background: #f5f5f0;
  border-radius: 4px;
  padding: 10px 12px;
  outline: 0;
  flex: 1;
  font-size: 12px;
}
.send-button {
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 700;
}
footer {
  padding: 28px 8vw;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 11px;
}
footer span:nth-child(3) {
  margin-left: auto;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: #2425228c;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal {
  background: #fff;
  border-radius: 10px;
  width: min(455px, 100%);
  padding: 35px;
  position: relative;
  box-shadow: 0 30px 70px #0003;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--muted);
}
.modal h2 {
  font: 600 27px "Fraunces", serif;
  margin: 9px 0 25px;
  max-width: 330px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.form label {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form input,
.form select {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  outline: 0;
  font-size: 13px;
  background: #fff;
}
.form input:focus,
.form select:focus {
  border-color: var(--coral);
}
.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.check-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  font-weight: 400 !important;
  color: var(--muted);
}
.check-row input {
  accent-color: var(--coral);
}
.form a {
  color: var(--coral);
  text-decoration: none;
}
.form-submit {
  justify-content: center;
  width: 100%;
  padding: 14px;
}
.form-foot {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
}
.upload-zone {
  border: 1px dashed #c5c9bb;
  background: #fafbf3;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--muted);
}
.upload-zone strong {
  font-size: 12px;
  color: var(--ink);
}
.upload-zone span {
  font-size: 10px;
}
.upload-zone div {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.upload-zone button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width:850px) {
  .topbar {
    padding: 0 20px;
    gap: 20px;
  }
  .main-nav {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .user-chip span:not(.avatar) {
    display: none;
  }
  .post-button {
    padding: 10px;
    font-size: 0;
  }
  .post-button svg {
    margin: 0;
  }
  .hero {
    padding: 55px 25px;
    min-height: 610px;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-art {
    opacity: .32;
    right: -90px;
    top: 295px;
    transform: scale(.83);
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero-search {
    max-width: none;
    flex-wrap: wrap;
    height: auto;
    padding: 12px;
  }
  .hero-search input {
    height: 29px;
    min-width: 130px;
  }
  .hero-search select {
    height: 29px;
    max-width: none;
    flex: 1;
  }
  .search-divider {
    display: none;
  }
  .hero-search button {
    margin-left: auto;
  }
  .category-strip,
  .results-section {
    padding: 32px 20px;
  }
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .listing-image {
    height: 160px;
  }
  .listing-info h3 {
    font-size: 13px;
  }
  .toolbar-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .results-toolbar {
    align-items: flex-start;
    gap: 20px;
  }
  .filter-panel {
    flex-wrap: wrap;
  }
  .trust-band {
    grid-template-columns: 1fr;
    padding: 28px 25px;
    gap: 20px;
  }
  .dashboard,
  .messages-page {
    padding: 42px 20px;
  }
  .dashboard h1,
  .messages-page h1 {
    font-size: 38px;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 35px;
  }
  .profile-panel {
    padding: 18px;
    flex-wrap: wrap;
  }
  .outline-button {
    margin-left: 75px;
  }
  .conversation-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  .conversation-layout aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .conversation:not(:first-of-type) {
    display: none;
  }
  .chat {
    min-height: 480px;
  }
  footer {
    flex-wrap: wrap;
    padding: 25px 20px;
  }
  footer span:nth-child(3) {
    margin-left: 0;
  }
  .my-item > strong {
    display: none;
  }
}
@media (max-width:500px) {
  .brand {
    font-size: 17px;
  }
  .header-actions .icon-button {
    display: none;
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .listing-image {
    height: 200px;
  }
  .section-heading,
  .results-toolbar {
    display: block;
  }
  .section-heading .text-button {
    margin-top: 15px;
  }
  .toolbar-actions {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .filter-panel {
    display: block;
  }
  .filter-panel label {
    margin-bottom: 14px;
  }
  .filter-panel input {
    width: 100%;
  }
  .dashboard-head .post-button {
    font-size: 12px;
    padding: 11px 13px;
    margin-top: 15px;
  }
  .dashboard-head {
    display: block;
  }
  .my-item {
    gap: 10px;
  }
  .my-item img {
    width: 55px;
    height: 50px;
  }
  .my-item span {
    font-size: 10px;
  }
  .modal {
    padding: 28px 20px;
  }
}
.my-actions {
  position: relative;
  margin-left: 0;
}
.listing-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 8px 20px #5b604118;
  padding: 4px;
  white-space: nowrap;
}
.listing-menu button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
}
.listing-menu button:hover {
  background: #fff1ed;
}

/* src/responsive.css */
.upload-zone .upload-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.upload-zone .upload-button input {
  display: none;
}
.upload-zone .camera-upload {
  display: none;
}
@media (max-width:850px) {
  .upload-zone > div {
    flex-direction: column;
    width: 100%;
    max-width: 230px;
  }
  .upload-zone .camera-upload {
    display: flex;
  }
}
.upload-preview {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 3px;
}
