/* Cost Plus Natur & Gesundheit — translated from the Claude Design file
   (Cost Plus Natur.dc.html). Tokens: paper #FAF7F2, ink #26302A, green #2F6B4A. */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #faf7f2;
  color: #26302a;
  font-family: "Libre Franklin", Helvetica, Arial, sans-serif;
}

::selection { background: #dceadf; }

a { color: inherit; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.main { flex: 1; }
.container { max-width: 1180px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ── Topbar ── */
.topbar { background: #efeae0; border-bottom: 1px solid #e7e0d2; }
.topbar-inner {
  padding-top: 7px; padding-bottom: 7px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 11.5px; color: #6b7268; letter-spacing: 0.02em;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7e0d2;
}
.site-header-inner {
  padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.brand { cursor: pointer; text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.brand-name {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 25px; font-weight: 700; color: #26302a; line-height: 1;
}
.brand-sub {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: #2f6b4a;
}
.site-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  color: #5c665c; padding: 6px 2px; border-bottom: 2px solid transparent;
}
.nav-link.active { color: #26302a; border-bottom-color: #2f6b4a; }
.nav-link:hover { color: #26302a; }

/* ── Hero ── */
.hero { border-bottom: 1px solid #e7e0d2; background: #f5f1e8; }
.hero-inner { padding-top: 72px; padding-bottom: 64px; }
.hero-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #2f6b4a; margin-bottom: 18px;
}
.hero h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 46px; font-weight: 700; line-height: 1.15;
  margin: 0; max-width: 820px; text-wrap: pretty;
}
.hero p {
  font-size: 17px; line-height: 1.6; color: #4c564c;
  max-width: 640px; margin: 22px 0 32px 0; text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  cursor: pointer; text-decoration: none; background: #2f6b4a; color: #fff;
  font-size: 14.5px; font-weight: 600; border-radius: 8px; padding: 13px 22px;
}
.btn-primary:hover { background: #26573c; }
.btn-secondary {
  cursor: pointer; text-decoration: none; background: #fff; color: #26302a;
  border: 1px solid #d8d0be; font-size: 14.5px; font-weight: 600;
  border-radius: 8px; padding: 12px 22px;
}
.btn-secondary:hover { border-color: #2f6b4a; color: #2f6b4a; }

/* ── Kuratierung steps ── */
.steps { padding-top: 48px; padding-bottom: 8px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.step { display: flex; flex-direction: column; gap: 6px; }
.step-label { font-size: 13px; font-weight: 700; color: #2f6b4a; letter-spacing: 0.06em; }
.step-text { font-size: 14.5px; line-height: 1.55; color: #4c564c; }

/* ── Section headings ── */
.section { padding-top: 48px; padding-bottom: 12px; }
.section h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 28px; font-weight: 700; margin: 0 0 20px 0;
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.section-head h2 { margin: 0; }
.ad-hint { font-size: 12px; color: #8a8474; }

/* ── Category tiles ── */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.tile {
  cursor: pointer; text-decoration: none; background: #fff;
  border: 1px solid #e7e0d2; border-radius: 12px; padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.tile:hover { border-color: #2f6b4a; box-shadow: 0 2px 12px rgba(47, 107, 74, 0.08); }
.tile-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.tile-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px; font-weight: 700; color: #26302a;
}
.tile-count { font-size: 12px; color: #8a8474; white-space: nowrap; }
.tile-desc { font-size: 13.5px; line-height: 1.5; color: #6b7268; }
.tile-cta { font-size: 13px; font-weight: 600; color: #2f6b4a; margin-top: 6px; }

/* ── Product cards ── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid #e7e0d2; border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
}
.card-image {
  height: 150px; position: relative;
  background: repeating-linear-gradient(45deg, #f1ede3, #f1ede3 10px, #eae4d6 10px, #eae4d6 20px);
  display: flex; align-items: center; justify-content: center;
}
.card-image img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.card-image-placeholder {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px; color: #8a8474; letter-spacing: 0.06em;
}
.card-cat-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: #6b7268; background: #faf7f2; border: 1px solid #e7e0d2;
  border-radius: 4px; padding: 2px 7px;
}
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; min-height: 20px; }
.tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: #2f6b4a; background: #eaf2eb; border-radius: 4px; padding: 3px 7px;
}
.card-title { font-size: 15px; font-weight: 600; line-height: 1.35; }
.card-price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; padding-top: 6px; }
.card-price { font-size: 20px; font-weight: 700; }
.card-unit { font-size: 12px; color: #6b7268; }
.card-seller { font-size: 12px; color: #6b7268; overflow-wrap: anywhere; }
.btn-ebay {
  display: flex; align-items: center; justify-content: center;
  background: #2f6b4a; color: #fff; text-decoration: none;
  font-size: 13.5px; font-weight: 600; border-radius: 8px;
  padding: 10px 12px; margin-top: 4px;
}
.btn-ebay:hover { background: #26573c; }

/* ── Category page ── */
.cat-section { padding-top: 36px; padding-bottom: 8px; }
.breadcrumb { font-size: 12.5px; color: #8a8474; margin-bottom: 14px; }
.breadcrumb a { cursor: pointer; color: #2f6b4a; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.cat-section h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 36px; font-weight: 700; margin: 0 0 12px 0;
}
.cat-intro {
  font-size: 15.5px; line-height: 1.6; color: #4c564c;
  max-width: 680px; margin: 0 0 28px 0; text-wrap: pretty;
}
.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid #e7e0d2; border-bottom: 1px solid #e7e0d2;
  padding: 14px 0; margin-bottom: 24px;
}
.toolbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.result-count { font-size: 13px; font-weight: 600; color: #26302a; }
.chip {
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  padding: 6px 13px; border-radius: 999px; cursor: pointer; text-decoration: none;
  border: 1px solid #d8d0be; background: #fff; color: #4c564c;
}
.chip.active { border-color: #2f6b4a; background: #2f6b4a; color: #fff; }
.sort-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #6b7268; }
.sort-label select {
  font-family: inherit; font-size: 13px; color: #26302a; background: #fff;
  border: 1px solid #d8d0be; border-radius: 7px; padding: 7px 10px; cursor: pointer;
}
.sort-submit {
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  border: 1px solid #d8d0be; background: #fff; color: #4c564c;
  border-radius: 7px; padding: 7px 10px; cursor: pointer;
}
.empty-note {
  background: #f5f1e8; border: 1px solid #e7e0d2; border-radius: 10px;
  padding: 16px 20px; font-size: 13.5px; line-height: 1.6; color: #6b7268;
}

/* ── Affiliate note ── */
.affiliate-note-wrap { padding-top: 32px; padding-bottom: 48px; }
.affiliate-note {
  background: #f5f1e8; border: 1px solid #e7e0d2; border-radius: 10px;
  padding: 16px 20px; font-size: 12.5px; line-height: 1.6; color: #6b7268;
}
.affiliate-note strong { color: #4c564c; }

/* ── Legal pages ── */
.legal { padding-top: 36px; padding-bottom: 48px; max-width: 760px; }
.legal h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 36px; font-weight: 700; margin: 0 0 18px 0;
}
.legal h2 { font-family: "Source Serif 4", Georgia, serif; font-size: 22px; margin: 28px 0 10px 0; }
.legal p { font-size: 14.5px; line-height: 1.65; color: #4c564c; }

/* ── Footer ── */
.footer { background: #26302a; color: #c9cfc5; }
.footer-inner { padding-top: 44px; padding-bottom: 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand-name { color: #fff; font-size: 22px; }
.footer-brand-sub { color: #8fb59e; font-size: 9px; }
.footer-brand p { font-size: 12.5px; line-height: 1.6; color: #9aa396; margin: 6px 0 0 0; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-heading {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #8fb59e;
}
.footer-link { cursor: pointer; font-size: 13px; color: #c9cfc5; text-decoration: none; }
.footer-link:hover { color: #fff; }
.footer-address {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px; line-height: 1.7; color: #9aa396;
}
.footer-legal { display: flex; gap: 14px; margin-top: 4px; }
.footer-legal a { font-size: 12.5px; color: #c9cfc5; text-decoration: underline; }
.footer-legal a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px; padding-top: 16px; font-size: 11.5px; color: #79826f;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero-inner { padding-top: 48px; padding-bottom: 44px; }
  .cat-section h1 { font-size: 28px; }
}
