/* Account hub — control centre for logged-in members */

.account-menu {
  min-width: 248px;
  padding: 8px;
  border-radius: 16px;
  box-shadow: 0 16px 40px #002f3428;
}
.account-menu-identity {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px !important;
  margin-bottom: 4px;
  border-radius: 12px !important;
  background: #f3f8f7;
}
.account-menu-identity:hover { background: #e7f2ef !important; }
.account-menu-identity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d7ebe6;
  color: #003b37;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}
.account-menu-identity-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-menu-identity-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.account-menu-identity-copy strong {
  font-size: 14px;
  color: #18352f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-menu-identity-copy small {
  font-size: 12px;
  font-weight: 600;
  color: #6a8182;
}
.account-menu a,
.account-menu button {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  font-size: 14px;
}
.account-menu-count {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #003b37;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.account-menu-count[hidden] { display: none !important; }
.account-menu-sep {
  height: 1px;
  margin: 6px 4px;
  background: #e4ecec;
}

.tabbar-sell {
  position: relative;
}
.tabbar-sell .ui-icon {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 50%;
  background: #003b37;
  color: #fff;
}
.tabbar-sell span { color: #003b37; font-weight: 800; }

.account-hub {
  background: #f5f8f7;
  min-height: calc(100dvh - 72px);
  padding: 0 0 48px;
}
.account-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px var(--content-gutter);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.account-sidebar {
  position: sticky;
  top: 88px;
  max-height: calc(100dvh - 88px - 24px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 16px;
  padding: 20px 14px;
}
.account-side-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 10px 18px;
  border-bottom: 1px solid #e8efef;
  margin-bottom: 12px;
}
.account-side-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #d7ebe6;
  color: #003b37;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  overflow: hidden;
}
.account-side-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.account-side-identity strong {
  font-size: 18px;
  letter-spacing: -0.3px;
  color: #18352f;
}
.account-side-identity a {
  font-size: 13px;
  font-weight: 700;
  color: #006d60;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.account-side-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-side-nav a,
.account-side-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #35514c;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  width: 100%;
}
.account-side-nav a:hover,
.account-side-nav button:hover {
  background: #f3f8f7;
  color: #003b37;
}
.account-side-nav a[aria-current="page"] {
  background: #e7f5f1;
  color: #003b37;
}
.account-side-nav .ui-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.account-side-count {
  margin-left: auto;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #003b37;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}
.account-side-count[hidden] { display: none !important; }
.account-side-sep {
  height: 1px;
  margin: 10px 8px;
  background: #e8efef;
}
.account-side-logout {
  color: #a33f25 !important;
}

.account-main {
  min-width: 0;
}
.account-head {
  margin: 0 0 20px;
}
.account-head h1 {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.8px;
  color: #18352f;
}
.account-head p {
  margin: 0;
  color: #6a8182;
  font-size: 14px;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.account-stat {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  padding: 16px 18px;
}
.account-stat strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.6px;
  color: #18352f;
  margin-bottom: 4px;
}
.account-stat span {
  font-size: 12px;
  font-weight: 700;
  color: #6a8182;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.account-card {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 0 0 16px;
}
.account-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.account-card-head h2 {
  margin: 0;
  font-size: 17px;
  color: #18352f;
}
.account-card-head a,
.account-card-head button {
  font-size: 13px;
  font-weight: 700;
  color: #006d60;
}
.account-notice {
  background: #f0faf8;
  border: 1px solid #bfe6df;
  color: #0a4a41;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 16px;
  font-size: 14px;
}
.sc-wizard-error {
  color: #b3261e;
  background: #fdecea;
  border: 1px solid #f3c2bd;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 14px 0 0;
  font-size: 14px;
}
.sc-wizard-error a { color: #b3261e; text-decoration: underline; }
.sc-wizard-error[hidden] { display: none; }
.account-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #f7faf9;
  text-align: left;
  width: 100%;
}
.account-list-row:hover { background: #eef6f3; }
.account-list-row strong {
  display: block;
  font-size: 14px;
  color: #18352f;
  margin-bottom: 4px;
}
.account-list-row small {
  color: #6a8182;
  font-size: 12px;
}
.account-list-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.account-list-actions a,
.account-list-actions button {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #d7e4e1;
  color: #003b37;
}
.account-list-actions a:hover,
.account-list-actions button:hover {
  background: #e7f5f1;
}

.account-note {
  padding: 12px 0;
  border-bottom: 1px solid #eef2f1;
}
.account-note:last-child { border-bottom: 0; }
.account-note p {
  margin: 0 0 4px;
  font-size: 14px;
  color: #35514c;
}
.account-note time {
  font-size: 11px;
  color: #879694;
}

.account-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.account-tabs button {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #51706b;
  background: #fff;
  border: 1px solid #dce6e3;
}
.account-tabs button[aria-selected="true"] {
  background: #003b37;
  border-color: #003b37;
  color: #fff;
}
.ads-tab-count {
  display: inline-block;
  margin-left: 4px;
  opacity: 0.7;
  font-weight: 600;
}
.ads-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.ads-search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  min-height: 44px;
  background: #fff;
  border: 1px solid #dce6e3;
  border-radius: 12px;
}
.ads-search .ui-icon { width: 16px; height: 16px; color: #6a8182; flex-shrink: 0; }
.ads-search input {
  flex: 1;
  border: 0;
  background: none;
  font: inherit;
  color: #18352f;
  min-height: 42px;
}
.ads-search input:focus { outline: none; }
.ads-toolbar select {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid #dce6e3;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #18352f;
}

/* ── Performance page: per-listing table ────────────────────────────────── */
.perf-table { display: flex; flex-direction: column; }
.perf-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px 70px 90px 90px;
  gap: 10px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px solid #eef3f2;
  font-size: 13px;
  color: #35514c;
}
a.perf-table-row:hover { background: #f7faf9; }
.perf-table-row:last-child { border-bottom: none; }
.perf-table-head {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6a8182;
}
.perf-table-title {
  font-weight: 700;
  color: #18352f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.perf-table-status {
  text-transform: capitalize;
  font-weight: 700;
  color: #0b6b4f;
}
@media (max-width: 640px) {
  .perf-table-row { grid-template-columns: minmax(0, 1fr) 50px 50px 60px; }
  .perf-table-status { display: none; }
}

/* ── Profile avatar upload ──────────────────────────────────────────────── */
.profile-avatar-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.profile-avatar-btn {
  display: inline-flex;
  cursor: pointer;
  margin-bottom: 8px;
}
.profile-avatar-card [data-avatar-status] {
  margin: 0;
  font-size: 12px;
  color: #6a8182;
}

/* ── Transactions ────────────────────────────────────────────────────────── */
.is-credit { color: #0b6b4f; }
.is-debit { color: #b3261e; }

.seller-ad {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  background: #fff;
  margin: 0 0 12px;
}
.seller-ad-media {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: #e8f0ee;
}
.seller-ad-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seller-ad-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #18352f;
}
.seller-ad-price {
  font-size: 15px;
  font-weight: 800;
  color: #003b37;
  margin: 0 0 8px;
}
.seller-ad-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #e7f5f1;
  color: #006d60;
  margin: 0 0 10px;
}
.seller-ad-status.is-pending { background: #fff4df; color: #9a6700; }
.seller-ad-status.is-sold { background: #e8eef5; color: #3a5470; }
.seller-ad-status.is-expired { background: #f1f1f1; color: #666; }
.seller-ad-status.is-draft { background: #f1f1f1; color: #6a6a6a; }
.seller-ad-status.is-rejected { background: #fdecea; color: #b3261e; }
.seller-ad-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: #5f7a6f;
}
.seller-ad-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.seller-ad-metrics .ui-icon { width: 14px; height: 14px; }
.seller-ad-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seller-ad-actions a,
.seller-ad-actions button {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #d7e4e1;
  background: #fff;
  color: #003b37;
}
.seller-ad-actions .is-primary {
  background: #003b37;
  border-color: #003b37;
  color: #fff;
}
.seller-ad-actions .is-boost {
  background: #e7f5f1;
  color: #0b6b4f;
  border-color: #9fd5c4;
}
.seller-ad-actions .is-boost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.boost-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
}
.boost-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 41, 36, 0.45);
}
.boost-sheet-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(86vh, 640px);
  overflow: auto;
  padding: 20px 18px 24px;
  border-radius: 16px 16px 0 0;
  background: #fff;
  box-shadow: 0 -12px 40px rgba(7, 41, 36, 0.18);
}
.boost-sheet-panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.boost-sheet-panel h2 {
  margin: 0;
  font-size: 20px;
  color: #18352f;
}
.boost-sheet-x {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #6a8182;
  cursor: pointer;
}
.boost-sheet-note {
  margin: 0 0 14px;
  font-size: 13px;
  color: #6a8182;
}
.boost-sheet-list { display: grid; gap: 8px; }
.boost-sheet-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #d7e4e1;
  border-radius: 10px;
  background: #f7faf9;
  text-align: left;
  cursor: pointer;
}
.boost-sheet-option:hover {
  border-color: #168e71;
  background: #eef8f4;
}
.boost-sheet-option strong { color: #18352f; }
.boost-sheet-option small {
  display: block;
  margin-top: 2px;
  color: #6a8182;
  font-size: 12px;
}
@media (min-width: 720px) {
  .boost-sheet { place-items: center; }
  .boost-sheet-panel { border-radius: 14px; margin: 24px; }
}

.account-settings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-settings section {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  padding: 18px 20px;
}
.account-settings h2 {
  margin: 0 0 14px;
  font-size: 16px;
  color: #18352f;
}
.account-settings dl {
  margin: 0;
  display: grid;
  gap: 12px;
}
.account-settings dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a8182;
  margin: 0 0 4px;
}
.account-settings dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #18352f;
}
.account-danger {
  border-color: #f0d2c8 !important;
  background: #fffaf8 !important;
}
.account-danger h2 { color: #a33f25; }
.account-danger p {
  margin: 0 0 14px;
  color: #7a5348;
  font-size: 13px;
}
.account-danger button {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e2b5a8;
  color: #a33f25;
}

.account-empty-panel {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  padding: 40px 28px;
  text-align: center;
}
.account-empty-panel h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #18352f;
}
.account-empty-panel p {
  margin: 0 auto 18px;
  max-width: 36ch;
  color: #6a8182;
  font-size: 14px;
  line-height: 1.55;
}
.account-empty-panel a,
.account-empty-panel button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #003b37;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.account-messages {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  overflow: hidden;
  min-height: 520px;
}
.account-msg-list {
  border-right: 1px solid #e8efef;
  overflow: auto;
  max-height: 70vh;
}
.account-msg-list button {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f4f3;
}
.account-msg-list button:hover,
.account-msg-list button.is-on {
  background: #f3f8f7;
}
.account-msg-list strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.account-msg-list span {
  display: block;
  font-size: 12px;
  color: #6a8182;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-msg-thread {
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.account-msg-thread-head {
  padding: 16px 18px;
  border-bottom: 1px solid #e8efef;
}
.account-msg-thread-head strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}
.account-msg-thread-head small {
  color: #6a8182;
  font-size: 12px;
}
.account-msg-thread .chat-messages {
  flex: 1;
  padding: 16px 18px;
  overflow: auto;
}
.account-msg-thread form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid #e8efef;
}
.account-msg-thread textarea {
  min-height: 48px;
  border: 1px solid #dce6e3;
  border-radius: 12px;
  padding: 12px 14px;
  resize: vertical;
  font: inherit;
}
.account-msg-thread form > button {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  background: #003b37;
  color: #fff;
  font-weight: 700;
}

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

@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 12px;
    gap: 22px;
  }
  .account-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
    min-width: 0;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
  }
  /* Nav carousel becomes the first thing under the page header; identity
     card and business/personal switcher follow below it. */
  .account-side-nav { order: -1; }
  .account-side-identity {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 2px 0;
    border-bottom: 0;
    border-top: 1px solid #e8efef;
    margin-bottom: 12px;
  }
  .account-side-avatar { width: 44px; height: 44px; font-size: 14px; }
  /* Sidebar becomes a horizontally scrollable carousel of icon chips. */
  .account-side-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
    margin: 0 -12px;
    padding: 2px 12px 6px;
  }
  .account-side-nav::-webkit-scrollbar { display: none; }
  .account-side-group {
    display: contents;
  }
  .account-side-group-label { display: none; }
  .account-side-sep { display: none; }
  .account-side-nav a,
  .account-side-nav button {
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 72px;
    min-height: 64px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px 4px;
    border-radius: 14px;
    background: #f6f9f8;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.2;
    white-space: normal;
  }
  .account-side-nav a[aria-current="page"] {
    background: #e7f5f1;
  }
  .account-side-nav .ui-icon { width: 20px; height: 20px; }
  .account-side-count {
    position: absolute;
    top: 4px;
    right: 4px;
    margin-left: 0;
  }
  .account-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-messages {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .account-msg-list { max-height: 280px; border-right: 0; border-bottom: 1px solid #e8efef; }
  .account-msg-thread { min-height: 420px; }
  .seller-ad { grid-template-columns: 72px minmax(0, 1fr); }
  .seller-ad-media { width: 72px; height: 72px; }
  .account-head h1 { font-size: 24px; }
}

@media (min-width: 901px) {
  body.is-account .tabbar { display: none; }
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.account-form-grid label,
.account-inline-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #254f39;
}
.account-form-grid input,
.account-form-grid select,
.account-form-grid textarea,
.account-inline-form input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #dce6e3;
  border-radius: 10px;
  background: #f7faf9;
  font: inherit;
  font-weight: 500;
  color: #18352f;
}
.account-form-grid textarea { min-height: 96px; resize: vertical; }
.account-form-grid .account-span { grid-column: 1 / -1; }
.account-form-grid fieldset.account-span {
  border: 1px solid #e4ecec;
  border-radius: 12px;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-form-grid fieldset.account-span legend {
  padding: 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: #18352f;
}
.account-check {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #35514c !important;
}
.account-check input { width: 18px; height: 18px; min-height: 0; }
.account-inline-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.account-inline-form input { flex: 1; min-width: 160px; }
.account-inline-form button,
.account-form-grid .auth-submit {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #003b37;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 700px) {
  .account-form-grid { grid-template-columns: 1fr; }
}

.ui-icon--fill { fill: currentColor; stroke: none; }
.account-head h1 .ui-icon { width: 22px; height: 22px; color: #168e71; vertical-align: -3px; }
.account-commission {
  margin: -8px 0 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #e7f5f1;
  color: #003b37;
  font-size: 14px;
  font-weight: 700;
}
.plan-toggle {
  display: inline-flex;
  gap: 6px;
  margin: 0 0 18px;
  padding: 4px;
  border-radius: 999px;
  background: #e8efee;
}
.plan-toggle button {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #51706b;
}
.plan-toggle button[aria-pressed="true"] {
  background: #003b37;
  color: #fff;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}
.plan-card {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card.is-popular {
  border-color: #168e71;
  box-shadow: 0 0 0 2px #168e7133;
}
.plan-card.is-current { background: #f3faf8; }
.plan-badge {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #006d60;
}
.plan-card h2 { margin: 0; font-size: 20px; color: #18352f; }
.plan-price { margin: 0; color: #18352f; }
.plan-price strong { font-size: 28px; letter-spacing: -.6px; }
.plan-price span { font-size: 13px; color: #6a8182; margin-left: 4px; }
.plan-note { margin: 0; font-size: 12px; color: #6a8182; line-height: 1.45; }
.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.plan-card li {
  font-size: 13px;
  color: #35514c;
  padding-left: 16px;
  position: relative;
}
.plan-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #168e71;
  font-weight: 800;
}
.plan-current {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #006d60;
}
.credit-packs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.credit-pack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 72px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid #d7e4e1;
  background: #f7faf9;
  text-align: left;
}
.credit-pack:hover { background: #e7f5f1; border-color: #168e71; }
.credit-pack strong { font-size: 15px; color: #18352f; }
.credit-pack span { font-size: 12px; color: #6a8182; font-weight: 700; }

/* Seller Centre / Business upgrade */
.sc-upgrade-link { color: #0b6b4f !important; font-weight: 700; }
.sc-benefit-grid,
.sc-next-grid,
.biz-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.sc-benefit,
.biz-benefits article {
  padding: 16px;
  border: 1px solid #d7e4e1;
  border-radius: 12px;
  background: #fff;
}
.sc-benefit h3,
.biz-benefits h2 { margin: 0 0 6px; font-size: 15px; }
.sc-benefit p,
.biz-benefits p { margin: 0; font-size: 13px; color: #6a8182; }
.sc-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.sc-note { font-size: 13px; color: #6a8182; }
.sc-step-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a8182;
}
.sc-progress {
  height: 6px;
  background: #e7efed;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 0 16px;
}
.sc-progress span { display: block; height: 100%; background: #168e71; }
.sc-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  border: 0;
  padding: 0;
  margin: 0;
}
.sc-choice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #d7e4e1;
  border-radius: 10px;
  background: #f7faf9;
  font-size: 13px;
  font-weight: 600;
}
.sc-choice:has(input:checked) {
  border-color: #168e71;
  background: #e7f5f1;
}
.sc-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.sc-plan {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1px solid #d7e4e1;
  border-radius: 12px;
  background: #fff;
}
.sc-plan.is-on,
.sc-plan:has(input:checked) {
  border-color: #168e71;
  background: #e7f5f1;
}
.sc-wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.sc-review-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e7efed;
}
.sc-review-row span { display: block; font-size: 12px; color: #6a8182; }
.sc-gate { max-width: 520px; padding: 28px 0; }
.sc-gate h1 { font-size: 28px; margin: 0 0 10px; }
.sc-promo-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  margin: 0 0 18px;
  border-radius: 14px;
  border: 1px solid #cfe8df;
  background: linear-gradient(135deg, #f3fbf7, #fff);
}
.sc-promo-card h2 { margin: 0 0 6px; font-size: 18px; }
.sc-promo-card p { margin: 0; color: #6a8182; font-size: 14px; }
.sc-switcher { position: relative; margin: 0 0 12px; }
.sc-switcher-btn {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7e4e1;
  background: #fff;
}
.sc-switcher-btn strong { display: block; font-size: 13px; }
.sc-switcher-btn span { font-size: 11px; color: #6a8182; }
.sc-switcher-menu {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid #d7e4e1;
  background: #fff;
  box-shadow: 0 12px 28px #002f3420;
}
.sc-switcher-label {
  margin: 8px 8px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a8182;
}
.sc-switcher-menu button,
.sc-switcher-add {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
}
.sc-switcher-menu button.is-on,
.sc-switcher-menu button:hover,
.sc-switcher-add:hover { background: #f3f8f7; }
.sc-store-preview {
  margin-top: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px dashed #c5d8d3;
  background: #f7faf9;
}
.sc-store-preview-cover {
  height: 72px;
  border-radius: 8px;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #0b6b4f, #2aad78);
}
.account-side-group { margin: 0 0 10px; }
.account-side-group-label {
  padding: 6px 10px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a8182;
}
.biz-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(45, 173, 120, 0.18), transparent 55%),
    linear-gradient(165deg, #f7f1e7, #efe8db);
}
.biz-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.biz-hero-inner { max-width: 720px; }
.biz-benefits { padding: 40px 0 64px; }
.sc-next-grid a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d7e4e1;
  background: #fff;
  font-weight: 700;
  color: #18352f;
}
.sc-next-grid a:hover { border-color: #168e71; background: #f3fbf7; }
.sc-verify-card ul { margin: 12px 0; padding-left: 18px; color: #6a8182; font-size: 14px; }
.sc-field-block { margin-bottom: 16px; }
.sc-field-block h3 { margin: 0 0 8px; font-size: 14px; }


/* Seller Centre / Business upgrade */
.sc-upgrade-link{color:#0b6b4f!important;font-weight:700}
.sc-benefit-grid,.sc-next-grid,.biz-benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px;margin:18px 0}
.sc-benefit,.biz-benefits article{padding:16px;border:1px solid #d7e4e1;border-radius:12px;background:#fff}
.sc-benefit h3,.biz-benefits h2{margin:0 0 6px;font-size:15px}
.sc-benefit p,.biz-benefits p{margin:0;font-size:13px;color:#6a8182}
.sc-cta-row{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0}
.sc-note{font-size:13px;color:#6a8182}
.sc-step-kicker{margin:0 0 6px;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#6a8182}
.sc-progress{height:6px;background:#e7efed;border-radius:999px;overflow:hidden;margin:0 0 16px}
.sc-progress span{display:block;height:100%;background:#0b6b4f;border-radius:999px}
.business-logo-upload { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 20px; background: #f3f8f7; border: 1px solid #d8dfe0; border-radius: 10px; margin-bottom: 16px; }
.business-logo-preview { display: grid; place-items: center; width: 80px; height: 80px; flex-shrink: 0; background: white; border: 1px solid #d8dfe0; border-radius: 12px; overflow: hidden; color: #406367; }
.business-logo-preview img, .business-logo-image { width: 80px; height: 80px; object-fit: contain; }
.business-logo-upload [hidden] { display: none !important; }
.business-logo-upload > div:last-of-type { flex: 1; min-width: 180px; }
.business-logo-upload label { display: flex; flex-direction: column; gap: 10px; font-weight: 700; font-size: 14px; }
.business-logo-upload input[type=file] { width: 100%; min-width: 0; font-size: 12px; }
.business-logo-upload p { margin: 8px 0 0; font-size: 12px; color: #406367; }
.business-logo-upload input::file-selector-button { border: 0; border-radius: 6px; padding: 9px 12px; background: #002f34; color: white; margin-right: 8px; }

/* ── Public storefront (/store/:slug) ──────────────────────────────────── */
.store-page { display: flex; flex-direction: column; }
.store-cover-wrap {
  position: relative;
  margin: 0 0 56px;
}
.store-cover {
  height: 220px;
  border-radius: 18px;
  background-color: #0b6b4f;
  background-size: cover;
  background-position: center;
}
.store-cover.is-placeholder {
  background-image: linear-gradient(135deg, #0b6b4f 0%, #006d60 55%, #003b37 100%);
}
.store-logo {
  position: absolute;
  left: 20px;
  bottom: -40px;
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: #d7ebe6;
  color: #003b37;
  display: grid;
  place-items: center;
  font-size: 32px;
  font-weight: 800;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 14px rgba(0, 47, 52, 0.15);
}
.store-logo img { width: 100%; height: 100%; object-fit: cover; }
.store-header { margin: 0 20px 24px; }
.store-header h1 {
  margin: 0 0 4px;
  font-size: 26px;
  letter-spacing: -0.6px;
  color: #18352f;
  display: flex;
  align-items: center;
  gap: 8px;
}
.store-verified { color: #0b6b4f; display: inline-flex; }
.store-verified .ui-icon { width: 20px; height: 20px; }
.store-meta { margin: 0; color: #6a8182; font-size: 14px; }

.store-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}
.store-card {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 16px;
  padding: 20px 22px;
  margin: 0 0 20px;
}
.store-card h2 { margin: 0 0 12px; font-size: 16px; color: #18352f; }
.store-card p { margin: 0; color: #35514c; font-size: 14px; line-height: 1.6; }
.store-listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.store-aside { position: sticky; top: 88px; }
.store-contact-list { display: flex; flex-direction: column; gap: 10px; }
.store-contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #dce6e3;
  color: #18352f;
  background: #f7faf9;
}
.store-contact-btn .ui-icon { width: 16px; height: 16px; flex-shrink: 0; }
.store-contact-btn.is-call { background: #003b37; border-color: #003b37; color: #fff; }
.store-contact-btn.is-whatsapp { background: #17a34a; border-color: #17a34a; color: #fff; }
.store-contact-btn:hover { filter: brightness(0.96); }
.store-hours { display: flex; flex-direction: column; gap: 2px; }
.store-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid #f0f4f3;
}
.store-hours-row:last-child { border-bottom: none; }
.store-hours-row span { color: #6a8182; }
.store-hours-row strong { color: #18352f; font-weight: 700; }

@media (max-width: 720px) {
  .store-body { grid-template-columns: 1fr; }
  .store-aside { position: static; }
  .store-cover-wrap { margin-bottom: 44px; }
  .store-cover { height: 140px; border-radius: 14px; }
  .store-logo { width: 72px; height: 72px; font-size: 24px; border-radius: 16px; bottom: -28px; }
  .store-header h1 { font-size: 21px; }
}

/* ── Storefront link card (Seller Centre → Storefront) ─────────────────── */
.store-link-card {
  background: linear-gradient(135deg, #f0faf8 0%, #fff 60%);
  border: 1px solid #d3e9e4;
  border-radius: 16px;
  padding: 20px 22px;
  margin: 0 0 16px;
}
.store-link-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b6b4f;
  margin: 0 0 10px;
}
.store-link-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.store-link-box {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 16px;
  min-height: 46px;
  background: #fff;
  border: 1px solid #cfe2dd;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #18352f;
  overflow: hidden;
  white-space: nowrap;
}
.store-link-box:hover { border-color: #0b6b4f; }
.store-link-domain { color: #6a8182; font-weight: 500; }
.store-link-path { color: #18352f; overflow: hidden; text-overflow: ellipsis; }
.store-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #003b37;
  background: #003b37;
  color: #fff;
  white-space: nowrap;
}
.store-link-btn .ui-icon { width: 16px; height: 16px; }
.store-link-btn.is-view { background: #fff; color: #003b37; }
.store-link-btn.is-copied { background: #0b6b4f; border-color: #0b6b4f; color: #fff; }
.store-link-note { margin: 12px 0 0; font-size: 13px; color: #6a8182; }
.store-link-note a { color: #006d60; font-weight: 700; }

@media (max-width: 520px) {
  .store-link-row { flex-direction: column; }
  .store-link-btn { justify-content: center; }
}

/* ── Support message thread (Contact Us + Seller Centre Help Centre) ─────── */
.support-thread-card { display: flex; flex-direction: column; }
.support-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding: 4px 2px;
  margin-bottom: 16px;
}
.support-msg { display: flex; flex-direction: column; max-width: 80%; }
.support-msg.is-mine { align-self: flex-end; align-items: flex-end; }
.support-msg.is-staff { align-self: flex-start; align-items: flex-start; }
.support-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.support-msg.is-mine .support-msg-bubble { background: #003b37; color: #fff; border-bottom-right-radius: 4px; }
.support-msg.is-staff .support-msg-bubble { background: #f0f4f3; color: #18352f; border-bottom-left-radius: 4px; }
.support-msg-meta { margin-top: 4px; font-size: 11px; color: #8fa4a1; }
.support-form { display: flex; flex-direction: column; gap: 10px; }
.support-form textarea {
  min-height: 84px;
  padding: 12px 14px;
  border: 1px solid #dce6e3;
  border-radius: 12px;
  background: #f7faf9;
  font: inherit;
  color: #18352f;
  resize: vertical;
}
.support-form .auth-submit { align-self: flex-end; }
.support-login-note {
  background: #f7faf9;
  border: 1px solid #dce6e3;
  border-radius: 14px;
  padding: 20px 22px;
  text-align: center;
  color: #35514c;
}
.support-login-note .btn-teal { display: inline-flex; margin-top: 12px; }

/* ── Leads ────────────────────────────────────────────────────────────────── */
.lead-list { display: flex; flex-direction: column; gap: 12px; }
.lead-row {
  background: #fff;
  border: 1px solid #e4ecec;
  border-radius: 14px;
  padding: 16px 18px;
}
.lead-row-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.lead-row-head strong { font-size: 15px; color: #18352f; margin-right: 8px; }
.lead-status {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #e7f5f1;
  color: #006d60;
}
.lead-status.is-new { background: #fff4df; color: #9a6700; }
.lead-status.is-closed { background: #f1f1f1; color: #666; }
.lead-time { font-size: 12px; color: #8fa4a1; }
.lead-ad { margin: 8px 0 0; font-size: 13px; color: #6a8182; }
.lead-ad a { color: #006d60; font-weight: 700; }
.lead-message { margin: 8px 0 0; font-size: 14px; color: #35514c; background: #f7faf9; border-radius: 10px; padding: 10px 12px; white-space: pre-wrap; }
.lead-actions { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.lead-actions select { min-height: 38px; border-radius: 10px; border: 1px solid #dce6e3; padding: 0 10px; font: inherit; font-size: 13px; color: #18352f; margin-left: auto; }

/* ── Marketplace Insights ─────────────────────────────────────────────────── */
.insight-card { margin: 0 0 16px; }
.insight-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}
.insight-stat strong { display: block; font-size: 20px; font-weight: 800; color: #18352f; }
.insight-stat span { display: block; font-size: 12px; color: #6a8182; margin-top: 2px; }
.insight-stat em { font-style: normal; font-weight: 700; }
.insight-stat em.is-up { color: #b3261e; }
.insight-stat em.is-down { color: #0b6b4f; }
.insight-subs { border-top: 1px solid #eef3f2; padding-top: 12px; }
.insight-subs h3 { margin: 0 0 8px; font-size: 13px; color: #18352f; }
.insight-sub-row { display: flex; justify-content: space-between; font-size: 13px; color: #35514c; padding: 5px 0; }

/* ── Bulk Upload ─────────────────────────────────────────────────────────── */
.bulk-table { display: flex; flex-direction: column; overflow-x: auto; }
.bulk-table-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) 90px minmax(0, 1fr) 110px;
  gap: 10px;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid #eef3f2;
  font-size: 13px;
  color: #35514c;
  white-space: nowrap;
}
.bulk-table-row:last-child { border-bottom: none; }
.bulk-table-head { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; color: #6a8182; }
.bulk-status { font-weight: 700; }
.bulk-status.is-valid { color: #0b6b4f; }
.bulk-status.is-error, .bulk-status.is-failed { color: #b3261e; }
.bulk-status.is-uploading { color: #9a6700; }
.bulk-status.is-done { color: #006d60; }

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.review-summary { font-size: 14px; font-weight: 700; color: #18352f; white-space: nowrap; }
.review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  margin: 0 0 18px;
  background: #f7faf9;
  border: 1px solid #e4ecec;
  border-radius: 12px;
}
.review-form label { font-size: 13px; font-weight: 700; color: #35514c; display: flex; flex-direction: column; gap: 6px; }
.review-form select,
.review-form textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #d7e3e1;
  border-radius: 8px;
  background: #fff;
  color: #18352f;
  resize: vertical;
}
.review-form .auth-submit { align-self: flex-start; }
.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-row { padding: 12px 0; border-bottom: 1px solid #eef3f2; }
.review-row:last-child { border-bottom: none; padding-bottom: 0; }
.review-row-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.review-row-head strong { font-size: 14px; color: #18352f; }
.review-stars { color: #e6a400; font-size: 14px; letter-spacing: 1px; }
.review-comment { margin: 0 0 6px !important; color: #35514c; font-size: 14px; line-height: 1.6; }
.review-time { font-size: 12px; color: #6a8182; }

/* ── Team ────────────────────────────────────────────────────────────────── */
.btn-text {
  background: none;
  border: none;
  padding: 6px 4px;
  font-size: 13px;
  font-weight: 700;
  color: #35514c;
  cursor: pointer;
}
.btn-text:hover { text-decoration: underline; }
.btn-text.is-danger { color: #b3261e; }
.team-invite-list,
.team-member-list { display: flex; flex-direction: column; margin-top: 16px; }
.team-invite-row,
.team-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #eef3f2;
}
.team-invite-row > div:first-child,
.team-member-row > div:first-child { display: flex; flex-direction: column; gap: 2px; }
.team-invite-row strong,
.team-member-row strong { font-size: 14px; color: #18352f; }
.team-invite-row .muted,
.team-member-row .muted { font-size: 12px; color: #6a8182; }
.team-invite-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
