/* oz-kreatywne.com — один файл на три страницы. Ноль внешних запросов. */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/quicksand-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/quicksand-700.ttf') format('truetype');
}
:root {
  --brand: #f07800;
  --ink: #33302c;
  --muted: #6d6862;
  --line: #e6e1da;
  --bg: #fdfbf8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 600 17px/1.6 'Quicksand', 'Trebuchet MS', 'Segoe UI', system-ui, sans-serif;
}
header {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.brand img { display: block; height: 42px; width: auto; }
.langs { font-size: 15px; color: var(--muted); }
.langs a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.langs a:hover { color: var(--brand); border-color: var(--brand); }
.langs [aria-current] { color: var(--brand); font-weight: 700; }
main, footer { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 40px 0; border-bottom: 1px solid var(--line); }
h1 { font-size: clamp(28px, 4.4vw, 40px); font-weight: 700; line-height: 1.2; margin: 0 0 16px; }
h2 { font-size: clamp(20px, 2.6vw, 25px); font-weight: 700; margin: 0 0 16px; }
h3 { font-size: 17px; font-weight: 700; margin: 12px 0 4px; }
p { margin: 0 0 12px; }
.lead { font-size: clamp(18px, 2.2vw, 21px); max-width: 62ch; }
.cta {
  display: inline-block; margin-top: 8px; padding: 13px 24px; border-radius: 8px;
  background: var(--brand); color: #fff; text-decoration: none; font-weight: 700;
}
.cta:hover { filter: brightness(0.94); }
.geo { color: var(--muted); max-width: 62ch; }
.seria h2 { letter-spacing: 0.04em; color: var(--brand); }
.seria p { max-width: 70ch; }
.grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.karta { position: relative; }
.karta img {
  display: block; width: 100%; height: auto; border-radius: 8px;
  border: 1px solid var(--line); background: #fff;
}
.badge {
  position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 999px;
  background: var(--brand); color: #fff; font-size: 12px; font-weight: 700;
}
.meta, .ean { color: var(--muted); font-size: 14px; margin: 0 0 4px; }
.cena { font-weight: 700; margin: 0 0 8px; }
.buy {
  display: inline-block; padding: 8px 16px; border-radius: 8px;
  border: 2px solid var(--brand); color: var(--brand); text-decoration: none; font-weight: 700;
}
.buy:hover { background: var(--brand); color: #fff; }
.zestaw ul { margin: 0; padding-left: 22px; max-width: 72ch; }
.zestaw li { margin-bottom: 12px; }
.onas p { max-width: 72ch; }
footer { padding-bottom: 56px; font-size: 15px; color: var(--muted); }
footer section { border: 0; }
footer h2 { color: var(--ink); }
footer a { color: var(--muted); }
.producent { color: var(--ink); }
.fakt a { color: var(--brand); text-decoration: underline; }
footer a { text-decoration: underline; }
@media (max-width: 480px) {
  body { font-size: 16px; }
  section { padding: 28px 0; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
}
