:root {
  --brand: #0c3c2c;
  --accent: #ff6b1a;
  --bg: #f7f6f2;
  --card: #ffffff;
  --text: #1c2420;
  --muted: #6b7570;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
}
a { color: var(--brand); }
main { max-width: 960px; margin: 0 auto; padding: 0 16px 48px; }

.site-header {
  background: var(--brand); color: #fff; display: flex; align-items: center;
  justify-content: space-between; padding: 12px 20px; flex-wrap: wrap; gap: 8px;
}
.site-header .logo { color: #fff; text-decoration: none; font-size: 1.4rem; font-weight: 800; }
.site-header .logo span { color: var(--accent); }
.site-header nav a { color: #fff; text-decoration: none; margin-left: 18px; font-weight: 600; }
.site-header nav a:hover { color: var(--accent); }

.hero { text-align: center; padding: 40px 0 16px; }
.hero h1 { font-size: 2rem; margin: 0 0 8px; }
.hero .sub { color: var(--muted); font-size: 1.1rem; }

.teaser { background: var(--card); border-radius: 12px; padding: 20px 24px; margin: 20px 0;
          box-shadow: 0 1px 4px rgba(0,0,0,.07); }
.teaser h2 { margin: 0 0 12px; font-size: 1.25rem; }
.teaser h2 a { text-decoration: none; }
.teaser-list { list-style: none; margin: 0; padding: 0; }
.teaser-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0;
                  border-bottom: 1px solid #eee; }
.teaser-list li:last-child { border-bottom: 0; }
.teaser-list img { object-fit: contain; border-radius: 6px; background: #fff; }
.teaser-list .name { flex: 1; }
.teaser-list .price { font-weight: 700; white-space: nowrap; }
.rank { font-weight: 800; color: var(--accent); min-width: 2.2em; }
.more { display: inline-block; margin-top: 10px; font-weight: 700; }

.toplist h1 { font-size: 1.7rem; }
.updated { color: var(--muted); font-size: .9rem; }
table.compare { width: 100%; border-collapse: collapse; background: var(--card);
                border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.07); }
.compare th, .compare td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #eee; }
.compare th { background: var(--brand); color: #fff; font-size: .85rem; }
.compare img { object-fit: contain; }
.compare .price { font-weight: 700; white-space: nowrap; }
.up { color: #1a9e3f; font-size: .8rem; margin-left: 4px; }
.down { color: #c22; font-size: .8rem; margin-left: 4px; }
.discount { background: #e53935; color: #fff; border-radius: 4px; padding: 1px 6px;
            font-size: .78rem; font-weight: 700; margin-left: 6px; }
.badge { background: var(--accent); color: #fff; border-radius: 4px; padding: 2px 8px;
         font-size: .75rem; font-weight: 700; margin-left: 8px; white-space: nowrap; }

.cta { background: var(--accent); color: #fff !important; text-decoration: none;
       padding: 8px 14px; border-radius: 8px; font-weight: 700; white-space: nowrap;
       display: inline-block; }
.cta:hover { filter: brightness(1.1); }
.cta.big { padding: 12px 24px; font-size: 1.05rem; margin-top: 12px; }

.place { background: var(--card); border-radius: 12px; padding: 24px; margin: 24px 0;
         box-shadow: 0 1px 4px rgba(0,0,0,.07); }
.place h2 { margin-top: 0; font-size: 1.3rem; }
.rank-badge { background: var(--brand); color: #fff; border-radius: 8px;
              padding: 4px 12px; font-size: 1rem; margin-right: 8px; }
.place-body { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.place-body img { border-radius: 8px; background: #fff; max-width: 280px; height: auto; }
.place-info { flex: 1; min-width: 240px; }
.brand { color: var(--muted); font-weight: 600; margin: 0; }
.features { margin: 10px 0 4px; padding-left: 20px; }
.features li { margin: 3px 0; }
.summary { color: var(--muted); margin: 8px 0 4px; line-height: 1.5; }
.cookie-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1000;
  display: flex; justify-content: center; align-items: flex-start; padding: 10vh 16px 16px; }
.cookie-overlay[hidden] { display: none; }
.cookie-modal { background: #fff; border-radius: 12px; padding: 20px 24px; max-width: 520px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.cookie-modal p { margin: 0 0 14px; font-size: .98rem; }
body.cc-lock { overflow: hidden; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { cursor: pointer; font: inherit; }
.cookie-actions .cta { border: 0; }
.cc-decline { background: none; border: 1px solid #ccc; border-radius: 8px; padding: 8px 14px; color: var(--muted); }
.price-big { font-size: 1.6rem; font-weight: 800; margin: 8px 0; }
.price-big s { color: var(--muted); font-size: 1rem; font-weight: 400; margin-left: 8px; }
.stars { color: #e8a100; font-weight: 700; }
.proof { color: var(--muted); font-size: .95rem; }
.loading { color: var(--muted); font-style: italic; }

.page { background: var(--card); border-radius: 12px; padding: 32px; margin-top: 24px;
        box-shadow: 0 1px 4px rgba(0,0,0,.07); }

.site-footer { max-width: 960px; margin: 0 auto; padding: 24px 16px 40px;
               color: var(--muted); font-size: .88rem; border-top: 1px solid #ddd; }
.site-footer nav { margin: 8px 0; }

@media (max-width: 640px) {
  .compare th:nth-child(4), .compare td:nth-child(4) { display: none; }
  .hero h1 { font-size: 1.4rem; }
}
