:root {
  --purple: #4b32c3;
  --magenta: #d946ef;
  --violet: #c4b5fd;
  --icon-bg: #ede9fe;
  --bg: #eef2ff;
  --card: #f2f3fa;
  --white: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --body: #374151;
  --faint: #9ca3af;
  --line: #e5e7eb;
  --footer-box: #1f2937;
  --overlay: rgba(17, 24, 39, 0.4);
  --font-display: Montserrat, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --radius: 16px;
  --radius-btn: 12px;
  --header-h: 60px;
  --pad: 20px;
  --page-max: 480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  color: var(--magenta);
}

button,
input {
  font: inherit;
}

button {
  appearance: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.wrap {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--purple);
}

.site-header-inner {
  height: var(--header-h);
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo:hover {
  color: inherit;
}

.logo-ink {
  color: #fff;
}

.logo-seals {
  color: var(--violet);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  display: flex;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--magenta);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.cart-count.is-on {
  display: flex;
}

.nav-desktop {
  display: none;
}

.header-spacer {
  height: var(--header-h);
}

/* Menu */
.menu-backdrop,
.cart-backdrop,
.checkout-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 150;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-backdrop.is-open,
.cart-backdrop.is-open {
  display: block;
}

.checkout-backdrop.is-open {
  display: block;
  background: rgba(17, 24, 39, 0.5);
  z-index: 300;
}

.menu-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  max-width: 340px;
  background: #fff;
  z-index: 160;
  padding: 24px;
  border-left: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
}

.menu-drawer.is-open {
  display: flex;
}

.menu-close-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  display: flex;
}

.menu-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--bg);
}

.menu-link:hover,
.menu-link.is-active {
  color: var(--purple);
}

/* Sections */
.section {
  padding: 36px var(--pad);
}

.section-hero {
  background: var(--bg);
  padding: 32px var(--pad) 0;
}

.section-white {
  background: #fff;
}

.section-tint {
  background: var(--bg);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
}

.hero-kicker {
  color: var(--purple);
}

.hero-lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 16px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
  background: var(--card);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
}

.page-title-sm {
  font-size: 22px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
}

.section-lead {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 10px;
}

.section-lead-tight {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}

.section-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 18px;
}

.legal-date {
  font-size: 12px;
  color: var(--faint);
  margin: 6px 0 0;
}

.legal-date + .section-lead,
.legal-date + .legal-block {
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-btn);
  padding: 16px;
  text-align: center;
  transition: transform 0.3s, background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
}

.btn-ghost {
  background: #fff;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 15px;
}

.btn-ghost:hover {
  color: var(--purple);
}

.btn-quiet {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px;
}

.btn-quiet:hover {
  color: var(--ink);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* Feature cards */
.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.stack-tight {
  margin-top: 12px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 14px;
}

.icon-bubble {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bubble-white {
  background: #fff;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--purple);
  margin-bottom: 6px;
}

.feature-title-sm {
  font-size: 14px;
}

.feature-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body);
}

.gain-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-top: 20px;
}

.gain-row {
  display: flex;
  gap: 14px;
}

.gain-row .feature-text b {
  color: var(--ink);
}

/* Books */
.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.book-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s;
  height: 100%;
}

.book-card.is-soft {
  background: var(--card);
}

.book-card:hover {
  transform: translateY(-2px);
}

.book-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 999px;
}

.book-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 4px;
  min-height: 34px;
  overflow-wrap: break-word;
}

.book-author {
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: break-word;
}

.book-rating {
  font-size: 11px;
  color: var(--magenta);
}

.book-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.book-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--purple);
}

.add-btn {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.add-btn:hover {
  transform: translateY(-2px);
}

.link-more {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--purple);
}

/* Quotes / blog teaser */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
}

.quote-card.is-soft {
  background: var(--card);
}

.quote-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body);
  font-style: italic;
}

.quote-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--purple);
  margin-top: 10px;
}

.quote-name-top {
  margin: 0 0 8px;
}

.blog-teaser {
  display: block;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.blog-teaser:hover {
  color: var(--purple);
}

.center {
  text-align: center;
}

.checklist-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

/* Shop filters */
.filter-block {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--body);
  background: #fff;
}

.chip.is-on {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.shop-grid {
  margin-top: 26px;
}

.product-sample {
  margin-top: 32px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
}

.sample-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.sample-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}

.sample-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-top: 14px;
}

.sample-author {
  font-size: 13px;
  color: var(--muted);
}

.sample-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--purple);
  margin-top: 4px;
}

.sample-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body);
  margin-top: 12px;
}

.sample-review {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  margin-top: 14px;
}

.stars {
  font-size: 12px;
  color: var(--magenta);
  margin-bottom: 6px;
}

.delivery-box {
  margin-top: 28px;
}

.delivery-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}

.delivery-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* Promo */
.promo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--purple);
  line-height: 1.4;
  margin: 20px 0 0;
}

.legal-note {
  margin-top: 24px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
}

.legal-note p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.gallery-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}

.gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 80%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.karta-visuals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.karta-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  aspect-ratio: 16 / 10;
}

.karta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.karta-form {
  margin-top: 22px;
  max-width: 420px;
}

.karta-thanks {
  margin-top: 22px;
  text-align: left;
  padding: 8px 0 12px;
}

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px;
}

.blog-thumb {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-cat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.blog-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  margin-top: 6px;
}

.blog-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body);
  margin-top: 8px;
}

/* About */
.subhead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin: 28px 0 0;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.help-box {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.legal-item {
  font-size: 13px;
  line-height: 1.6;
  color: var(--body);
}

.legal-item b,
.legal-block b {
  color: var(--ink);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.legal-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 24px 0 0;
}

.legal-h-tight {
  margin-top: 20px;
}

.opinie-intro {
  font-size: 13px;
  color: var(--faint);
  font-style: italic;
  margin: 4px 0 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 36px var(--pad) 28px;
  font-family: var(--font-body);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
}

.age-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--ink);
  background: var(--magenta);
  padding: 3px 8px;
  border-radius: 6px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: var(--faint);
  margin: 0 0 16px;
  font-style: italic;
}

.footer-contacts {
  font-size: 13px;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 20px;
}

.footer-contacts a,
.footer-help a {
  color: var(--magenta);
}

.footer-contacts a:hover,
.footer-help a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #d1d5db;
}

.footer-help {
  background: var(--footer-box);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
}

.footer-help p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--faint);
  margin: 0 0 8px;
}

.footer-help-lines {
  font-size: 12px;
  line-height: 1.9;
  color: #d1d5db;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  border-top: 1px solid var(--footer-box);
  padding-top: 16px;
}

/* Cart */
.cart-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86%;
  max-width: 380px;
  background: #fff;
  z-index: 210;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.cart-drawer.is-open {
  display: flex;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--bg);
}

.cart-head span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 24px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-thumb {
  width: 52px;
  height: 70px;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-meta {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--purple);
  margin-top: 2px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-val {
  font-size: 13px;
  color: var(--ink);
  min-width: 14px;
  text-align: center;
}

.qty-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--faint);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

.similar {
  border-top: 1px solid var(--bg);
  padding-top: 16px;
  margin-top: 4px;
}

.similar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 12px;
}

.similar-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.similar-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 120px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.similar-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--bg);
}

.similar-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.3;
  color: var(--ink);
  min-height: 28px;
}

.similar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}

.similar-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--purple);
}

.similar-add {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.similar-add:hover {
  transform: translateY(-2px);
}

.cart-foot {
  padding: 20px;
  border-top: 1px solid var(--bg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 14px;
}

/* Checkout */
.checkout-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  max-width: 360px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  z-index: 310;
  padding: 24px;
}

.checkout-modal.is-open {
  display: block;
}

.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.checkout-head span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.checkout-thanks {
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  padding: 20px 0;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-form input {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f9fafb;
  color: var(--ink);
}

.checkout-form .btn {
  margin-top: 6px;
  padding: 14px;
}

/* Tablet */
@media (min-width: 768px) {
  :root {
    --page-max: 760px;
    --pad: 28px;
  }

  .page {
    overflow: visible;
  }

  .section {
    padding: 48px var(--pad);
  }

  .section-hero {
    padding: 40px var(--pad) 8px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
    max-width: 62ch;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 240px;
  }

  .hero-media {
    aspect-ratio: 16 / 9;
    max-height: 360px;
  }

  .stack.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .book-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .quotes-grid,
  .blog-teasers,
  .gains {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .gains {
    margin-top: 16px;
  }

  .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .blog-thumb {
    height: 170px;
  }

  .gallery-item {
    width: 46%;
  }

  .karta-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .product-sample {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: start;
  }

  .sample-kicker {
    grid-column: 1 / -1;
  }

  .filter-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
  }

  .footer-help {
    grid-column: 1 / -1;
  }

  .checkout-modal {
    width: 420px;
    max-width: 420px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --page-max: 1120px;
    --pad: 40px;
    --header-h: 68px;
  }

  body {
    background: #e8ecfa;
  }

  .page {
    box-shadow: 0 0 0 1px rgba(75, 50, 195, 0.06);
  }

  .site-header-inner {
    gap: 28px;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
    margin-right: 8px;
  }

  .nav-desktop a {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .nav-desktop a:hover,
  .nav-desktop a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .btn-menu {
    display: none;
  }

  .section-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 56px var(--pad) 40px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-media {
    margin-top: 0;
    max-height: none;
    min-height: 360px;
  }

  .page-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .stack.why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .book-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .book-grid.is-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quotes-grid.is-opinie {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-teasers {
    grid-template-columns: repeat(3, 1fr);
  }

  .gains {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .checklist-inner {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-actions.center-actions,
  .center .hero-actions {
    justify-content: center;
  }

  .legal-page .section {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-item {
    width: 32%;
  }

  .product-sample {
    grid-template-columns: 280px 1fr;
    padding: 24px;
  }

  .filter-block {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1.2fr;
    align-items: start;
  }

  .footer-help {
    grid-column: auto;
    margin-bottom: 0;
  }

  .footer-copy {
    margin-top: 24px;
  }

  .cart-drawer {
    width: 400px;
  }
}

@media (max-width: 767px) {
  ::-webkit-scrollbar {
    display: none;
  }
}
