@import "https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,400,0,0&display=swap";

/* src/styles.css */
:root {
  color-scheme: dark;
  font-family:
    Inter,
    Arial,
    sans-serif;
  color: #f4f4f2;
  background: #080808;
  --red:#e33333;
  --line:#2a2a2a;
  --muted:#9c9c9c;
  --panel:#0c0c0c;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #080808;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.icon {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
.app-shell {
  min-height: 100vh;
  background: #080808;
}
.qa-scale {
  transform: scale(.5);
  transform-origin: top left;
}
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 220px;
  border-right: 1px solid var(--line);
  background: #090909;
  z-index: 20;
  display: flex;
  flex-direction: column;
}
.brand {
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 34px;
  border-bottom: 1px solid #181818;
}
.brand img {
  width: 118px;
  height: 58px;
  object-fit: contain;
  object-position: left;
  filter: contrast(1.1);
}
.brand span {
  font: 700 12px/1 Inter, sans-serif;
  letter-spacing: .22em;
  margin-left: 17px;
  margin-top: -13px;
  color: #fafafa;
}
.sidebar nav {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}
.sidebar nav button,
.account-block > button {
  height: 62px;
  border: 0;
  border-left: 3px solid transparent;
  background: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  color: #c9c9c9;
  cursor: pointer;
  text-align: left;
}
.sidebar nav button {
  font-size: 13px;
  flex: 0 0 58px;
}
.sidebar nav button:hover,
.account-block > button:hover {
  background: #121212;
  color: #fff;
}
.sidebar nav .nav-active {
  background: #151515;
  border-left-color: var(--red);
  color: #fff;
}
.account-block {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
}
.account-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 18px;
}
.account-logo {
  width: 42px;
  height: 42px;
  border: 1px solid #555;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 800 11px Inter;
}
.account-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-row strong {
  font-size: 13px;
}
.account-row small {
  color: #ff4949;
  font-size: 12px;
}
.workspace {
  margin-left: 220px;
  min-height: 100vh;
  padding: 44px 28px 60px;
}
.mobile-header {
  display: none;
}
.page-heading {
  max-width: 1210px;
  margin: 0 auto 34px;
}
.page-heading p,
.modal-kicker {
  color: #ff4848;
  font: 800 12px Inter;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.page-heading h1 {
  font:
    900 clamp(48px, 5vw, 70px)/.88 "Barlow Condensed",
    Impact,
    sans-serif;
  letter-spacing: .01em;
  margin: 0;
}
.page-heading > span {
  display: block;
  color: #c7c7c7;
  margin-top: 12px;
}
.pwa-install {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pwa-install button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #555;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.pwa-install button:hover {
  border-color: var(--red);
}
.pwa-install small {
  color: #a6c9aa;
  max-width: 560px;
  line-height: 1.45;
}
.listing-layout {
  max-width: 1210px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(340px, 1.12fr) minmax(310px, .98fr);
  gap: 26px;
  align-items: start;
}
.photo-picker {
  position: relative;
  aspect-ratio: 1;
  border: 2px dashed #3b3b3b;
  background:
    linear-gradient(
      145deg,
      #111,
      #090909);
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.photo-picker:hover,
.photo-picker:focus-within {
  border-color: var(--red);
  background: #121010;
}
.photo-picker > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.photo-picker > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-picker-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px;
}
.photo-picker-empty b {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 35px rgba(227, 51, 51, .28);
}
.photo-picker-empty strong {
  font: 800 24px "Barlow Condensed";
  letter-spacing: .08em;
}
.photo-picker-empty small {
  color: #8e8e8e;
  line-height: 1.5;
  margin-top: 8px;
  max-width: 210px;
}
.replace-photo {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 46px;
  background: rgba(0, 0, 0, .86);
  border: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.ai-photo-tools {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.upload-action,
.ai-photo-action {
  min-height: 48px;
  border: 1px solid #3b3b3b;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  overflow: hidden;
}
.upload-action span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.upload-action input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.ai-photo-action {
  border: 0;
  background: var(--red);
}
.ai-photo-action:disabled {
  background: #282828;
  color: #777;
  cursor: not-allowed;
}
.ai-disclaimer {
  color: #777;
  font-size: 10px;
  line-height: 1.4;
  margin: 2px 0 0;
}
.ai-disclaimer.complete {
  color: #58c864;
}
.details-column {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field > span,
.fulfillment legend {
  font: 800 11px Inter;
  letter-spacing: .1em;
  color: #f5f5f5;
  width: 100%;
}
.field em,
.fulfillment em {
  color: var(--red);
  font-style: normal;
  font-size: 9px;
  margin-left: 6px;
}
.field small {
  float: right;
  color: #8a8a8a;
  font-weight: 500;
  letter-spacing: 0;
}
.field input,
.field select,
.field textarea,
.money-input {
  width: 100%;
  border: 1px solid #383838;
  background: #101010;
  color: #f1f1f1;
  min-height: 50px;
  padding: 0 14px;
  outline: none;
  border-radius: 1px;
}
.field textarea {
  padding: 14px;
  resize: vertical;
  line-height: 1.45;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.money-input:focus-within {
  border-color: #777;
  box-shadow: 0 0 0 1px #777;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.money-input {
  display: flex;
  padding: 0;
  align-items: center;
}
.money-input b {
  padding: 0 13px;
  border-right: 1px solid #333;
  color: #aaa;
}
.money-input input {
  border: 0;
  min-height: 48px;
}
.voice-input {
  display: flex;
  border: 1px solid #383838;
  background: #101010;
}
.voice-input:focus-within {
  border-color: #777;
  box-shadow: 0 0 0 1px #777;
}
.voice-input input,
.voice-input textarea {
  border: 0;
  box-shadow: none !important;
}
.voice-input button {
  flex: 0 0 50px;
  border: 0;
  border-left: 1px solid #333;
  background: #161616;
  color: #ddd;
  cursor: pointer;
}
.voice-input button:hover {
  color: white;
  background: #222;
}
.voice-textarea {
  align-items: stretch;
}
.voice-textarea button {
  align-self: stretch;
}
.voice-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -7px 0 0;
  color: #e9a337;
  font-size: 11px;
}
.fulfillment {
  border: 0;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.fulfillment legend {
  margin-bottom: 9px;
}
.fulfillment label {
  min-height: 62px;
  border: 1px solid #343434;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.fulfillment label.selected {
  border-color: #636363;
  background: #111;
}
.fulfillment input {
  accent-color: var(--red);
}
.fulfillment label span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fulfillment strong {
  font-size: 14px;
}
.fulfillment small {
  color: #999;
  font-size: 12px;
}
.delivery-routing {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #293b2c;
  background: #0c160e;
  color: #9acb9f;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  line-height: 1.5;
}
.delivery-routing span {
  display: block;
}
.delivery-routing strong {
  display: block;
  color: #d9f2dc;
  margin-bottom: 2px;
}
.publish-column {
  border-left: 1px solid #353535;
  padding-left: 24px;
}
.publish-heading {
  padding: 7px 0 17px;
  border-bottom: 1px solid var(--line);
}
.publish-heading div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.publish-heading strong,
.summary > strong {
  font-size: 12px;
  letter-spacing: .08em;
}
.publish-heading span {
  color: #9a9a9a;
  font-size: 12px;
}
.channel-list {
  border-bottom: 1px solid var(--line);
}
.channel-row {
  width: 100%;
  height: 67px;
  padding: 0 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  display: grid;
  grid-template-columns: 38px minmax(100px, 1fr) auto;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}
.channel-row:last-child {
  border-bottom: 0;
}
.channel-row:hover {
  background: #111;
}
.channel-off {
  opacity: .43;
}
.channel-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
  font-size: 18px;
  background: #222;
}
.mark-shopify {
  background: #72a934;
  color: white;
}
.mark-ebay {
  color: #f5d230;
  background: #181818;
}
.mark-facebook {
  background: #2365d8;
}
.mark-offerup {
  background: #06a689;
}
.mark-craigslist {
  color: #ad55d9;
  background: #1a1020;
}
.mark-mercari {
  color: #a2a2ff;
  background: #1c1c5a;
}
.channel-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.channel-name strong {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel-name small {
  color: #8d8d8d;
  font-size: 11px;
}
.channel-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  white-space: nowrap;
}
.channel-status.ready {
  color: #35c84a;
}
.channel-status.review {
  color: #f0a21a;
}
.channel-incompatible {
  opacity: .48;
  cursor: not-allowed;
}
.channel-incompatible:hover {
  background: none;
}
.channel-status.skipped {
  color: #999;
}
.summary {
  padding: 18px 0 15px;
}
.summary dl {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #aaa;
  font-size: 11px;
}
.summary dd {
  margin: 0;
  color: #cfcfcf;
  text-align: right;
  max-width: 62%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.primary-action {
  width: 100%;
  min-height: 60px;
  border: 0;
  background: var(--red);
  color: white;
  font: 800 13px Inter;
  letter-spacing: .13em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
}
.primary-action:hover {
  background: #f04444;
}
.primary-action:active {
  transform: translateY(1px);
}
.assurance {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 11px;
  justify-content: center;
}
.nav-scrim {
  display: none;
}
.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .78);
  display: grid;
  place-items: center;
  padding: 20px;
}
.review-modal {
  position: relative;
  width: min(520px, 100%);
  background: #101010;
  border: 1px solid #3a3a3a;
  padding: 36px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .65);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: none;
  cursor: pointer;
}
.review-modal h2 {
  font: 800 42px/.95 "Barlow Condensed";
  margin: 0 0 22px;
}
.review-product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #333;
}
.review-product img,
.review-photo-empty {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex: 0 0 80px;
}
.review-photo-empty {
  display: grid;
  place-items: center;
  background: #191919;
  color: #777;
}
.review-product div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-product span {
  color: #aaa;
  font-size: 13px;
}
.review-notes {
  padding: 18px 0;
}
.review-notes p {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #c7c7c7;
  font-size: 13px;
}
.review-notes .icon {
  color: #35c84a;
}
.review-notes p:last-child .icon {
  color: #f0a21a;
}
.secondary-action {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 1px solid #3d3d3d;
  background: none;
  cursor: pointer;
}
.success-state {
  text-align: center;
  padding-top: 16px;
}
.success-state > .icon {
  color: #35c84a;
}
.success-state p {
  color: #35c84a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}
.success-state span {
  display: block;
  color: #aaa;
  line-height: 1.55;
  margin: -4px auto 26px;
  max-width: 380px;
}
.data-screen {
  max-width: 1210px;
  margin: 0 auto;
}
.screen-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.screen-title-row p {
  color: #ff4848;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  margin: 0 0 9px;
}
.screen-title-row h1 {
  font:
    900 64px/.9 "Barlow Condensed",
    Impact,
    sans-serif;
  margin: 0;
}
.screen-title-row span {
  display: block;
  color: #aaa;
  margin-top: 10px;
}
.screen-action {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  background: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}
.empty-state {
  min-height: 300px;
  margin-top: 24px;
  border: 1px dashed #343434;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px;
}
.empty-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #181818;
  color: #d8d8d8;
  display: grid;
  place-items: center;
}
.empty-state h2 {
  font: 800 32px "Barlow Condensed";
  margin: 18px 0 6px;
}
.empty-state p {
  max-width: 500px;
  margin: 0;
  color: #8b8b8b;
  font-size: 13px;
  line-height: 1.55;
}
.empty-state > button {
  min-height: 46px;
  margin-top: 20px;
  border: 0;
  background: var(--red);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  cursor: pointer;
}
.table-tools {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0 14px;
}
.table-tools label {
  flex: 1;
  max-width: 430px;
  height: 48px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}
.table-tools input {
  width: 100%;
  color: white;
  background: none;
  border: 0;
  outline: 0;
}
.table-tools button {
  border: 1px solid #333;
  background: #101010;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
}
.data-table {
  margin-top: 24px;
  border-top: 1px solid #343434;
}
.data-head,
.data-row {
  display: grid;
  grid-template-columns: 2fr 1fr .7fr .8fr;
  gap: 20px;
  align-items: center;
}
.data-head {
  height: 44px;
  padding: 0 16px;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.data-row {
  width: 100%;
  min-height: 78px;
  padding: 12px 16px;
  border: 0;
  border-top: 1px solid #242424;
  background: none;
  text-align: left;
  cursor: pointer;
}
.data-row:hover {
  background: #111;
}
.data-row > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.data-row small {
  color: #7f7f7f;
}
.status-pill {
  justify-self: start;
  padding: 7px 9px;
  border: 1px solid #3d633e;
  color: #58cf64;
  background: #102012;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-pill.low-stock,
.status-pill.pending,
.status-pill.pickup-ready {
  color: #efaa35;
  border-color: #6d5120;
  background: #21190b;
}
.status-pill.draft {
  color: #aaa;
  border-color: #444;
  background: #181818;
}
.status-pill.shipped,
.status-pill.delivered,
.status-pill.paid,
.status-pill.ready {
  color: #63caed;
  border-color: #24596c;
  background: #0d1c22;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2c2c2c;
  border: 1px solid #2c2c2c;
  margin: 24px 0;
}
.metric-grid article {
  min-height: 150px;
  background: #0c0c0c;
  padding: 23px;
  display: flex;
  flex-direction: column;
}
.metric-grid span {
  color: #aaa;
  font-size: 12px;
}
.metric-grid strong {
  font: 800 38px "Barlow Condensed";
  margin: 18px 0 auto;
}
.metric-grid small {
  color: #6dcf75;
}
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}
.settings-panel {
  border: 1px solid #303030;
  background: #0c0c0c;
  padding: 22px;
}
.settings-wide {
  grid-column: 1/-1;
}
.settings-panel h2 {
  font: 700 28px "Barlow Condensed";
  margin: 0;
}
.settings-copy {
  color: #888;
  font-size: 12px;
  line-height: 1.5;
  margin: 7px 0 0;
}
.privacy-panel {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: start;
  gap: 16px;
  border-color: #31583a;
  background: #0b130d;
}
.privacy-panel > div > p {
  color: #9db3a1;
  max-width: 720px;
  font-size: 12px;
  line-height: 1.55;
  margin: 6px 0 0;
}
.privacy-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #17301d;
  color: #65d47a;
}
.settings-panel-title {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}
.settings-panel-title p {
  color: #888;
  margin: 4px 0 0;
  font-size: 12px;
}
.toggle input {
  position: absolute;
  opacity: 0;
}
.toggle span {
  width: 44px;
  height: 24px;
  border: 1px solid #444;
  background: #222;
  border-radius: 14px;
  position: relative;
  display: block;
  cursor: pointer;
}
.toggle span:after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #888;
  position: absolute;
  top: 3px;
  left: 4px;
  transition: .15s;
}
.toggle input:checked + span {
  background: var(--red);
  border-color: var(--red);
}
.toggle input:checked + span:after {
  background: white;
  transform: translateX(18px);
}
.setting-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
  color: #aaa;
  font-size: 11px;
}
.setting-field input,
.setting-field select {
  height: 45px;
  border: 1px solid #333;
  background: #111;
  color: white;
  padding: 0 12px;
}
.settings-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #282828;
  margin-top: 18px;
}
.settings-channels > span {
  min-height: 76px;
  background: #0d0d0d;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0 9px;
  padding: 12px;
  align-items: center;
}
.settings-channels .channel-mark {
  grid-row: 1/3;
  font-style: normal;
}
.settings-channels b {
  font-size: 12px;
  align-self: end;
}
.settings-channels small {
  color: #7f7f7f;
  align-self: start;
}
.message-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 570px;
  border: 1px solid #303030;
  margin-top: 24px;
}
.message-list {
  border-right: 1px solid #303030;
}
.message-list button {
  width: 100%;
  min-height: 86px;
  border: 0;
  border-bottom: 1px solid #242424;
  background: none;
  padding: 14px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
  text-align: left;
}
.message-list button:hover,
.message-list .selected-message {
  background: #151515;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  border: 1px solid #555;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.message-list button > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.message-list small,
.message-list time {
  color: #888;
  font-size: 10px;
}
.conversation {
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.conversation > p {
  color: #f24c4c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}
.conversation h2 {
  font: 700 32px "Barlow Condensed";
}
.bubble {
  margin-top: 32px;
  max-width: 390px;
  padding: 16px;
  background: #1b1b1b;
  line-height: 1.5;
}
.reply-box {
  margin-top: auto;
  display: flex;
  border: 1px solid #333;
  height: 50px;
}
.reply-box input {
  flex: 1;
  border: 0;
  background: none;
  padding: 0 14px;
  color: white;
}
.reply-box button {
  width: 52px;
  border: 0;
  background: var(--red);
}
.customer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.customer-grid article {
  min-height: 86px;
  border: 1px solid #2d2d2d;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
}
.customer-grid article > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.customer-grid small {
  color: #888;
}
.invoice-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #2b2b2b;
  border: 1px solid #2b2b2b;
  margin: 24px 0;
}
.invoice-summary article {
  min-height: 130px;
  background: #0c0c0c;
  padding: 21px;
  display: flex;
  flex-direction: column;
}
.invoice-summary span {
  color: #999;
  font-size: 12px;
}
.invoice-summary strong {
  font: 800 34px "Barlow Condensed";
  margin: 15px 0 auto;
}
.invoice-summary small {
  color: #6f6f6f;
}
.invoice-tabs {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
}
.invoice-tabs button {
  min-height: 43px;
  padding: 0 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #888;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}
.invoice-tabs button.active {
  color: #fff;
  border-bottom-color: var(--red);
}
.invoice-tabs .invoice-quick {
  margin-left: auto;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.invoice-table {
  margin-top: 10px;
}
.invoice-head,
.invoice-row {
  display: grid;
  grid-template-columns: .8fr .55fr 1.5fr .8fr .65fr .65fr;
  gap: 15px;
  align-items: center;
}
.invoice-head {
  min-height: 38px;
  padding: 0 12px;
  color: #707070;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
}
.invoice-row {
  width: 100%;
  min-height: 68px;
  padding: 10px 12px;
  border: 0;
  border-top: 1px solid #252525;
  background: none;
  text-align: left;
}
.invoice-row:hover {
  background: #111;
}
.invoice-type {
  justify-self: start;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid #275c39;
  color: #54d17a;
}
.invoice-type.purchase {
  border-color: #69511f;
  color: #e9ac3f;
}
.invoice-modal {
  position: relative;
  width: min(680px, 100%);
  background: #101010;
  border: 1px solid #3a3a3a;
  padding: 32px;
  max-height: calc(100vh - 30px);
  overflow-y: auto;
}
.invoice-modal h2 {
  font: 800 42px/.95 "Barlow Condensed";
  margin: 0 0 22px;
}
.invoice-kind {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.invoice-kind button {
  height: 52px;
  border: 1px solid #3b3b3b;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 800;
}
.invoice-kind button.active {
  border-color: var(--red);
  color: #fff;
  background: #211010;
}
.invoice-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.invoice-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.invoice-form-grid label:nth-child(2) {
  grid-column: span 1;
}
.invoice-form-grid label > span {
  color: #aaa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.invoice-form-grid input,
.invoice-form-grid select {
  height: 46px;
  border: 1px solid #383838;
  background: #0c0c0c;
  color: #fff;
  padding: 0 12px;
}
.invoice-total {
  margin: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 14px 0;
  display: flex;
  justify-content: flex-end;
  gap: 38px;
}
.invoice-total span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.invoice-total small {
  color: #777;
}
.invoice-total strong {
  color: #fff;
  font-size: 23px;
}
.status-pill.recorded,
.status-pill.due,
.status-pill.partial {
  color: #efaa35;
  border-color: #6d5120;
  background: #21190b;
}
@media (max-width: 1120px) {
  .listing-layout {
    grid-template-columns: minmax(280px, .9fr) minmax(330px, 1.1fr);
  }
  .publish-column {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid #353535;
    padding: 24px 0 0;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    column-gap: 28px;
  }
  .publish-heading,
  .channel-list {
    grid-column: 1;
  }
  .summary,
  .primary-action,
  .assurance {
    grid-column: 2;
  }
  .summary {
    grid-row: 1/3;
    padding-top: 7px;
  }
  .primary-action {
    align-self: end;
  }
}
@media (max-width: 760px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform .2s ease;
    width: 260px;
  }
  .sidebar-open {
    transform: translateX(0);
  }
  .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 15;
    border: 0;
    background: rgba(0, 0, 0, .72);
  }
  .workspace {
    width: 100%;
    margin-left: 0;
    padding: 0 16px 44px;
    overflow: hidden;
  }
  .mobile-header {
    display: flex;
    height: 72px;
    margin: 0 -16px 28px;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }
  .mobile-header .brand {
    height: auto;
    border: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .mobile-header .brand img {
    width: 70px;
    height: 40px;
  }
  .mobile-header .brand span {
    margin: 0;
    font-size: 10px;
  }
  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #333;
    background: #111;
  }
  .page-heading {
    margin-bottom: 26px;
    min-width: 0;
  }
  .page-heading h1 {
    font-size: 46px;
    overflow-wrap: anywhere;
  }
  .listing-layout {
    display: block;
    width: 100%;
  }
  .listing-layout > * {
    min-width: 0;
    width: 100%;
    margin-bottom: 26px;
  }
  .media-column {
    max-width: 520px;
  }
  .field-pair {
    gap: 10px;
  }
  .publish-column {
    grid-column: auto;
    display: block;
    border-left: 0;
    border-top: 1px solid #353535;
    padding: 24px 0 0;
  }
  .summary,
  .primary-action,
  .assurance,
  .publish-heading,
  .channel-list {
    grid-column: auto;
  }
  .channel-row {
    height: 70px;
  }
  .review-modal {
    padding: 30px 20px 22px;
  }
}
@media (max-width: 760px) {
  .screen-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .screen-title-row h1 {
    font-size: 50px;
  }
  .screen-action {
    width: 100%;
    justify-content: center;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .settings-grid,
  .customer-grid {
    grid-template-columns: 1fr;
  }
  .settings-wide {
    grid-column: auto;
  }
  .settings-channels {
    grid-template-columns: 1fr 1fr;
  }
  .message-layout {
    grid-template-columns: 1fr;
  }
  .message-list {
    border-right: 0;
  }
  .conversation {
    min-height: 420px;
  }
  .data-head {
    display: none;
  }
  .data-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .data-row > span:nth-child(2) {
    grid-column: 1;
    color: #888;
    font-size: 11px;
  }
  .data-row > span:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  .data-row .status-pill {
    grid-column: 2;
  }
  .table-tools {
    flex-direction: column;
  }
  .table-tools label {
    max-width: none;
  }
  .table-tools button {
    height: 44px;
    justify-content: center;
  }
}
@media (max-width: 760px) {
  .invoice-summary {
    grid-template-columns: 1fr;
  }
  .invoice-summary article {
    min-height: 105px;
  }
  .invoice-head {
    display: none;
  }
  .invoice-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .invoice-row > span:nth-child(3),
  .invoice-row > span:nth-child(4) {
    grid-column: 1;
    color: #999;
    font-size: 11px;
  }
  .invoice-row > strong:nth-child(5) {
    grid-column: 2;
    grid-row: 1;
  }
  .invoice-row .status-pill {
    grid-column: 2;
  }
  .invoice-form-grid {
    grid-template-columns: 1fr;
  }
  .invoice-kind {
    grid-template-columns: 1fr;
  }
  .invoice-modal {
    padding: 28px 18px 20px;
  }
  .invoice-tabs button {
    padding: 0 10px;
    font-size: 9px;
  }
}
@media (max-width: 430px) {
  .field-pair {
    grid-template-columns: 1fr 1fr;
  }
  .channel-row {
    grid-template-columns: 34px minmax(95px, 1fr) auto;
  }
  .channel-status {
    font-size: 0;
  }
  .channel-status svg {
    width: 21px;
    height: 21px;
  }
  .page-heading h1 {
    font-size: 46px;
  }
  .page-heading > span {
    font-size: 14px;
  }
}
/*# sourceMappingURL=app.css.map */
