
:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f2ede4;
  --text: #1b1810;
  --text-muted: #766e5f;
  --border: #e7e0d2;
  --cta-bg: #1b1810;
  --cta-text: #faf7f2;
  --shadow: 0 1px 3px rgba(27,24,16,0.06), 0 8px 24px rgba(27,24,16,0.06);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14110f;
    --surface: #1e1a16;
    --surface-2: #241f19;
    --text: #f2ece0;
    --text-muted: #a89d89;
    --border: #2d271f;
    --cta-bg: #d9b06c;
    --cta-text: #16120d;
    --shadow: 0 1px 3px rgba(0,0,0,0.35), 0 12px 28px rgba(0,0,0,0.35);
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 480px; margin: 0 auto; padding: 40px 20px 56px; }

.hero { text-align: center; margin-bottom: 20px; }
.brand-mark {
  width: 44px; height: 44px; margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--cta-bg); color: var(--cta-text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95em; letter-spacing: 0.02em;
}
.hero h1 { margin: 0; font-size: clamp(1.7em, 6vw, 2.1em); font-weight: 700; letter-spacing: -0.01em; }
.hero .tagline { margin: 10px auto 0; max-width: 320px; color: var(--text-muted); font-size: 1em; }
.trust-row {
  margin-top: 18px; display: flex; justify-content: center; align-items: center;
  gap: 8px; flex-wrap: wrap; font-size: 0.82em; color: var(--text-muted); letter-spacing: 0.01em;
}
.trust-row .sep { opacity: 0.5; }

.disclosure {
  margin: 24px 0 30px; padding: 12px 16px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  font-size: 0.8em; color: var(--text-muted); text-align: center; line-height: 1.5;
}

.grid { display: flex; flex-direction: column; gap: 20px; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.card:active { transform: scale(0.99); }

.card-media { position: relative; }
.card-media img {
  display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--surface-2);
}
.card-media .noimg {
  width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85em; background: var(--surface-2);
}
.chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(20,17,15,0.72); color: #fff;
  padding: 4px 10px; border-radius: 999px; font-size: 0.72em; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
}

.card-body { padding: 18px 18px 20px; }
.card-body h2 { margin: 0 0 10px; font-size: 1.08em; font-weight: 600; line-height: 1.35; }
.price { font-size: 1.15em; font-weight: 700; color: var(--text); margin-bottom: 16px; }

.cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; background: var(--cta-bg); color: var(--cta-text);
  text-decoration: none; font-weight: 600; font-size: 0.98em;
  border-radius: 10px; letter-spacing: 0.01em;
}
.cta:active { opacity: 0.88; }
.cta.disabled { opacity: 0.35; pointer-events: none; }
.cta-arrow { flex-shrink: 0; }

.empty { text-align: center; color: var(--text-muted); padding: 56px 0; }

footer { text-align: center; margin-top: 44px; }
.footer-brand { margin: 0 0 4px; font-weight: 700; letter-spacing: 0.02em; color: var(--text-muted); font-size: 0.85em; }
.footer-note { margin: 0; color: var(--text-muted); font-size: 0.72em; opacity: 0.8; }
