:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: #fbfbfd;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.12);
  --line-strong: rgba(29, 29, 31, 0.2);
  --blue: #0071e3;
  --blue-bright: #00b7ff;
  --lime: #9cff00;
  --lime-dark: #63b400;
  --warning: #ff6a3d;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 8px 28px rgba(0, 113, 227, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 260px),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(0, 183, 255, 0.13) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(245deg, rgba(156, 255, 0, 0.12) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.96));
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 14px 36px rgba(0, 113, 227, 0.12);
  }

  50% {
    box-shadow: 0 18px 48px rgba(0, 183, 255, 0.18);
  }
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(251, 251, 253, 0.78);
  backdrop-filter: saturate(180%) blur(24px);
  padding: 14px 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: #030609;
  box-shadow:
    0 0 0 1px rgba(0, 183, 255, 0.28),
    0 10px 26px rgba(0, 113, 227, 0.18);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(156, 255, 0, 0.25);
  border-radius: inherit;
  pointer-events: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand:hover .brand-mark {
  animation: softPulse 1.8s ease-in-out infinite;
}

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

.brand h1 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.top-actions,
.row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-button,
.secondary-button,
.ghost-button,
.tabs button,
.icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.primary-button {
  position: relative;
  overflow: hidden;
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  padding: 0 16px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 113, 227, 0.18);
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -55%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-16deg);
  transition: left 0.5s ease;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.tabs button:hover,
.icon-only:hover {
  transform: translateY(-1px);
}

.primary-button:active,
.secondary-button:active,
.ghost-button:active,
.tabs button:active,
.icon-only:active,
.select-trigger:active,
.select-option:active,
.country:active {
  transform: translateY(0) scale(0.98);
}

.primary-button:hover {
  background: #0066cc;
}

.primary-button:hover::before {
  left: 120%;
}

.secondary-button,
.ghost-button {
  padding: 0 14px;
  font-weight: 650;
}

.secondary-button:hover,
.ghost-button:hover,
.icon-only:hover {
  border-color: rgba(0, 113, 227, 0.35);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.icon-only {
  width: 36px;
  min-height: 36px;
  padding: 0;
  border-radius: 999px;
}

.tabs {
  display: flex;
  gap: 8px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 18px 32px 0;
  overflow-x: auto;
}

.tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.tabs button.active {
  border-color: rgba(0, 113, 227, 0.22);
  background: #1d1d1f;
  color: #fff;
  box-shadow: 0 10px 26px rgba(29, 29, 31, 0.16);
}

.tabs button.active i,
.tabs button.active svg {
  color: var(--lime);
}

.layout {
  display: grid;
  grid-template-columns: minmax(306px, 382px) minmax(0, 1fr);
  gap: 20px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 18px 32px 36px;
}

.control-panel,
.card,
.report-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: saturate(160%) blur(20px);
}

.control-panel:has(.select-shell.open),
.card:has(.select-shell.open),
.report-card:has(.select-shell.open) {
  z-index: 1000;
}

.control-panel {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 108px);
  overflow: auto;
  padding: 16px;
}

.control-panel::-webkit-scrollbar {
  width: 8px;
}

.control-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.18);
}

.content,
.stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.card,
.report-card {
  padding: 18px;
}

.report-card {
  position: relative;
  overflow: hidden;
}

.report-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--lime));
}

@media (hover: hover) {
  .card,
  .report-card,
  .control-panel,
  .kpi,
  .breakdown div,
  .metric,
  .mode-card,
  .suggestion,
  .saved-item {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  }

  .card:hover,
  .report-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 113, 227, 0.18);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  }

  .kpi:hover,
  .breakdown div:hover,
  .metric:hover,
  .mode-card:hover,
  .suggestion:hover,
  .saved-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 113, 227, 0.2);
    box-shadow: 0 12px 32px rgba(0, 113, 227, 0.08);
  }
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.panel-title:first-child {
  border-top: 0;
  padding-top: 0;
}

.panel-title span,
.eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-title strong {
  font-size: 15px;
  font-weight: 750;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

.field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.fx-panel {
  display: grid;
  gap: 5px;
  margin: 0 0 13px;
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.09), rgba(156, 255, 0, 0.12));
  padding: 11px;
  color: #1f5c78;
  font-size: 12px;
}

.fx-panel strong {
  color: var(--ink);
}

input,
select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: 0;
  padding: 0 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:hover,
select:hover {
  background: #fff;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
  background: #fff;
}

.select-shell {
  position: relative;
  width: 100%;
}

.select-shell.open {
  z-index: 1100;
}

.select-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 253, 0.86));
  color: var(--ink);
  padding: 7px 10px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.select-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.34);
  background: #fff;
  box-shadow:
    0 12px 28px rgba(0, 113, 227, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.select-shell.open .select-trigger {
  border-color: var(--blue);
  box-shadow:
    0 0 0 4px rgba(0, 113, 227, 0.12),
    0 18px 44px rgba(0, 113, 227, 0.12);
}

.select-chevron {
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.select-shell.open .select-chevron {
  transform: rotate(180deg);
}

.select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1200;
  display: grid;
  gap: 5px;
  max-height: 318px;
  overflow: auto;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  padding: 7px;
  animation: menuIn 0.18s ease both;
}

.select-menu::-webkit-scrollbar {
  width: 8px;
}

.select-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.18);
}

.select-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 7px 9px;
  text-align: left;
  transition: background 0.16s ease, transform 0.16s ease, color 0.16s ease;
}

.select-option:hover {
  transform: translateX(3px);
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.1), rgba(156, 255, 0, 0.11));
}

.select-option.selected {
  background: rgba(0, 113, 227, 0.09);
}

.option-logo {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 183, 255, 0.16), rgba(156, 255, 0, 0.18)),
    #fff;
  color: #073c61;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.option-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.option-text strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.option-text small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.option-check {
  display: grid;
  place-items: center;
  color: var(--blue);
}

.select-shell.mini {
  width: auto;
  min-width: 184px;
}

.select-shell.mini .select-trigger {
  min-height: 38px;
}

.select-shell.inline .select-trigger {
  min-height: 40px;
}

.split .select-trigger {
  gap: 8px;
  padding-left: 8px;
  padding-right: 8px;
}

.split .option-logo {
  width: 28px;
  height: 28px;
}

.split .select-trigger .option-text small {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.report-header,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.report-header h2,
.section-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 780;
  line-height: 1.2;
}

.report-header p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.profit-badge {
  display: grid;
  gap: 4px;
  min-width: 178px;
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 8px;
  padding: 15px;
  text-align: right;
}

.profit-badge.positive {
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.12), rgba(156, 255, 0, 0.16));
  color: #083d54;
}

.profit-badge.negative {
  border-color: rgba(255, 106, 61, 0.25);
  background: #fff1ed;
  color: #ad3d1f;
}

.profit-badge span {
  font-size: 30px;
  font-weight: 820;
  letter-spacing: 0;
}

.profit-badge small {
  font-weight: 700;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.kpi {
  display: grid;
  gap: 7px;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 13px;
}

.kpi span,
.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.kpi strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 780;
}

.kpi.highlight {
  border-color: rgba(156, 255, 0, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(156, 255, 0, 0.12));
}

.breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.breakdown div {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 11px;
}

.breakdown div span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.breakdown meter {
  width: 100%;
  accent-color: var(--blue);
}

.sku-table,
.tax-table,
.saved-list {
  display: grid;
  gap: 8px;
}

.sku-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(170px, 1.25fr) 104px 104px 76px 128px 42px;
  gap: 8px;
  align-items: center;
}

.sku-head,
.tax-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.sku-row strong {
  text-align: right;
}

.inline-select {
  display: grid;
  gap: 4px;
}

.inline-select small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.good {
  color: #0b7f3a;
}

.bad,
.warn {
  color: var(--warning);
}

.suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.suggestion {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 13px;
}

.suggestion svg,
.suggestion i {
  color: var(--blue);
}

.suggestion.high {
  border-color: rgba(255, 106, 61, 0.24);
}

.suggestion.medium {
  border-color: rgba(0, 113, 227, 0.22);
}

.suggestion p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.delta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 750;
}

.delta.positive {
  border-color: rgba(156, 255, 0, 0.38);
  background: rgba(156, 255, 0, 0.12);
  color: #245b00;
}

.delta.negative {
  border-color: rgba(255, 106, 61, 0.25);
  background: #fff1ed;
  color: #ad3d1f;
}

.compare-grid,
.country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mode-card,
.country,
.saved-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 14px;
}

.mode-card {
  display: grid;
  gap: 9px;
}

.mode-card strong {
  color: var(--ink);
  font-size: 27px;
  font-weight: 800;
}

.mode-card p,
.country small,
.saved-item p,
.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.metrics-list,
.rate-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 12px;
}

.metric strong {
  overflow-wrap: anywhere;
}

.country {
  display: grid;
  gap: 7px;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.country:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.25);
  box-shadow: var(--shadow-soft);
}

.country.active {
  border-color: rgba(0, 113, 227, 0.42);
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.1), rgba(156, 255, 0, 0.1));
}

.country span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
}

.notice {
  margin-top: 12px;
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, rgba(0, 183, 255, 0.08), rgba(156, 255, 0, 0.1));
  padding: 10px 12px;
  color: #17465d;
  font-size: 13px;
  line-height: 1.6;
}

.source-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.tax-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.source-list {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.source-list p {
  margin: 0;
}

.select-mini {
  width: auto;
  min-width: 132px;
}

.searchbox {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 12px;
}

.searchbox input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.tax-row {
  display: grid;
  grid-template-columns: 86px minmax(220px, 1.4fr) 140px minmax(220px, 1fr);
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  padding: 9px 0;
  font-size: 13px;
}

.mono {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 180px;
  text-align: center;
  color: var(--muted);
}

.saved-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .control-panel {
    position: static;
    max-height: none;
  }

  .metrics-list,
  .rate-card,
  .tax-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .layout,
  .tabs {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
  }

  .top-actions button {
    width: 100%;
    min-width: 0;
  }

  .report-header,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .kpi-grid,
  .breakdown,
  .suggestions,
  .compare-grid,
  .country-grid,
  .metrics-list,
  .rate-card,
  .tax-snapshot {
    grid-template-columns: 1fr;
  }

  .sku-row,
  .tax-row {
    grid-template-columns: 1fr;
  }

  .sku-head,
  .tax-head {
    display: none;
  }

  .profit-badge {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .top-actions {
    grid-template-columns: 1fr;
  }

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

  .brand h1 {
    font-size: 17px;
  }

  .searchbox {
    min-width: 0;
  }
}

@media print {
  body {
    background: #fff;
  }

  .topbar,
  .tabs,
  .control-panel,
  .print-hidden {
    display: none !important;
  }

  .layout {
    display: block;
    padding: 0;
  }

  .content {
    display: block;
  }

  .report-card {
    border: 0;
    box-shadow: none;
  }
}
