:root {
  --bg: #f4f1ea;
  --panel: #fffaf1;
  --ink: #211d18;
  --muted: #786f63;
  --line: #ded5c7;
  --accent: #1c7c54;
  --accent-ink: #ffffff;
  --warn: #b64b2d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.mobile-shell {
  --h5w: min(100vw, 480px);
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: #fffdf8;
  box-shadow: 0 0 0 1px rgba(33, 29, 24, 0.04);
  overflow-x: hidden;
  position: relative;
}

.screen {
  min-height: 100vh;
  padding: 16px 16px calc(24px + env(safe-area-inset-bottom));
}

.search-loading-screen {
  min-height: 100vh;
  background: #fff;
  color: #050505;
}

.search-loading-body {
  min-height: calc(100vh - 190px);
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 134px 40px 80px;
}

.search-loading-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.search-loading-icon {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 12px;
}

.search-loading-card h1 {
  margin: 0;
  color: #050505;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.search-loading-card p {
  margin: 0;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 400;
}

.search-loading-back {
  width: 128px;
  min-width: 128px;
  height: 32px;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  background: #0965f2;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.topbar,
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0 18px;
}

.brand {
  font-size: 17px;
  font-weight: 800;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: 434px;
  height: 74px;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.lang-switch,
.ghost-btn,
.icon-btn {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  font-weight: 700;
}

.hero {
  overflow: hidden;
  border-radius: 8px;
  background: #e7dfd1;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
}

.hero img,
.bank-logo img,
.thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fallback-art {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(28, 124, 84, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(182, 75, 45, 0.12), transparent 38%),
    #eee7da;
}

.product-head {
  padding: 20px 0 14px;
}

.product-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: 0;
}

.seller {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.seller-block {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.seller-block p {
  margin: 0;
  overflow-wrap: anywhere;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price {
  font-size: 32px;
  font-weight: 900;
}

.currency {
  color: var(--muted);
  font-weight: 800;
}

.primary-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
  margin-top: 18px;
  padding: 12px 16px;
}

.section-title {
  margin: 28px 0 12px;
  font-size: 18px;
}

.bank-list {
  display: grid;
  gap: 10px;
}

.bank-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
}

.bank-logo,
.thumb {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 8px;
  background: #eee7da;
  border: 1px solid var(--line);
}

.bank-image-only {
  justify-content: center;
}

.bank-image-only .bank-logo {
  width: min(180px, 72%);
  height: 52px;
}

.bank-name {
  min-width: 0;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fffaf1;
  line-height: 1.45;
}

.consult-box {
  display: grid;
  align-content: center;
  min-height: calc(100vh - 80px);
}

.consult-box h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.consult-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-screen {
  background: #f4f5f7;
  padding-top: 34px;
}

.support-page {
  display: grid;
  gap: 14px;
}

.support-head,
.support-chat {
  border: 1px solid #e2e4e8;
  border-radius: 8px;
  background: #fff;
}

.support-head {
  padding: 18px 16px;
}

.support-head h1 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.support-head p {
  margin: 0 0 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.45;
}

.support-product {
  font-weight: 800;
  color: #111 !important;
}

.support-session {
  margin-bottom: 0 !important;
  color: #8a8f98 !important;
  font-size: 12px !important;
  overflow-wrap: anywhere;
}

.support-chat {
  overflow: hidden;
}

.support-messages {
  min-height: 360px;
  max-height: calc(100vh - 330px);
  overflow-y: auto;
  padding: 16px;
  background: #f9fafb;
}

.support-empty {
  padding: 18px;
  border: 1px dashed #d7dbe2;
  border-radius: 8px;
  color: #737985;
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.support-message-row {
  display: flex;
  margin-bottom: 12px;
}

.support-message-row.mine {
  justify-content: flex-end;
}

.support-message-row.agent {
  justify-content: flex-start;
}

.support-message {
  max-width: 82%;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid #e1e4e8;
  background: #fff;
  color: #111;
}

.support-message.mine {
  border-color: #0965f2;
  background: #0965f2;
  color: #fff;
}

.support-message span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  opacity: 0.75;
}

.support-message p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 15px;
  line-height: 1.42;
}

.support-compose {
  display: grid;
  grid-template-columns: 38px 38px 38px minmax(0, 1fr) 52px;
  grid-template-areas:
    "camera photo emoji . ."
    "message message message message send";
  gap: 8px;
  align-items: center;
  position: relative;
  padding: 12px;
  border-top: 1px solid #e2e4e8;
  background: #fff;
}

.support-tool-button {
  width: 38px;
  height: 38px;
  border: 1px solid #d7dbe2;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: 800;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.support-tool-button[data-camera] {
  grid-area: camera;
}

.support-tool-button[data-photo] {
  grid-area: photo;
}

.support-tool-button[data-emoji] {
  grid-area: emoji;
}

.support-tool-button svg,
.support-send svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-compose [data-message] {
  grid-area: message;
  width: 100%;
  min-width: 0;
  height: 58px;
  resize: none;
  border: 1px solid #d7dbe2;
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1.45;
}

.support-send {
  grid-area: send;
  margin-top: 0;
  width: 52px;
  min-height: 30px;
  height: 30px;
  padding: 0;
  background: #0965f2;
  display: inline-grid;
  place-items: center;
  align-self: start;
  justify-self: stretch;
}

.support-send.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.support-emoji-panel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(100% + 8px);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  padding: 10px;
  border: 1px solid #d7dbe2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
  z-index: 5;
}

.support-emoji-panel[hidden] {
  display: none;
}

.support-emoji-option {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 8px;
  background: #f5f7fb;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
}

.support-message-images {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.support-message-image-link {
  display: block;
}

.support-message-image {
  display: block;
  width: min(220px, 100%);
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.admin-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 18px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 24px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: start;
}

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

.panel h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.form-grid {
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.table-list {
  display: grid;
  gap: 10px;
}

.list-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.item-title {
  margin: 0 0 4px;
  font-weight: 900;
  line-height: 1.25;
}

.item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.danger {
  color: #fff;
  background: var(--warn);
  border-color: var(--warn);
}

.status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.main-screen {
  min-height: 100vh;
  background: #e7e7e7;
  color: #050505;
}

.main-topbar {
  min-height: 176px;
  padding: 86px 20px 12px 60px;
  display: grid;
  gap: 14px;
  align-content: end;
  background: #fff;
}

.main-topbar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.main-topbar-pill {
  flex: 1;
  height: 64px;
  border-radius: 999px;
  background: #e3e3e3;
}

.top-search-box {
  border: 0;
  color: #6d6d6d;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 0 28px;
  text-align: left;
}

.top-search-input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1a1a1a;
  appearance: auto;
  -webkit-appearance: searchfield;
  font: inherit;
  font-weight: 400;
  line-height: 1;
}

.top-search-input::placeholder {
  color: #777;
  font-size: 12px;
  font-weight: 400;
  opacity: 1;
}

.top-search-input::-webkit-search-decoration {
  -webkit-appearance: searchfield-decoration;
}

.top-search-input::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}

.top-search-box span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-search-box:active {
  filter: brightness(0.97);
}

.main-lang {
  flex: 0 0 auto;
  min-width: 98px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid #d6d6d6;
  background: #fff;
  color: #050505;
  font-size: 24px;
  font-weight: 800;
}

.main-body {
  display: grid;
  gap: 40px;
  padding: 40px 40px 54px;
}

.main-card {
  border-radius: 24px;
  background: #fff;
  padding: 20px;
}

.main-card.product-summary-card {
  padding-bottom: 30px;
}

.main-product-row {
  display: grid;
  grid-template-columns: 144px 1fr;
  gap: 20px;
  align-items: center;
}

.main-product-image {
  width: 144px;
  height: 144px;
  overflow: hidden;
  border-radius: 10px;
  background: #ececec;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-product-copy {
  min-width: 0;
}

.main-product-copy h1 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.main-product-copy p {
  margin: 0;
  color: #0965f2;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.main-divider {
  height: 1px;
  margin: 18px 0 24px;
  background: #d6d6d6;
}

.info-section h2,
.seller-card h2 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.seller-card h2 {
  margin-bottom: 10px;
}

.check-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0px;
  align-items: start;
  margin: 10px 0;
}

.check-line span {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.check-line strong {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
}

.check-line p {
  margin: 0;
  color: #707070;
  font-size: 26px;
  line-height: 1.4;
}

.check-blue span {
  color: #0b64f4;
}

.check-green span {
  color: #16a316;
}

.large-note {
  margin: 12px 0 16px 28px;
  color: #707070;
  font-size: 26px;
  line-height: 1.38;
}

.small-note {
  margin: 0;
  color: #707070;
  font-size: 22px;
  line-height: 1.45;
}

.protection-section {
  margin-top: 24px;
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.total-row strong {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.total-row strong:last-child {
  color: #0965f2;
  text-align: right;
  overflow-wrap: anywhere;
}

.seller-card {
  padding: 20px 18px 30px;
}

.seller-card h3 {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.seller-card p {
  margin: 0 0 18px;
  color: #707070;
  font-size: 12px;
  line-height: 1.25;
}

.readonly-field {
  min-height: 28px;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  background: #fff;
  color: #050505;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.main-pay-button {
  width: 100%;
  min-height: 38px;
  margin-top: 22px;
  border: 0;
  border-radius: 10px;
  background: #0965f2;
  color: #fff;
}

.main-pay-button-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.support-float-button {
  position: fixed;
  right: max(18px, calc((100vw - 480px) / 2 + 18px));
  bottom: calc(170px + env(safe-area-inset-bottom));
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  display: grid;
  place-items: center;
  z-index: 20;
}

.support-float-button img {
  width: 44px;
  height: 44px;
  display: block;
}

.pay-screen-v2 {
  min-height: 100vh;
  background: #fff;
  color: #050505;
}

.pay-topbar-v2 {
  min-height: 143px;
  padding: 48px 27px 14px;
  border-bottom: 1px solid #d8d8d8;
  background: #fff;
  display: grid;
  gap: 14px;
  align-content: end;
}

.pay-top-pill-v2 {
  width: 100%;
  height: 43px;
  border-radius: 4px;
  background: #e7e7e7;
}

.pay-top-pill-v2.top-search-box {
  font-size: 12px;
  padding: 0 18px;
}

.pay-page-v2 {
  padding: 28px 27px 32px;
}

.pay-confirm-banner {
  min-height: 214px;
  border-radius: 5px;
  background: #eaf2ff;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 20px 26px 24px;
  text-align: center;
}

.pay-confirm-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
}

.pay-confirm-icon img {
  width: 68px;
  height: 68px;
  display: block;
}

.pay-confirm-banner h1 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.pay-confirm-banner p {
  margin: 0;
  max-width: 390px;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 400;
}

.pay-transaction-card {
  margin-top: 29px;
  padding: 27px 22px 24px;
  border: 1px solid #dedede;
  border-radius: 5px;
  background: #fff;
}

.pay-bank-panel {
  margin-top: 29px;
}

.pay-transaction-card h2 {
  margin: 0 0 26px;
  max-width: 360px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.pay-bank-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 31px;
}

.pay-bank-heading strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.pay-bank-icon {
  width: 28px;
  height: 28px;
  color: #7b7b7b;
  display: grid;
  place-items: center;
}

.pay-bank-icon svg {
  width: 28px;
  height: 28px;
}

.pay-bank-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 14px;
}

.pay-bank-tile {
  width: 100%;
  aspect-ratio: 146 / 72;
  border: 1px solid #d8d8d8;
  border-radius: 0;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}

.pay-bank-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pay-bank-tile span {
  color: #050505;
  font-size: 20px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.pay-security-box {
  margin-top: 28px;
  border-radius: 5px;
  background: #eaf2ff;
  padding: 22px 15px 18px;
}

.pay-lock-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 26px;
  color: #050505;
}

.pay-lock-icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.pay-security-box p {
  margin: 0;
  color: #111;
  font-size: 12px;
  line-height: 1.18;
  font-weight: 600;
}

.pay-important-box {
  margin-top: 29px;
  min-height: 320px;
  border-radius: 5px;
  background: #FDF6D2;
  padding: 20px 21px 26px;
  text-align: center;
}

.pay-important-icon {
  width: 118px;
  height: 80px;
  display: block;
  margin: 0 auto 17px;
  object-fit: contain;
}

.pay-important-box h2 {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}

.pay-important-box p {
  margin: 0 0 29px;
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.pay-important-box a {
  display: block;
  text-align: left;
  color: #111;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bank-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.42);
}

.bank-confirm-overlay[hidden] {
  display: none;
}

.bank-confirm-dialog {
  width: min(100%, 360px);
  padding: 40px 24px 40px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bank-confirm-logo {
  width: min(220px, 80%);
  max-height: 72px;
  object-fit: contain;
  display: block;
}

.bank-confirm-dialog p {
  width: 100%;
  margin: 20px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
}


.bank-confirm-field {
  width: 100%;
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.bank-confirm-field input {
  width: 100%;
  height: 38px;
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  background: #fff;
  color: #111;
  padding: 0 11px;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}

.bank-confirm-field input:focus {
  border-color: #0965f2;
  box-shadow: 0 0 0 2px rgba(9, 101, 242, 0.12);
}

.bank-confirm-button:disabled {
  background: #bfc4cc;
  cursor: not-allowed;
}
.bank-confirm-button {
  width: 100%;
  height: 46px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  background: #0965f2;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 480px) {
  .mobile-shell {
    width: 100%;
  }

  .site-logo {
    width: 57.8666vw;
    height: 9.92vw;
  }

  .topbar .site-logo {
    max-width: calc(100% - 82px);
  }

  .main-topbar {
    height: auto;
    min-height: 88px;
    padding: 6.4vw 2.6667vw 1.6vw 8vw;
    gap: 2.1333vw;
  }

  .main-topbar-controls {
    gap: 3.7333vw;
  }

  .main-topbar-pill {
    height: 8.5333vw;
  }

  .main-lang {
    min-width: 13.0667vw;
    height: 7.4667vw;
    font-size: 3.2vw;
    border-width: 1px;
  }

  .main-body {
    gap: 5.3333vw;
    padding: 5.3333vw 5.3333vw 7.2vw;
  }

  .main-card {
    border-radius: 3.2vw;
    padding: 5vw;
  }

  .main-card.product-summary-card {
    padding-bottom: calc(5vw + 10px);
  }

  .main-product-row {
    grid-template-columns: 19.2vw 1fr;
    gap: 2.6667vw;
  }

  .main-product-image {
    width: 19.2vw;
    height: 19.2vw;
  }

  .main-product-copy h1,
  .main-product-copy p,
  .info-section h2,
  .check-line strong,
  .total-row strong {
    font-size: 4vw;
  }

  .check-line p,
  .large-note {
    font-size: 3vw;
  }

  .readonly-field {
    font-size: 12px;
    font-weight: 400;
  }

  .small-note {
    font-size: 2.8vw;
  }

  .main-pay-button-text {
    font-size: 3.2vw;
  }

}


@media (min-width: 481px) {
  .mobile-shell {
    width: 480px;
    max-width: 480px;
  }

  .site-logo {
    width: calc(var(--h5w) * 0.578666);
    height: calc(var(--h5w) * 0.0992);
  }

  .topbar .site-logo {
    max-width: calc(100% - 82px);
  }

  .main-topbar {
    height: auto;
    min-height: calc(var(--h5w) * 0.183333);
    padding: calc(var(--h5w) * 0.064) calc(var(--h5w) * 0.026667) calc(var(--h5w) * 0.016) calc(var(--h5w) * 0.08);
    gap: calc(var(--h5w) * 0.021333);
  }

  .main-topbar-controls {
    gap: calc(var(--h5w) * 0.037333);
  }

  .main-topbar-pill {
    height: calc(var(--h5w) * 0.085333);
  }

  .main-lang {
    min-width: calc(var(--h5w) * 0.130667);
    height: calc(var(--h5w) * 0.074667);
    font-size: calc(var(--h5w) * 0.032);
    border-width: 1px;
  }

  .main-body {
    gap: calc(var(--h5w) * 0.053333);
    padding: calc(var(--h5w) * 0.053333) calc(var(--h5w) * 0.053333) calc(var(--h5w) * 0.072);
  }

  .main-card {
    border-radius: calc(var(--h5w) * 0.032);
    padding: calc(var(--h5w) * 0.05);
  }

  .main-card.product-summary-card {
    padding-bottom: calc(var(--h5w) * 0.05 + 10px);
  }

  .main-product-row {
    grid-template-columns: calc(var(--h5w) * 0.192) 1fr;
    gap: calc(var(--h5w) * 0.026667);
  }

  .main-product-image {
    width: calc(var(--h5w) * 0.192);
    height: calc(var(--h5w) * 0.192);
  }

  .main-product-copy h1,
  .main-product-copy p,
  .info-section h2,
  .check-line strong,
  .total-row strong {
    font-size: calc(var(--h5w) * 0.04);
  }

  .check-line p,
  .large-note {
    font-size: calc(var(--h5w) * 0.03);
  }

  .readonly-field {
    font-size: 12px;
    font-weight: 400;
  }

  .small-note {
    font-size: calc(var(--h5w) * 0.028);
  }

  .main-pay-button-text {
    font-size: calc(var(--h5w) * 0.032);
  }
}
@media (max-width: 760px) {
  .admin-grid,
  .row {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    padding: 14px;
  }

  .list-item {
    grid-template-columns: 52px 1fr;
  }

  .actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .actions button {
    flex: 1;
  }
}



