:root {
  color-scheme: light;
  --ink: #18201c;
  --muted: #63706a;
  --line: #dce4df;
  --paper: #fbfcf9;
  --panel: #ffffff;
  --green: #1f7a5a;
  --teal: #0e6f78;
  --coral: #d45c43;
  --gold: #b88413;
  --blue: #335d9a;
  --shadow: 0 18px 60px rgba(24, 32, 28, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  min-height: 40px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  border-color: #aab7b0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.primary-action,
.inline-form button {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.ghost {
  background: transparent;
}

.scan-action.is-ready {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 900;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 28px 14px;
  border-bottom: 1px solid var(--line);
  background: #f5f8f4;
}

.product-hero {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #143f33;
  font-size: 0.98rem;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(31, 122, 90, 0.2));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.04;
  text-align: center;
}

h2 {
  margin-bottom: 4px;
  font-size: 2rem;
}

h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.lede {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.35;
}

.tabs {
  display: grid;
  gap: 8px;
}

.tab {
  justify-content: flex-start;
  text-align: left;
}

.tab.is-active {
  border-color: var(--green);
  background: #e1f0e8;
  color: #15543e;
  font-weight: 800;
}

.panel,
.totals-column,
.items-column {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.payment-summary-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #edf1ee;
}

.payment-summary-row {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.4;
}

.payment-summary-row strong {
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.payment-summary-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.4;
}

.payment-total-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid rgba(31, 122, 90, 0.16);
  border-radius: 999px;
  background: #f4faf6;
  color: #52615a;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.payment-total-inline strong {
  color: #14513d;
  font-size: 0.9rem;
}

.panel-heading span,
.section-heading span {
  color: var(--muted);
  font-size: 0.86rem;
}

.step-title-stack {
  display: grid;
  gap: 3px;
}

.step-title-stack h3 {
  font-size: 1.1rem;
}

.step-title-stack .step-eyebrow {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.content {
  min-width: 0;
  padding: 24px 28px 28px;
}

.view {
  display: none;
}

.view.is-visible {
  display: block;
}

.topbar,
.section-heading,
.panel-heading,
.button-row,
.inline-form,
.item-top,
.item-actions,
.person-chip,
.total-row,
.audit-row,
.settle-actions,
.section-actions {
  display: flex;
  align-items: center;
}

.topbar,
.section-heading,
.panel-heading,
.item-top,
.total-row,
.audit-row {
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  justify-content: center;
  text-align: center;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  gap: 16px;
  margin: 22px 0;
}

.panel,
.items-column,
.totals-column {
  border-radius: 8px;
  padding: 18px;
}

.scanner-panel {
  display: grid;
  gap: 14px;
}

.scanner-panel.is-scanning .dropzone {
  border-color: rgba(31, 122, 90, 0.5);
}

.dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  border: 1px dashed #aeb9b2;
  border-radius: 8px;
  background: #f8faf7;
  color: var(--muted);
  cursor: pointer;
}

.dropzone input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.dropzone img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  background: #111;
}

.photo-status {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(31, 122, 90, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(235, 247, 239, 0.96);
  color: #1f7a5a;
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 1;
}

.scan-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(248, 250, 247, 0.94);
  color: var(--ink);
  text-align: center;
  z-index: 2;
}

.scan-overlay strong {
  font-size: 1rem;
}

.scan-overlay span {
  color: var(--muted);
  font-size: 0.9rem;
}

.scan-loader {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(31, 122, 90, 0.16);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: scan-spin 0.9s linear infinite;
}

@keyframes scan-spin {
  to {
    transform: rotate(360deg);
  }
}

textarea,
input[type="text"],
input[type="number"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.45;
}

.manual-entry-panel[hidden] {
  display: none;
}

.button-row,
.item-actions,
.section-actions {
  gap: 8px;
  flex-wrap: wrap;
}

.button-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.button-row button {
  width: 100%;
  min-height: 44px;
  white-space: nowrap;
}

.button-row .ghost {
  color: var(--muted);
}

.split-evenly-action {
  border-color: rgba(31, 122, 90, 0.3);
  background: #fff;
  color: var(--green);
  font-weight: 900;
}

.split-evenly-action:hover {
  border-color: var(--green);
  background: #f4faf6;
}

.undo-split-action {
  border-color: #d6ddd8;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.undo-split-action:hover {
  border-color: #aab7b0;
  color: var(--ink);
}

.step-footer {
  display: grid;
}

.continue-action {
  min-height: 44px;
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  font-weight: 900;
}

.continue-action:disabled {
  background: #e5e9e6;
  border-color: #d6ddd8;
  color: #7a847f;
}

.review-continue {
  min-height: 40px;
  padding: 0 16px;
}

.people-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-form {
  gap: 8px;
}

.inline-form input {
  min-width: 0;
}

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

.person-chip {
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfb;
}

.person-chip[draggable="true"] {
  cursor: grab;
}

.avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
}

.remove-person {
  margin-left: auto;
  width: auto;
  min-height: 32px;
  padding: 0 10px;
  color: var(--muted);
}

.people-step-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.people-step-area[hidden] {
  display: none;
}

.step-panel {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.review-area {
  margin-top: 14px;
}

.workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

body[data-stage="people"] .workbench,
body[data-stage="review"] .workbench,
body[data-stage="assign"] .workbench {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.items-list,
.totals-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.item-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px auto auto;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.item-form[hidden] {
  display: none;
}

.item-form button {
  min-width: 72px;
}

.review-money-panel {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.review-money-heading,
.review-item-actions,
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-money-heading h4 {
  margin: 0;
  font-size: 1rem;
}

.review-money-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.review-money-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.review-money-group {
  display: grid;
  align-items: end;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(28, 45, 38, 0.08);
  border-radius: 8px;
  background: #fff;
}

.review-breakdown {
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr);
}

.review-compare,
.review-tip {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.75fr);
}

.tip-preset-row {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.tip-preset {
  min-height: 32px;
  padding: 0 12px;
  border-color: rgba(31, 122, 90, 0.24);
  border-radius: 999px;
  background: #f4faf6;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.tip-preset.is-selected {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.tip-preset:focus-visible {
  outline: 3px solid rgba(31, 122, 90, 0.18);
  outline-offset: 2px;
}

@media (hover: hover) {
  .tip-preset:hover:not(.is-selected) {
    border-color: rgba(31, 122, 90, 0.44);
    background: #eaf5ef;
  }
}

.review-group-title {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.review-group-note {
  grid-column: 1 / -1;
  margin-top: -6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.review-money-grid label,
.review-total-readout {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-money-grid small,
.review-total-readout small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
}

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

.label-row small {
  flex: 0 0 auto;
  text-align: right;
}

.review-total-readout {
  align-content: end;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcf9;
}

.money-input {
  position: relative;
  display: block;
}

.money-input span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 900;
  pointer-events: none;
}

.money-input input {
  width: 100%;
  padding-left: 28px;
  text-align: right;
}

.review-total-readout strong {
  color: var(--ink);
  font-size: 1rem;
}

.review-balance-message {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 750;
}

#reviewBalanceText {
  line-height: 1.35;
}

.review-status {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 4px 9px;
  background: #f4f0e6;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.review-balance-message.needs-review {
  border: 1px solid rgba(184, 132, 19, 0.32);
  background: #fff8dd;
  color: #775a10;
}

.review-balance-message.needs-review .review-status {
  background: #f6c94c;
  color: #4f3b00;
}

.review-balance-message.is-ok {
  border: 1px solid rgba(31, 122, 90, 0.28);
  background: #eef8f2;
  color: #14513d;
}

.review-balance-message.is-ok .review-status {
  background: #bfe6cf;
  color: #14513d;
}

.review-item-actions,
.review-footer {
  margin-top: 14px;
  justify-content: flex-end;
}

.review-item-actions button,
.review-footer button {
  min-width: 128px;
}

.item-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.item-card.is-unassigned {
  border-color: rgba(31, 122, 90, 0.28);
  background: #f4faf6;
}

.item-card.needs-price-review {
  border-color: rgba(212, 92, 67, 0.72);
}

.item-card.drag-over {
  outline: 3px solid rgba(31, 122, 90, 0.24);
}

.empty-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.item-name {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.item-title {
  min-width: 0;
  flex: 1 1 auto;
}

.item-price-field {
  position: relative;
  flex: 0 0 132px;
  display: block;
  width: 132px;
}

.item-price-field span {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-weight: 900;
  pointer-events: none;
}

.item-price-field input {
  width: 100%;
  min-height: 40px;
  border-color: var(--line);
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  text-align: right;
  padding-left: 26px;
  padding-right: 10px;
}

.item-price-field input:hover,
.item-price-field input:focus {
  border-color: #b7c7bd;
  background: #fff;
}

.item-price-field input:focus {
  outline: 3px solid rgba(31, 122, 90, 0.14);
}

.price-review-field {
  flex: 0 0 144px;
  display: grid;
  gap: 5px;
  min-width: 144px;
  color: #9a321f;
  font-size: 0.78rem;
  font-weight: 900;
}

.price-review-field input {
  border-color: rgba(212, 92, 67, 0.8);
  background: #fff8f6;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.price-review-field input:focus {
  outline: 3px solid rgba(212, 92, 67, 0.18);
}

.assignment-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.item-actions {
  margin-top: 10px;
}

.item-actions button {
  min-height: 32px;
  padding: 0 10px;
  color: var(--muted);
}

.confidence {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.assign-btn {
  min-height: 34px;
  border-color: #cbd5cf;
  color: var(--muted);
}

.assign-btn.is-selected {
  background: #e3f2eb;
  border-color: var(--green);
  color: #14513d;
  font-weight: 800;
}

.total-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.warning-card {
  border-color: rgba(212, 92, 67, 0.5);
  background: #fff8f6;
}

.total-card h4 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.total-row,
.audit-row {
  padding: 7px 0;
  border-top: 1px solid #edf1ee;
}

.total-row strong {
  font-size: 1.05rem;
}

.empty-state {
  padding: 22px;
  border: 1px dashed #b7c1bb;
  border-radius: 8px;
  color: var(--muted);
  background: #fbfcf9;
}

.warning-box {
  display: grid;
  gap: 8px;
  color: #775a10;
  font-size: 0.9rem;
  text-align: center;
}

.warning-box div {
  border: 1px solid rgba(184, 132, 19, 0.28);
  border-radius: 8px;
  background: #fff8dd;
  padding: 10px 12px;
}

.warning-box.has-warning {
  color: #7d3527;
}

.warning-box.has-warning div {
  border-color: rgba(212, 92, 67, 0.35);
  background: #fff8f6;
}

.warning-box.has-review {
  color: #775a10;
}

.warning-box.has-review div {
  border-color: rgba(184, 132, 19, 0.32);
  background: #fff8dd;
}

.warning-box.has-success {
  color: #14513d;
}

.warning-box.has-success div {
  border-color: rgba(31, 122, 90, 0.28);
  background: #eef8f2;
}

.people-panel .panel-heading h3 {
  white-space: nowrap;
}

.settle-actions {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #edf1ee;
}

.settle-action-button {
  min-height: 44px;
  padding: 0 16px;
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.settle-action-button:hover {
  border-color: #aab7b0;
  background: #f4faf6;
}

.settle-action-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.app-share-callout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #edf1ee;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.app-share-callout .settle-action-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--green);
}

.share-status {
  min-height: 18px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.share-status:empty {
  display: none;
}

.longform {
  max-width: 1120px;
}

.longform > p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-footer {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.creator-credit {
  color: #52615a;
  font-weight: 800;
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a,
.creator-credit a {
  color: #52615a;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.creator-credit a:hover {
  color: var(--green);
}

.privacy-footer details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.privacy-footer summary {
  width: fit-content;
  cursor: pointer;
  color: #52615a;
  font-weight: 800;
}

.privacy-footer p {
  max-width: 620px;
  margin: 8px 0 0;
}

.privacy-copy {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-top: 8px;
}

.privacy-copy h4 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 0.84rem;
}

.privacy-copy p {
  margin: 0;
}

.feedback-dialog {
  width: min(92vw, 460px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--panel);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.feedback-dialog::backdrop {
  background: rgba(24, 32, 28, 0.32);
}

.feedback-dialog form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.feedback-heading,
.feedback-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feedback-heading h3 {
  margin-top: 3px;
  font-size: 1.08rem;
}

.icon-close {
  width: 36px;
  min-height: 36px;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
}

.feedback-dialog label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.feedback-dialog label span,
.feedback-status {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}

.feedback-status {
  margin: 0;
}

.feedback-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.feedback-actions {
  justify-content: flex-end;
}

.feedback-actions button {
  min-width: 150px;
}

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

.strategy-grid section,
.roadmap li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.strategy-grid p,
.roadmap {
  color: var(--muted);
  line-height: 1.55;
}

.roadmap {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style-position: inside;
}

@media (max-width: 1080px) {
  .workbench,
  .split-grid,
  .people-step-area {
    grid-template-columns: 1fr;
  }

  .content {
    padding-top: 16px;
  }
}

@media (max-width: 640px) {
  .content,
  .sidebar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sidebar {
    padding-top: 16px;
    padding-bottom: 10px;
  }

  .content {
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .topbar,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .section-actions {
    align-items: stretch;
  }

  .item-form {
    grid-template-columns: 1fr 1fr;
  }

  .review-money-grid,
  .review-item-actions,
  .review-footer {
    grid-template-columns: 1fr;
  }

  .review-money-grid {
    display: grid;
  }

  .review-breakdown,
  .review-compare,
  .review-tip {
    grid-template-columns: 1fr;
  }

  .review-item-actions,
  .review-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .review-item-actions button,
  .review-footer button {
    width: 100%;
  }

  .item-top {
    align-items: flex-start;
    gap: 10px;
  }

  .item-price-field {
    flex-basis: 124px;
    width: 124px;
  }

  .price-review-field {
    flex-basis: 136px;
    min-width: 136px;
  }

  .dropzone {
    min-height: 150px;
  }

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

  .button-row {
    grid-template-columns: 1fr;
  }

  .creator-credit {
    margin-left: auto;
    text-align: right;
  }
}
