.seller-shell {
  --seller-forest: #183f35;
  --seller-forest-2: #245e4e;
  --seller-orange: #f0a44b;
  --seller-cream: #f7f8f2;
  --seller-paper: #fffef9;
  --seller-text: #243c32;
  --seller-muted: #6d7d74;
  --seller-line: #dfe6dc;
  --seller-shadow: 0 18px 55px rgba(24, 63, 53, 0.08);
  color: var(--seller-text);
  min-height: 100%;
  padding-bottom: 72px;
}

.seller-shell *,
.seller-shell *::before,
.seller-shell *::after {
  box-sizing: border-box;
}

.seller-shell button,
.seller-shell input,
.seller-shell select,
.seller-shell textarea {
  font: inherit;
}

.seller-shell button svg,
.seller-shell a svg {
  flex: 0 0 auto;
}

.seller-hero {
  align-items: flex-end;
  background:
    radial-gradient(circle at 78% 10%, rgba(240, 164, 75, 0.2), transparent 27%),
    linear-gradient(118deg, #183f35 0%, #204f42 67%, #2d6856 100%);
  border-radius: 28px;
  box-shadow: var(--seller-shadow);
  color: white;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin: 28px auto 18px;
  max-width: 1380px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}

.seller-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: '';
  height: 240px;
  position: absolute;
  right: 13%;
  top: -160px;
  width: 240px;
}

.seller-hero > * {
  position: relative;
  z-index: 1;
}

.seller-hero__eyebrow {
  align-items: center;
  color: #ffe1b7;
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.seller-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}

.seller-hero p {
  color: rgba(255, 255, 255, 0.73);
  font-size: 1rem;
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 690px;
}

.seller-storefront.btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.27);
  color: white;
  display: inline-flex;
  gap: 9px;
  white-space: nowrap;
}

.seller-storefront.btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.seller-category-bar {
  align-items: center;
  background: #eef3e9;
  border: 1px solid #d8e2d5;
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 auto 12px;
  max-width: 1380px;
  padding: 10px 13px 10px 17px;
}

.seller-category-bar > div {
  display: grid;
  gap: 1px;
  min-width: 130px;
}

.seller-category-bar > div span,
.seller-category-bar > small {
  color: var(--seller-muted);
  font-size: 0.7rem;
  font-weight: 800;
}

.seller-category-bar > div span {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seller-category-bar > div strong {
  color: var(--seller-forest);
}

.seller-category-tabs {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seller-category-tab {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid transparent;
  border-radius: 11px;
  color: #62766c;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 43px;
  padding: 8px 16px;
}

.seller-category-tab:hover {
  border-color: #b9cbbd;
  color: var(--seller-forest);
}

.seller-category-tab.is-active {
  background: var(--seller-forest);
  box-shadow: 0 7px 18px rgba(24, 63, 53, 0.16);
  color: white;
}

.seller-subnav {
  align-items: center;
  background: rgba(255, 254, 249, 0.94);
  border: 1px solid var(--seller-line);
  border-radius: 18px;
  box-shadow: 0 9px 28px rgba(24, 63, 53, 0.05);
  display: flex;
  gap: 5px;
  margin: 0 auto;
  max-width: 1380px;
  overflow-x: auto;
  padding: 7px;
  scrollbar-width: none;
  position: sticky;
  top: 10px;
  z-index: 8;
}

.seller-subnav::-webkit-scrollbar {
  display: none;
}

.seller-subnav__item {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: #65776e;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.seller-subnav__item:hover {
  background: #f0f2e9;
  color: var(--seller-forest);
}

.seller-subnav__item.is-active {
  background: var(--seller-forest);
  color: white;
}

.seller-subnav__item strong {
  align-items: center;
  background: var(--seller-orange);
  border-radius: 999px;
  color: var(--seller-forest);
  display: inline-flex;
  font-size: 0.72rem;
  height: 21px;
  justify-content: center;
  min-width: 21px;
  padding: 0 6px;
}

.seller-main {
  margin: 0 auto;
  max-width: 1380px;
  padding-top: clamp(26px, 4vw, 48px);
}

.seller-section {
  animation: seller-rise 320ms ease both;
}

@keyframes seller-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.seller-heading {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 23px;
}

.seller-heading h2 {
  color: var(--seller-forest);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  margin: 4px 0 0;
}

.seller-heading p {
  margin: 8px 0 0;
}

.seller-heading .btn,
.seller-panel__head .btn,
.seller-link-card__actions .btn,
.seller-fulfil-button,
.seller-review__decision .btn {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.seller-export-wrap {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.seller-export-wrap > small {
  color: var(--seller-muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.seller-metrics {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seller-metric {
  background: var(--seller-paper);
  border: 1px solid var(--seller-line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(24, 63, 53, 0.05);
  min-height: 176px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.seller-metric::after {
  border: 18px solid rgba(24, 63, 53, 0.025);
  border-radius: 50%;
  content: '';
  height: 120px;
  position: absolute;
  right: -50px;
  top: -44px;
  width: 120px;
}

.seller-metric--orange {
  background: #fff7ea;
  border-color: #f6d29f;
}

.seller-metric--green {
  background: var(--seller-forest);
  border-color: var(--seller-forest);
  color: white;
}

.seller-metric__icon {
  align-items: center;
  background: #edf1e8;
  border-radius: 11px;
  color: var(--seller-forest);
  display: flex;
  height: 40px;
  justify-content: center;
  margin-bottom: 18px;
  width: 40px;
}

.seller-metric--orange .seller-metric__icon {
  background: #ffe5bd;
}

.seller-metric--green .seller-metric__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd596;
}

.seller-metric p,
.seller-metric small {
  color: var(--seller-muted);
  display: block;
  margin: 0;
}

.seller-metric--green p,
.seller-metric--green small {
  color: rgba(255, 255, 255, 0.7);
}

.seller-metric > strong {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 7px 0 10px;
}

.seller-overview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  margin-top: 18px;
}

.seller-panel.card,
.seller-table-card.card,
.seller-filterbar.card,
.seller-fulfilment-card.card,
.seller-link-card.card {
  background: var(--seller-paper);
  border-color: var(--seller-line);
  box-shadow: 0 12px 36px rgba(24, 63, 53, 0.055);
}

.seller-panel {
  border-radius: 22px;
  padding: 24px;
}

.seller-panel__head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 17px;
}

.seller-panel__head h3 {
  color: var(--seller-forest);
  font-size: 1.22rem;
  margin: 4px 0 0;
}

.seller-panel__head .muted {
  font-size: 0.82rem;
}

.seller-action-list,
.seller-recent-list {
  display: grid;
}

.seller-action-row,
.seller-recent-row {
  align-items: center;
  border-top: 1px solid #e9ede5;
  display: grid;
  gap: 12px;
  min-height: 76px;
  padding: 12px 0;
}

.seller-action-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.seller-recent-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.seller-action-row:first-child,
.seller-recent-row:first-child {
  border-top: 0;
}

.seller-action-row__icon,
.seller-order-avatar {
  align-items: center;
  background: #edf2eb;
  border-radius: 12px;
  color: var(--seller-forest);
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.seller-action-row__icon.is-review {
  background: #fff0d7;
  color: #a95c13;
}

.seller-action-row__icon.is-fulfil {
  background: #e0efe7;
  color: #257057;
}

.seller-action-row p,
.seller-recent-row p,
.seller-product-row p,
.seller-completed-row p {
  color: var(--seller-muted);
  font-size: 0.82rem;
  margin: 4px 0 0;
}

.seller-action-row__end,
.seller-recent-row__end {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.seller-action-row__end {
  align-items: center;
  flex-direction: row;
}

.seller-labelled-total {
  display: grid;
  gap: 2px;
  text-align: right;
}

.seller-labelled-total small {
  color: var(--seller-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.seller-labelled-total strong {
  white-space: nowrap;
}

.seller-icon-link.btn {
  border-radius: 9px;
  min-height: 34px;
  padding: 6px;
}

.seller-text-link.btn {
  color: var(--seller-forest);
  padding-left: 10px;
  padding-right: 0;
}

.seller-products-panel {
  margin-top: 18px;
}

.seller-product-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.seller-product-row {
  align-items: center;
  border-top: 1px solid #e9ede5;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  min-height: 82px;
  padding: 13px 0;
}

.seller-product-row:nth-child(-n + 2) {
  border-top: 0;
}

.seller-product-row:nth-child(odd) {
  padding-right: 22px;
}

.seller-product-row:nth-child(even) {
  border-left: 1px solid #e9ede5;
  padding-left: 22px;
}

.seller-product-thumb {
  align-items: center;
  background: #edf2eb;
  border-radius: 12px;
  color: var(--seller-forest);
  display: flex;
  height: 50px;
  justify-content: center;
  overflow: hidden;
  width: 50px;
}

.seller-product-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.seller-product-qty,
.seller-product-total {
  display: grid;
  gap: 3px;
  text-align: right;
}

.seller-product-qty span,
.seller-product-total span {
  color: var(--seller-muted);
  font-size: 0.72rem;
}

.seller-product-qty strong {
  color: var(--seller-forest);
  font-size: 1.2rem;
}

.seller-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  justify-content: center;
  padding: 28px 18px;
  text-align: center;
}

.seller-empty > span {
  align-items: center;
  background: #edf2e9;
  border-radius: 50%;
  color: var(--seller-forest);
  display: flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 13px;
  width: 54px;
}

.seller-empty p {
  color: var(--seller-muted);
  line-height: 1.55;
  margin: 7px 0 0;
  max-width: 360px;
}

.seller-filterbar {
  align-items: end;
  border-radius: 18px;
  display: grid;
  gap: 13px;
  grid-template-columns: minmax(280px, 1fr) 220px;
  margin-bottom: 14px;
  padding: 15px;
}

.seller-search {
  align-items: center;
  background: #f5f7f1;
  border: 1px solid #dbe2d8;
  border-radius: 12px;
  color: var(--seller-muted);
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
}

.seller-search:focus-within {
  border-color: var(--seller-forest-2);
  box-shadow: 0 0 0 3px rgba(36, 94, 78, 0.1);
}

.seller-search input {
  background: transparent;
  border: 0;
  color: var(--seller-text);
  min-width: 0;
  outline: 0;
  width: 100%;
}

.seller-select {
  display: grid;
  gap: 6px;
  position: relative;
}

.seller-select > span {
  color: var(--seller-muted);
  font-size: 0.72rem;
  font-weight: 800;
  padding-left: 2px;
  text-transform: uppercase;
}

.seller-select select {
  appearance: none;
  min-height: 48px;
  padding-right: 38px;
  width: 100%;
}

.seller-select > svg {
  bottom: 16px;
  pointer-events: none;
  position: absolute;
  right: 13px;
}

.seller-table-card {
  border-radius: 20px;
  overflow: hidden;
}

.seller-table-summary {
  align-items: center;
  border-bottom: 1px solid var(--seller-line);
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
}

.seller-table-wrap {
  overflow-x: auto;
}

.seller-table {
  border-collapse: collapse;
  min-width: 1050px;
  width: 100%;
}

.seller-table th {
  background: #f3f5ee;
  color: var(--seller-muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 13px 16px;
  text-align: left;
  text-transform: uppercase;
}

.seller-table td {
  border-top: 1px solid #e9ede5;
  padding: 16px;
  vertical-align: middle;
}

.seller-table tbody tr:first-child td {
  border-top: 0;
}

.seller-table tbody tr:hover {
  background: #fcfcf7;
}

.seller-table td > small,
.seller-table td > strong + small {
  color: var(--seller-muted);
  display: block;
  font-size: 0.76rem;
  margin-top: 4px;
}

.seller-category {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  white-space: nowrap;
}

.seller-group-route {
  display: grid;
  gap: 3px;
  max-width: 250px;
}

.seller-group-route small {
  color: var(--seller-muted);
  display: -webkit-box;
  font-size: 0.74rem;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.seller-status {
  align-items: center;
  background: #eef1eb;
  border-radius: 999px;
  color: #647269;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  gap: 7px;
  padding: 7px 10px;
  white-space: nowrap;
}

.seller-status i {
  background: currentColor;
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.seller-status--review {
  background: #fff0d6;
  color: #9a570f;
}

.seller-status--correction {
  background: #fce4df;
  color: #a34837;
}

.seller-status--paid {
  background: #dff0e6;
  color: #1c694e;
}

.seller-status--fulfilled {
  background: #e4eee9;
  color: #315e4e;
}

.seller-table__action {
  text-align: right;
}

.seller-table-button.btn {
  align-items: center;
  display: inline-flex;
  font-size: 0.78rem;
  gap: 6px;
  min-height: 38px;
  padding: 8px 12px;
  white-space: nowrap;
}

.seller-no-action {
  font-size: 0.78rem;
  white-space: nowrap;
}

.seller-filter-empty[hidden] {
  display: none;
}

.seller-fulfilment-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.seller-fulfilment-stats > div {
  align-items: center;
  background: var(--seller-forest);
  border-radius: 18px;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
}

.seller-fulfilment-stats > div:last-child {
  background: #e8eee6;
  color: var(--seller-forest);
}

.seller-fulfilment-stats span {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 9px;
}

.seller-fulfilment-stats strong {
  font-size: 1.75rem;
}

.seller-fulfilment-list {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.seller-fulfilment-card__top {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.seller-fulfilment-card__top h3 {
  color: var(--seller-forest);
  font-size: 1.05rem;
  margin: 4px 0 5px;
}

.seller-fulfilment-card__top a {
  align-items: center;
  color: var(--seller-muted);
  display: inline-flex;
  font-size: 0.78rem;
  gap: 5px;
  text-decoration: none;
}

.seller-fulfilment-card__items {
  background: #f4f6f0;
  border-radius: 12px;
  display: grid;
  gap: 8px;
  margin-top: 17px;
  padding: 13px;
}

.seller-fulfilment-card__items > div {
  display: flex;
  font-size: 0.84rem;
  gap: 12px;
  justify-content: space-between;
}

.seller-fulfilment-card__route {
  align-items: center;
  display: flex;
  gap: 11px;
  margin: 17px 0;
}

.seller-route-icon {
  align-items: center;
  background: #fff0d7;
  border-radius: 10px;
  color: #a75d17;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.seller-fulfilment-card__route div {
  display: grid;
  gap: 3px;
}

.seller-fulfilment-card__route small {
  color: var(--seller-muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seller-fulfilment-card__route strong {
  font-size: 0.82rem;
  line-height: 1.35;
}

.seller-fulfilment-card__route div > span {
  color: var(--seller-muted);
  font-size: 0.73rem;
}

.seller-fulfil-button {
  width: 100%;
}

.seller-completed {
  margin-top: 38px;
}

.seller-completed-list {
  background: var(--seller-paper);
  border: 1px solid var(--seller-line);
  border-radius: 18px;
  overflow: hidden;
}

.seller-completed-row {
  align-items: center;
  border-top: 1px solid var(--seller-line);
  display: grid;
  gap: 13px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 15px 18px;
}

.seller-completed-row:first-child {
  border-top: 0;
}

.seller-check {
  align-items: center;
  background: #dff0e6;
  border-radius: 50%;
  color: #1c694e;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.seller-link-note {
  align-items: flex-start;
  background: #e7efe8;
  border: 1px solid #ceddd2;
  border-radius: 15px;
  color: var(--seller-forest);
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 15px 17px;
}

.seller-link-note svg {
  margin-top: 2px;
}

.seller-link-note p {
  color: var(--seller-muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 4px 0 0;
}

.seller-link-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seller-link-card {
  border-radius: 22px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.seller-link-card::before {
  background: var(--seller-orange);
  content: '';
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.seller-link-card--fruit::before { background: #4f8a68; }
.seller-link-card--hotels::before { background: #d28a48; }
.seller-link-card--tickets::before { background: #477f78; }

.seller-link-card__mark {
  align-items: center;
  background: #edf2e9;
  border-radius: 14px;
  color: var(--seller-forest);
  display: flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 18px;
  width: 50px;
}

.seller-link-card--hotels .seller-link-card__mark { background: #fff0db; color: #9b5c20; }
.seller-link-card--tickets .seller-link-card__mark { background: #e2f0ed; color: #28645c; }

.seller-link-card__copy h3 {
  color: var(--seller-forest);
  font-size: 1.25rem;
  margin: 4px 0 8px;
}

.seller-link-card__copy p {
  color: var(--seller-muted);
  line-height: 1.55;
  margin: 0;
  min-height: 50px;
}

.seller-link-card label {
  display: grid;
  gap: 6px;
  margin-top: 20px;
}

.seller-link-card label > span {
  color: var(--seller-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seller-link-card input {
  font-size: 0.78rem;
  text-overflow: ellipsis;
  width: 100%;
}

.seller-link-card__actions {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.seller-review {
  color: var(--seller-text);
  max-width: 1050px;
  width: min(1050px, calc(100vw - 34px));
}

.seller-review__header {
  align-items: flex-start;
  border-bottom: 1px solid var(--seller-line);
  display: flex;
  justify-content: space-between;
  padding: 24px 26px 19px;
}

.seller-review__header h2 {
  color: var(--seller-forest);
  font-size: 1.65rem;
  margin: 4px 0;
}

.seller-review__header p {
  color: var(--seller-muted);
  margin: 0;
}

.seller-modal-close.btn {
  border-radius: 50%;
  min-height: 40px;
  padding: 9px;
  width: 40px;
}

.seller-review__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(390px, 1.18fr);
}

.seller-receipt-pane {
  background: #f2f4ed;
  border-right: 1px solid var(--seller-line);
  padding: 23px;
}

.seller-review-label {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.seller-review-label span {
  color: var(--seller-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seller-review-label strong {
  font-size: 0.78rem;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seller-sample-receipt,
.seller-receipt-image,
.seller-receipt-file {
  background: white;
  border: 1px solid #dfe4dc;
  border-radius: 17px;
  box-shadow: 0 16px 38px rgba(24, 63, 53, 0.08);
  min-height: 430px;
  overflow: hidden;
}

.seller-sample-receipt {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 21px;
  position: relative;
}

.seller-sample-receipt__bank {
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--seller-line);
  display: flex;
  gap: 10px;
  padding-bottom: 17px;
}

.seller-sample-receipt__bank > span {
  align-items: center;
  background: var(--seller-forest);
  border-radius: 10px;
  color: white;
  display: flex;
  height: 39px;
  justify-content: center;
  width: 39px;
}

.seller-sample-receipt__bank div {
  display: grid;
}

.seller-sample-receipt__bank small,
.seller-sample-receipt__bank strong {
  line-height: 1.3;
}

.seller-sample-receipt__tick {
  align-items: center;
  background: #dff0e6;
  border-radius: 50%;
  color: #1c694e;
  display: flex;
  height: 62px;
  justify-content: center;
  margin: 24px 0 11px;
  width: 62px;
}

.seller-sample-receipt > p {
  color: var(--seller-muted);
  margin: 0 0 6px;
}

.seller-sample-receipt > strong {
  color: var(--seller-forest);
  font-size: 2rem;
}

.seller-sample-receipt dl {
  align-self: stretch;
  background: #f5f7f1;
  border-radius: 12px;
  margin: 20px 0;
  padding: 4px 14px;
}

.seller-sample-receipt dl div {
  border-top: 1px solid #e1e6de;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 0;
}

.seller-sample-receipt dl div:first-child { border-top: 0; }
.seller-sample-receipt dt { color: var(--seller-muted); font-size: 0.76rem; }
.seller-sample-receipt dd { font-size: 0.78rem; font-weight: 800; margin: 0; text-align: right; }

.seller-sample-watermark {
  color: #9da79f;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  margin-top: auto;
}

.seller-receipt-image {
  align-items: center;
  display: flex;
  justify-content: center;
}

.seller-receipt-image img {
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  width: 100%;
}

.seller-receipt-file {
  align-items: center;
  color: var(--seller-muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.seller-receipt-file > svg { color: var(--seller-forest); }

.seller-review-details {
  display: grid;
  gap: 15px;
  padding: 23px;
}

.seller-shared-payment {
  align-items: flex-start;
  background: #e5f0ea;
  border: 1px solid #cbded2;
  border-radius: 13px;
  color: var(--seller-forest);
  display: flex;
  gap: 10px;
  padding: 12px 13px;
}

.seller-shared-payment > svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.seller-shared-payment p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.seller-shared-payment span {
  color: var(--seller-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.seller-amount-check {
  align-items: center;
  background: #edf4ec;
  border: 1px solid #d4e3d6;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr auto 1fr;
  padding: 15px;
}

.seller-amount-check.has-mismatch {
  background: #fff4e5;
  border-color: #efc887;
}

.seller-amount-check div {
  display: grid;
  gap: 3px;
}

.seller-amount-check div:last-child { text-align: right; }
.seller-amount-check span { color: var(--seller-muted); font-size: 0.73rem; font-weight: 800; text-transform: uppercase; }
.seller-amount-check strong { color: var(--seller-forest); font-size: 1.35rem; }
.seller-amount-check div small { color: var(--seller-muted); font-size: 0.68rem; line-height: 1.35; }
.seller-amount-arrow { align-items: center; display: flex; }

.seller-review-alert {
  align-items: flex-start;
  background: #fff0d8;
  border-radius: 12px;
  color: #a15715;
  display: flex;
  gap: 9px;
  padding: 12px;
}

.seller-review-alert p { display: grid; gap: 3px; margin: 0; }
.seller-review-alert span { font-size: 0.78rem; line-height: 1.4; }

.seller-review-block {
  border: 1px solid var(--seller-line);
  border-radius: 14px;
  padding: 14px;
}

.seller-review-items {
  display: grid;
  gap: 9px;
}

.seller-review-items > div {
  align-items: flex-start;
  display: flex;
  font-size: 0.83rem;
  gap: 12px;
  justify-content: space-between;
}

.seller-review-items span { display: grid; gap: 2px; }
.seller-review-items small { color: var(--seller-muted); }

.seller-payment-groups {
  display: grid;
  gap: 10px;
}

.seller-payment-group {
  background: #f7f8f3;
  border: 1px solid #e2e7df;
  border-radius: 11px;
  padding: 11px;
}

.seller-payment-group__head {
  align-items: center;
  border-bottom: 1px solid #e1e6de;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 9px;
  padding-bottom: 9px;
}

.seller-payment-group__head > strong {
  color: var(--seller-forest);
  font-size: 0.78rem;
}

.seller-payment-group__meta {
  align-items: start;
  border-top: 1px solid #e1e6de;
  color: var(--seller-muted);
  display: grid;
  font-size: 0.7rem;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 9px;
  padding-top: 9px;
}

.seller-payment-group__meta strong {
  color: var(--seller-text);
  white-space: nowrap;
}

.seller-review-meta {
  border-top: 1px solid var(--seller-line);
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 13px;
  padding-top: 13px;
}

.seller-review-meta > span {
  color: var(--seller-muted);
  display: grid;
  font-size: 0.72rem;
  gap: 3px;
  text-transform: uppercase;
}

.seller-review-meta strong {
  color: var(--seller-text);
  font-size: 0.83rem;
  text-transform: none;
}

.seller-review-meta__wide {
  border-top: 1px solid var(--seller-line);
  grid-column: 1 / -1;
  padding-top: 11px;
}

.seller-history {
  list-style: none;
  margin: 0;
  max-height: 138px;
  overflow: auto;
  padding: 0;
}

.seller-history li {
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  padding: 7px 0;
}

.seller-history li > i {
  background: #ced7cf;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #ced7cf;
  height: 10px;
  margin: 4px 2px;
  width: 10px;
}

.seller-history li > i.is-latest { background: var(--seller-orange); box-shadow: 0 0 0 1px var(--seller-orange); }
.seller-history li div { display: grid; gap: 3px; }
.seller-history li strong { font-size: 0.78rem; }
.seller-history li span { color: var(--seller-muted); font-size: 0.68rem; }

.seller-review__decision {
  align-items: center;
  background: white;
  border-top: 1px solid var(--seller-line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(280px, 1fr) auto;
  padding: 19px 24px 24px;
}

.seller-bank-check {
  align-items: center;
  background: #eef4ed;
  border: 1px solid #d2dfd3;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
}

.seller-bank-check.is-disabled { cursor: not-allowed; opacity: 0.56; }
.seller-bank-check input { accent-color: var(--seller-forest); height: 18px; width: 18px; }
.seller-bank-check span { align-items: center; display: flex; gap: 8px; }
.seller-bank-check strong { font-size: 0.78rem; line-height: 1.35; }

.seller-correction {
  align-items: end;
  border-top: 1px dashed var(--seller-line);
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 1fr) auto;
  padding-top: 14px;
}

.seller-correction label { display: grid; gap: 6px; }
.seller-correction label > span { color: var(--seller-muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.seller-correction textarea { min-height: 62px; resize: vertical; width: 100%; }
.seller-correction textarea[aria-invalid="true"] { border-color: #b95d4b; box-shadow: 0 0 0 3px rgba(185, 93, 75, 0.1); }

@media (max-width: 1180px) {
  .seller-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seller-fulfilment-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seller-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seller-link-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .seller-category-bar { grid-template-columns: 1fr; }
  .seller-category-bar > div { display: none; }
  .seller-category-bar > small { text-align: center; }
  .seller-overview-grid { grid-template-columns: 1fr; }
  .seller-product-grid { grid-template-columns: 1fr; }
  .seller-product-row:nth-child(n) { border-left: 0; border-top: 1px solid #e9ede5; padding-left: 0; padding-right: 0; }
  .seller-product-row:first-child { border-top: 0; }
  .seller-filterbar { grid-template-columns: 1fr 1fr; }
  .seller-search { grid-column: 1 / -1; }
  .seller-review { max-height: calc(100vh - 24px); overflow-y: auto; }
  .seller-review__grid { grid-template-columns: 1fr; }
  .seller-receipt-pane { border-bottom: 1px solid var(--seller-line); border-right: 0; }
  .seller-sample-receipt, .seller-receipt-image, .seller-receipt-file { margin: auto; max-width: 500px; min-height: 360px; }
}

@media (max-width: 680px) {
  .seller-shell { padding-bottom: 42px; }
  .seller-hero { align-items: flex-start; border-radius: 21px; flex-direction: column; gap: 21px; margin-top: 14px; padding: 26px 22px; }
  .seller-hero h1 { font-size: 2.15rem; }
  .seller-storefront.btn { width: 100%; }
  .seller-subnav { border-radius: 14px; margin-left: 0; margin-right: 0; max-width: 100%; padding: 6px; top: 6px; }
  .seller-subnav__item { min-height: 43px; padding: 0 13px; }
  .seller-main { padding-top: 30px; }
  .seller-heading { align-items: stretch; flex-direction: column; gap: 16px; }
  .seller-heading > .btn { width: 100%; }
  .seller-export-wrap, .seller-export-wrap .btn { width: 100%; }
  .seller-export-wrap { align-items: stretch; text-align: center; }
  .seller-category-bar { border-radius: 14px; gap: 8px; padding: 7px; }
  .seller-category-tabs { gap: 4px; }
  .seller-category-tab { min-height: 42px; padding: 7px 10px; }
  .seller-metrics { gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seller-metric { min-height: 158px; padding: 17px; }
  .seller-metric__icon { height: 36px; margin-bottom: 13px; width: 36px; }
  .seller-metric > strong { font-size: 1.55rem; }
  .seller-metric small { font-size: 0.72rem; }
  .seller-panel { padding: 18px; }
  .seller-action-row__end > strong { display: none; }
  .seller-recent-row { align-items: start; }
  .seller-recent-row__end .seller-status { font-size: 0; gap: 0; padding: 7px; }
  .seller-product-row { grid-template-columns: auto minmax(0, 1fr) auto; }
  .seller-product-total { display: none; }
  .seller-filterbar { grid-template-columns: 1fr; }
  .seller-search { grid-column: auto; }
  .seller-table-summary { padding: 15px; }
  .seller-fulfilment-stats { grid-template-columns: 1fr; }
  .seller-fulfilment-list { grid-template-columns: 1fr; }
  .seller-link-grid { grid-template-columns: 1fr; }
  .seller-link-card:last-child { grid-column: auto; }
  .seller-review { width: calc(100vw - 18px); }
  .seller-review__header, .seller-review-details, .seller-receipt-pane { padding: 18px; }
  .seller-review__decision { grid-template-columns: 1fr; padding: 16px 18px 20px; }
  .seller-review__decision > .btn { width: 100%; }
  .seller-correction { grid-template-columns: 1fr; }
  .seller-correction .btn { width: 100%; }
}

@media (max-width: 420px) {
  .seller-hero h1 { font-size: 1.85rem; }
  .seller-metrics { grid-template-columns: 1fr; }
  .seller-metric { min-height: auto; }
  .seller-action-row { grid-template-columns: auto minmax(0, 1fr) auto; }
  .seller-recent-row { grid-template-columns: auto minmax(0, 1fr); }
  .seller-recent-row__end { align-items: flex-start; flex-direction: row; grid-column: 2; }
  .seller-product-row { grid-template-columns: auto minmax(0, 1fr); }
  .seller-product-qty { grid-column: 2; text-align: left; }
  .seller-link-card__actions { grid-template-columns: 1fr; }
  .seller-amount-check { grid-template-columns: 1fr; }
  .seller-amount-check div:last-child { text-align: left; }
  .seller-amount-arrow { transform: rotate(90deg); }
  .seller-review-meta { grid-template-columns: 1fr; }
  .seller-category-tab { font-size: 0.77rem; gap: 5px; padding: 7px; }
  .seller-category-tab svg { height: 16px; width: 16px; }
  .seller-payment-group__head { align-items: flex-start; flex-direction: column; }
  .seller-payment-group__meta { grid-template-columns: 1fr; }
  .seller-fulfilment-card__top { grid-template-columns: auto minmax(0, 1fr); }
  .seller-fulfilment-card__top .seller-labelled-total { grid-column: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .seller-section { animation: none; }
  .seller-subnav__item { transition: none; }
}
