/* [project]/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #1f1a14;
  --panel: #fffdf8;
  --accent: #b85c38;
  --accent-strong: #8f3d1f;
  --border: #e9dcc8;
  --muted: #1f1a14a6;
  --danger: #a42525;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at 15% 10%, #b85c381f, transparent 55%), radial-gradient(circle at 90% 85%, #436d601f, transparent 50%), var(--bg);
  color: var(--ink);
  font-family: Georgia, Times New Roman, serif;
}

.page-shell {
  place-items: center;
  min-height: 100svh;
  padding: 1.25rem;
  display: grid;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: min(1080px, 100%);
  padding: 1.25rem;
  box-shadow: 0 20px 60px #1f1a1414;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 .5rem;
  font-size: .9rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
}

h2 {
  margin: 0;
  font-size: 1.05rem;
}

.subtitle {
  color: #1f1a14cc;
  margin: .9rem 0 0;
  line-height: 1.5;
}

.search-form, .import-panel {
  border: 1px solid var(--border);
  background: #ffffff8c;
  border-radius: 14px;
  margin-top: 1rem;
  padding: 1rem;
}

.bookmarklet-box {
  border-top: 1px dashed var(--border);
  margin-top: .8rem;
  padding-top: .8rem;
}

.field-label {
  margin-bottom: .45rem;
  font-weight: 700;
  display: block;
}

.field-row {
  grid-template-columns: 1fr auto;
  gap: .65rem;
  display: grid;
}

.search-input, .json-input {
  border: 1px solid var(--border);
  width: 100%;
  color: var(--ink);
  font: inherit;
  background: #fff;
  border-radius: 10px;
  padding: .75rem .9rem;
}

.search-input {
  min-height: 44px;
}

.json-input {
  resize: vertical;
  min-height: 180px;
  margin-top: .6rem;
  font-family: Courier New, monospace;
  line-height: 1.35;
}

.search-input:focus, .json-input:focus {
  border-color: var(--accent);
  outline: 2px solid #b85c3840;
}

.search-button, .ghost-button {
  min-height: 44px;
  font: inherit;
  cursor: pointer;
  border-radius: 10px;
  padding: 0 1rem;
  font-weight: 700;
}

.search-button {
  background: var(--accent);
  color: #fff;
  border: 0;
}

.search-button:hover:not(:disabled) {
  background: var(--accent-strong);
}

.search-button:disabled {
  opacity: .7;
  cursor: wait;
}

.ghost-button {
  border: 1px solid var(--border);
  color: var(--ink);
  background: #fff;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.ghost-button:hover {
  border-color: var(--accent);
}

.status {
  color: var(--muted);
  margin: .9rem 0 0;
}

.status.error {
  color: var(--danger);
}

.step-list {
  color: var(--ink);
  margin: .35rem 0 0;
  padding-left: 1.1rem;
}

.step-list li {
  margin: .2rem 0;
}

.import-link-line {
  margin-top: .6rem;
}

.import-link-line a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.import-link-line a:hover {
  text-decoration: underline;
}

.button-row {
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .65rem;
  display: flex;
}

.bookmarklet-link {
  min-width: 220px;
}

.bookmarklet-textarea {
  min-height: 96px;
}

.results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  display: grid;
}

.results-panel {
  border: 1px solid var(--border);
  background: #ffffffa6;
  border-radius: 14px;
  min-height: 280px;
  padding: .9rem;
}

.results-panel-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .35rem;
  display: flex;
}

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

.item-list {
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.item-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: .7rem;
}

.item-card-top {
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: .6rem;
  display: grid;
}

.item-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}

.item-price {
  color: var(--accent-strong);
  white-space: nowrap;
  margin: 0;
  font-weight: 700;
}

.item-meta {
  color: var(--muted);
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-top: .45rem;
  font-size: .9rem;
  display: flex;
}

.item-meta a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.item-meta a:hover {
  text-decoration: underline;
}

.inline-delete-button {
  color: var(--danger);
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 700;
}

.inline-delete-button:hover:not(:disabled) {
  text-decoration: underline;
}

.inline-delete-button:disabled {
  opacity: .6;
  cursor: wait;
}

.trade-values {
  color: var(--accent-strong);
  gap: .15rem;
  margin: .45rem 0 0;
  font-size: .9rem;
  font-weight: 700;
  display: grid;
}

.trade-values p {
  margin: 0;
}

code {
  background: #f2ebe0;
  border-radius: 6px;
  padding: .1rem .35rem;
  font-family: Courier New, monospace;
}

@media (max-width: 800px) {
  .field-row, .results-grid, .item-card-top {
    grid-template-columns: 1fr;
  }

  .item-price {
    white-space: normal;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/