/* =====================================================
   KetoPizza.pl — Style główne
   Design system: warm vintage + modern e-commerce
   Mobile-first. Performance-conscious.
   ===================================================== */

:root {
  --cream: #F4ECD8;
  --cream-2: #EFE3C5;
  --paper: #FAF6EC;
  --ink: #1B232A;
  --ink-2: #2A3640;
  --slate: #3B4A55;
  --red: #C8442A;
  --red-2: #A8371F;
  --red-glow: #E15A3D;
  --gold: #E0A93C;
  --green: #5A8C3E;
  --line: rgba(27,35,42,0.10);
  --shadow-sm: 0 2px 8px rgba(27,35,42,0.06);
  --shadow-md: 0 12px 32px rgba(27,35,42,0.10);
  --shadow-lg: 0 24px 60px rgba(27,35,42,0.18);
  --radius: 14px;
  --radius-lg: 22px;

  --font-display: 'Bebas Neue', 'Inter', system-ui, sans-serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --header-h: 88px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============== TOPBAR ============== */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 60;
}
.topbar-track {
  display: inline-flex;
  gap: 48px;
  padding: 10px 24px;
  animation: marquee 25s linear infinite;
  will-change: transform;
}
.topbar-track > span { display: inline-flex; align-items: center; gap: 6px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== HEADER ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 18px;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 64px;
  width: auto;
  transition: transform 0.2s ease;
}
.logo:hover img { transform: scale(1.04); }
@media (min-width: 900px) {
  .logo img { height: 72px; }
}

.nav { display: none; gap: 4px; margin-left: 28px; flex: 1; align-items: center; }
.nav a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
}
.nav a:hover {
  color: var(--ink);
  background: rgba(27,35,42,0.06);
}
.nav a.active {
  color: var(--red);
  background: rgba(200,68,42,0.10);
}
.nav a.active::before {
  content: '';
  position: absolute;
  top: 50%; left: 6px;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(200,68,42,0.20);
}
.nav a.active { padding-left: 18px; }

.header-actions {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
}

.zone-btn {
  display: none;
  align-items: center; gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
}
.zone-btn:hover { border-color: var(--ink); }
.zone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(224,169,60,0.18);
}
.zone-btn.active .zone-dot { background: var(--green); box-shadow: 0 0 0 3px rgba(90,140,62,0.22); }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: transform 0.15s, background 0.2s;
}
.cart-btn:hover { background: var(--red); transform: translateY(-1px); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 800;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  display: grid; place-items: center;
  border: 2px solid var(--paper);
  padding: 0 5px;
}
.cart-btn.bump { animation: bump 0.4s ease; }
@keyframes bump {
  0%,100% { transform: scale(1); }
  35% { transform: scale(1.18); }
  60% { transform: scale(0.94); }
}

.burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  border-radius: 10px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 36px);
  min-height: calc(100svh - var(--header-h) - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200,68,42,0.25), transparent 50%),
    linear-gradient(180deg, rgba(27,35,42,0.55) 0%, rgba(27,35,42,0.85) 100%);
  z-index: -1;
}
.hero-content {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 20px 140px;
  color: var(--cream);
}
.hero-badge {
  display: inline-block;
  padding: 7px 14px;
  border: 1.5px solid rgba(244,236,216,0.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.18);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  font-weight: 400;
  margin-bottom: 20px;
}
.hero h1 .line { display: block; }
.hero h1 .accent {
  font-family: var(--font-script);
  font-size: 0.78em;
  color: var(--red-glow);
  font-weight: 400;
  text-shadow: 0 4px 24px rgba(225,90,61,0.35);
  margin-top: 4px;
}
.hero-sub {
  max-width: 540px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: rgba(244,236,216,0.92);
  margin-bottom: 32px;
}
.hero-sub strong { color: var(--cream); }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,236,216,0.18);
}
.hero-trust > div {
  display: flex; flex-direction: column;
  font-size: 13px;
  color: rgba(244,236,216,0.7);
}
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-trust > div:first-child strong { color: var(--gold); }
.hero-trust .rating-row { display: flex; align-items: baseline; gap: 6px; }
.hero-trust .star { font-size: 18px; color: var(--gold); line-height: 1; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(244,236,216,0.5);
  border-radius: 14px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 3px; height: 8px;
  background: var(--cream);
  border-radius: 2px;
  animation: scroll 1.6s infinite;
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%,100% { opacity: 0; transform: translateY(14px); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.25s, border-color 0.2s;
  white-space: nowrap;
}
.btn small { display: block; font-size: 11px; font-weight: 500; opacity: 0.78; margin-top: 2px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(200,68,42,0.32);
}
.btn-primary:hover { background: var(--red-2); box-shadow: 0 12px 30px rgba(200,68,42,0.45); transform: translateY(-1px); }

.btn-secondary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
.btn-secondary:hover { background: white; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  background: rgba(255,255,255,0.10);
  color: inherit;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 16px;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.20); }

.btn-lg { padding: 18px 30px; font-size: 16px; border-radius: 14px; }

.btn .hero-cta small { display: block; }

.hero-cta .btn { flex-direction: column; align-items: flex-start; padding: 14px 22px; }
.hero-cta .btn span:first-child { font-size: 16px; }

/* ============== ZONE STRIP ============== */
.zone-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  border-bottom: 1px solid rgba(244,236,216,0.10);
}
.zone-strip-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.zone-strip-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.zone-strip-value { font-size: 15px; font-weight: 600; margin-top: 2px; }

/* ============== SECTIONS ============== */
.section { padding: 80px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head.light .kicker { background: rgba(244,236,216,0.10); color: var(--gold); }
.section-head.dark .kicker { background: rgba(27,35,42,0.06); color: var(--ink); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.section-head h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 0.78em;
  color: var(--red);
  font-weight: 400;
}
.section-head p { color: var(--ink-2); font-size: 17px; max-width: 600px; margin: 0 auto; }
.section-head.light p { color: rgba(244,236,216,0.78); }

.kicker.dark { background: rgba(27,35,42,0.08); color: var(--ink); }

/* ============== CATEGORIES ============== */
.categories { background: var(--paper); padding-bottom: 60px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cat-card {
  position: relative;
  display: flex; flex-direction: column;
  gap: 8px;
  padding: 22px 20px 56px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  isolation: isolate;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.10;
  z-index: -1;
  transition: transform 0.4s ease, opacity 0.3s;
}
.cat-card:hover::before { transform: scale(1.4); opacity: 0.18; }

.cat-classic::before { background: var(--gold); }
.cat-spicy::before { background: var(--red); }
.cat-premium::before { background: var(--ink); }
.cat-box::before { background: var(--green); }
.cat-abo::before { background: #6E5BAA; }
.cat-free::before { background: var(--gold); }

.cat-emoji {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
}
.cat-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.cat-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}
.cat-arrow {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s ease;
}
.cat-card:hover .cat-arrow {
  background: var(--red);
  transform: translate(2px, -2px);
}

@media (min-width: 640px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 900px) {
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-card { padding: 26px 22px 62px; }
}

/* ============== MENU ============== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-2);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-media img { transform: scale(1.06); }

.ribbon {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  line-height: 1.4;
}
.ribbon.green { background: var(--green); }
.ribbon.gold { background: var(--gold); color: var(--ink); }

.macros {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; gap: 8px;
  z-index: 2;
}
.macros span {
  flex: 1;
  background: rgba(27,35,42,0.78);
  color: var(--cream);
  backdrop-filter: blur(10px);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center;
  letter-spacing: 0.04em;
}
.macros strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gold);
}

.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.05;
}
.card-body p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}
.price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.btn-add {
  background: var(--ink); color: var(--cream);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-add span { font-size: 18px; line-height: 1; }
.btn-add:hover { background: var(--red); transform: translateY(-1px); }
.btn-add.added { background: var(--green); }

.card.spicy::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--red), var(--gold)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

/* free shipping bar */
.menu-foot { margin-top: 56px; }
.freeship {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.freeship-bar {
  height: 8px;
  background: var(--cream-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.freeship-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  width: 0%;
  transition: width 0.5s ease;
  border-radius: 999px;
}
.freeship p { font-size: 14px; color: var(--ink-2); }
.freeship.done p { color: var(--green); font-weight: 600; }

/* ============== HOW IT WORKS ============== */
.how {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,68,42,0.18), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(224,169,60,0.10), transparent 40%);
  pointer-events: none;
}
.how .container { position: relative; }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 56px;
  list-style: none !important;
  padding-left: 0 !important;
  counter-reset: none;
}
.steps li {
  list-style: none !important;
  background: rgba(244,236,216,0.04);
  border: 1px solid rgba(244,236,216,0.10);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
}
.steps li:hover {
  background: rgba(244,236,216,0.08);
  transform: translateY(-3px);
  border-color: rgba(224,169,60,0.35);
}
.step-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
}
.step-icon { font-size: 38px; margin-bottom: 14px; line-height: 1; }
.steps h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.005em;
}
.steps p { color: rgba(244,236,216,0.72); font-size: 14px; line-height: 1.55; }

.how-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.how-visual img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.how-visual-tag {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(27,35,42,0.85);
  backdrop-filter: blur(14px);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(244,236,216,0.15);
}
.how-visual-tag strong { font-size: 15px; }
.how-visual-tag span { font-size: 12px; opacity: 0.78; margin-top: 2px; }

/* ============== STORY ============== */
.story { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.story-text h2 { text-align: left; font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); font-weight: 400; line-height: 1.05; margin: 14px 0 24px; letter-spacing: 0.005em; }
.story-text h2 em { font-family: var(--font-script); font-style: normal; color: var(--red); font-size: 0.85em; }
.story-text p { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin-bottom: 14px; }
.story-text strong { color: var(--red); }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.story-stats > div { display: flex; flex-direction: column; }
.story-stats strong { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 400; color: var(--ink); letter-spacing: 0.005em; line-height: 1; }
.story-stats span { font-size: 12px; color: var(--ink-2); margin-top: 4px; letter-spacing: 0.04em; }

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.story-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ============== ABO ============== */
.abo { background: var(--paper); }
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.plan {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: all 0.3s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; letter-spacing: 0.01em; }
.plan-price {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-2);
}
.plan-price span {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.005em;
}
.plan-meta { font-size: 14px; color: var(--ink-2); }
.plan ul { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 4px; }
.plan li { font-size: 14px; color: var(--ink-2); }
.plan .btn { margin-top: auto; width: 100%; }

.plan.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: scale(1.0);
  box-shadow: var(--shadow-lg);
}
.plan.featured h3,
.plan.featured .plan-price span { color: var(--cream); }
.plan.featured .plan-price { color: rgba(244,236,216,0.7); }
.plan.featured li { color: rgba(244,236,216,0.85); }
.plan.featured .plan-meta { color: rgba(244,236,216,0.7); }
.plan-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============== LOYALTY ============== */
.loyalty {
  background: linear-gradient(135deg, #1B232A 0%, #2A3640 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.loyalty::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(224,169,60,0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(200,68,42,0.18), transparent 45%);
  pointer-events: none;
}
.loyalty .container { position: relative; }

.loyalty-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(244,236,216,0.06);
  border: 1px solid rgba(244,236,216,0.14);
  border-radius: 24px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.loyalty-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244,236,216,0.10);
}
.loyalty-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--gold);
  display: flex; align-items: baseline; gap: 4px;
}
.loyalty-num small {
  font-size: 26px;
  color: rgba(244,236,216,0.45);
}
.loyalty-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.65);
  margin-top: 6px;
}
.loyalty-emoji {
  font-size: 56px;
  line-height: 1;
  filter: drop-shadow(0 6px 14px rgba(200,68,42,0.4));
}

.loyalty-stamps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.stamp {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 2px dashed rgba(244,236,216,0.25);
  display: grid; place-items: center;
  font-size: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(244,236,216,0.02);
}
.stamp.filled {
  background: linear-gradient(135deg, var(--red), var(--gold));
  border: 2px solid transparent;
  transform: rotate(-4deg);
  box-shadow: 0 8px 20px rgba(200,68,42,0.35);
  color: white;
}
.stamp.filled::after {
  content: '✓';
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.stamp.free {
  border-color: var(--gold);
  background: rgba(224,169,60,0.10);
}
.stamp.free::after {
  content: 'GRATIS';
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.stamp.free.unlocked {
  background: linear-gradient(135deg, var(--gold), #f5c062);
  border-color: var(--gold);
  animation: pulse 1.6s ease infinite;
  transform: rotate(-4deg);
}
.stamp.free.unlocked::after {
  content: '🍕';
  font-size: 32px;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(224,169,60,0.55); }
  50% { box-shadow: 0 0 0 14px rgba(224,169,60,0); }
}

.loyalty-foot p {
  text-align: center;
  font-size: 14px;
  color: rgba(244,236,216,0.72);
}
.loyalty-foot strong {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 16px;
  background: rgba(224,169,60,0.12);
  padding: 2px 10px;
  border-radius: 6px;
}
.loyalty-foot.unlocked p { color: var(--gold); font-weight: 600; }

/* ============== INSTALL BANNER ============== */
.install-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 90px;
  z-index: 30;
  display: flex; align-items: center; gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* zostawiamy padding-right większy żeby × się zmieścił */
  padding-right: 16px;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.install-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.install-text { flex: 1; min-width: 0; line-height: 1.3; }
.install-text strong { display: block; font-size: 14px; font-weight: 700; }
.install-text span { display: block; font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.install-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.install-actions .btn { padding: 10px 16px; font-size: 13px; }
.install-dismiss {
  position: absolute;
  top: -10px; right: -10px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 3px solid var(--paper);
  box-shadow: 0 6px 16px rgba(0,0,0,0.30);
  transition: transform 0.15s, background 0.2s;
  padding: 0;
  z-index: 2;
}
.install-dismiss:hover { background: var(--red-2); transform: scale(1.12) rotate(90deg); }
.install-dismiss:active { transform: scale(0.95); }

/* ============== PUSH FAB ============== */
.push-fab-wrap {
  position: fixed;
  right: 16px; bottom: 90px;
  z-index: 28;
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.push-fab {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
  border: none;
  cursor: pointer;
  font: inherit;
}
.push-fab:hover { transform: translateY(-2px); }
.push-fab-close {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 16px; line-height: 1;
  font-weight: 800;
  display: grid; place-items: center;
  border: 2px solid var(--paper);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.15s, background 0.2s;
  padding: 0;
}
.push-fab-close:hover { background: var(--red-2); transform: scale(1.1); }
.push-fab-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--red);
  display: grid; place-items: center;
  font-size: 16px;
  animation: ring 2.5s ease infinite;
}
@keyframes ring {
  0%,90%,100% { transform: rotate(0); }
  92%,96% { transform: rotate(-15deg); }
  94%,98% { transform: rotate(15deg); }
}
.push-fab-label { font-size: 13px; font-weight: 700; line-height: 1.2; text-align: left; }
.push-fab-label small { display: block; font-weight: 500; opacity: 0.7; font-size: 11px; }

@media (min-width: 900px) {
  .install-banner { left: auto; right: 24px; bottom: 24px; max-width: 380px; }
  .push-fab-wrap { right: 24px; bottom: 24px; }
}
@media (max-width: 899px) {
  .body--has-cart .push-fab-wrap { bottom: 84px; }
  .body--has-cart .install-banner { bottom: 84px; }
}

/* ============== KETOBOX ============== */
.box { background: var(--cream); }
.box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.box-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.box-img img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.box-text h2 { text-align: left; font-family: var(--font-display); font-size: clamp(34px, 5vw, 56px); font-weight: 400; line-height: 1.05; margin: 14px 0 18px; letter-spacing: 0.005em; }
.box-text h2 em { font-family: var(--font-script); font-style: normal; color: var(--red); font-size: 0.85em; }
.box-text > p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin-bottom: 24px; }
.box-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.box-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}
.box-list strong { font-weight: 700; }
.box-list span { font-family: var(--font-display); font-size: 22px; color: var(--red); letter-spacing: 0.005em; }

/* ============== TESTIMONIALS ============== */
.testimonials { background: var(--ink); color: var(--cream); }
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
blockquote {
  background: rgba(244,236,216,0.04);
  border: 1px solid rgba(244,236,216,0.10);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 0.08em; }
blockquote p { font-size: 16px; line-height: 1.55; color: rgba(244,236,216,0.92); }
blockquote footer { font-size: 13px; color: rgba(244,236,216,0.55); margin-top: auto; }

/* ============== FAQ ============== */
.faq { background: var(--paper); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details[open] { box-shadow: var(--shadow-sm); }
summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--red);
  transition: transform 0.3s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ============== CTA STRIP ============== */
.cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: var(--cream);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,0.10), transparent 40%);
}
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.005em;
}
.cta-strip h2 em { font-family: var(--font-script); font-style: normal; font-size: 0.78em; color: var(--gold); }
.cta-strip p { font-size: 17px; max-width: 540px; margin: 0 auto 32px; color: rgba(244,236,216,0.92); }
.cta-strip strong { background: rgba(0,0,0,0.20); padding: 2px 10px; border-radius: 6px; letter-spacing: 0.06em; }

.cta-strip .btn-primary {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.cta-strip .btn-primary:hover { background: white; }

/* ============== FOOTER ============== */
.footer { background: var(--ink); color: var(--cream); padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-logo { height: 64px; margin-bottom: 16px; }
.footer p { color: rgba(244,236,216,0.65); font-size: 14px; line-height: 1.55; max-width: 320px; }
.footer h4 { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: 0.06em; margin-bottom: 14px; color: var(--gold); text-transform: uppercase; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a { color: rgba(244,236,216,0.78); font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--cream); }
.footer .small { font-size: 12px; color: rgba(244,236,216,0.45); margin-top: 14px; line-height: 1.5; }

.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: rgba(244,236,216,0.08);
  color: inherit;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.2s;
}
.socials a svg { flex-shrink: 0; }
.socials a:hover { background: var(--red); color: white; transform: translateY(-1px); }
.social-ig svg { color: inherit; }

.footer-bottom {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 20px;
  border-top: 1px solid rgba(244,236,216,0.10);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(244,236,216,0.45);
}

/* ============== STICKY MOBILE CTA ============== */
.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 35;
  background: var(--red);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: 14px;
  font-weight: 700; font-size: 16px;
  display: none;
  align-items: center; justify-content: space-between;
  box-shadow: 0 14px 34px rgba(200,68,42,0.45);
  animation: stickyIn 0.3s ease;
}
.sticky-cta.show { display: flex; }
.sticky-arrow { font-size: 18px; }
@keyframes stickyIn { from { transform: translateY(80px); } to { transform: translateY(0); } }

/* ============== MODAL ============== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
}
.modal.open { display: block; }
.modal-bg {
  position: absolute; inset: 0;
  background: rgba(27,35,42,0.65);
  backdrop-filter: blur(8px);
  animation: fade 0.2s;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  max-width: 480px;
  margin: 60px auto 20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-lg);
  animation: pop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  font-size: 26px; line-height: 1;
  border-radius: 999px;
  color: var(--ink-2);
  display: grid; place-items: center;
}
.modal-close:hover { background: var(--cream-2); }

.modal-card h3 { font-family: var(--font-display); font-size: 36px; font-weight: 400; line-height: 1; letter-spacing: 0.005em; }
.modal-card h3 em { font-family: var(--font-script); font-style: normal; color: var(--red); font-size: 0.78em; }
.modal-sub { color: var(--ink-2); font-size: 14px; margin: 8px 0 22px; }

.zone-options { display: flex; flex-direction: column; gap: 12px; }
.zone-option {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 14px;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}
.zone-option:hover { border-color: var(--red); background: white; transform: translateY(-2px); }
.zone-emoji { font-size: 32px; }
.zone-option strong { display: block; font-size: 17px; margin-bottom: 2px; }
.zone-option span { font-size: 13px; color: var(--ink-2); }

/* ============== CART DRAWER ============== */
.cart {
  position: fixed; inset: 0;
  z-index: 110;
  display: none;
}
.cart.open { display: block; }
.cart-bg {
  position: absolute; inset: 0;
  background: rgba(27,35,42,0.55);
  backdrop-filter: blur(6px);
  animation: fade 0.2s;
}
.cart-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 100%;
  max-width: 460px;
  background: var(--paper);
  display: flex; flex-direction: column;
  animation: slideIn 0.3s ease;
  box-shadow: var(--shadow-lg);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; letter-spacing: 0.01em; }

.cart-zone {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.cart-zone small { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); display: block; }
.cart-zone strong { font-size: 14px; }
.cart-zone .link { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: underline; }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 20px; gap: 12px; text-align: center;
  height: 100%;
}
.empty-emoji { font-size: 64px; opacity: 0.6; }
.cart-empty p { color: var(--ink-2); font-size: 15px; margin-bottom: 8px; }

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; }
.cart-item h4 { font-size: 15px; font-weight: 700; }
.cart-item .item-meta { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.cart-item .qty {
  display: flex; align-items: center;
  gap: 6px;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 4px;
}
.cart-item .qty button {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: white;
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 14px;
  transition: all 0.15s;
}
.cart-item .qty button:hover { background: var(--ink); color: var(--cream); }
.cart-item .qty span { min-width: 18px; text-align: center; font-weight: 700; font-size: 14px; }

.cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: white; }
.cart-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 15px; }
.cart-row.muted { color: var(--ink-2); font-size: 14px; }
.cart-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px; padding-top: 14px;
  font-size: 18px;
}
.cart-row.total strong { font-family: var(--font-display); font-size: 28px; color: var(--red); letter-spacing: 0.005em; line-height: 1; }
.cart-foot .btn { width: 100%; margin-top: 14px; }
.cart-note { font-size: 11px; color: var(--ink-2); text-align: center; margin-top: 10px; opacity: 0.7; }

/* ============== TOAST ============== */
.toast {
  position: fixed;
  bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============== PRODUCT PAGE ============== */
.page-product { background: var(--paper); }

.breadcrumb {
  padding: 18px 20px 0;
  display: flex; gap: 8px; align-items: center;
  font-size: 13px;
  color: var(--ink-2);
}
.breadcrumb a { color: var(--ink-2); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span:not(:first-child) { opacity: 0.5; }

/* Breadcrumbs na stronach informacyjnych (szablon default: .breadcrumbs + inline chevron SVG bez wymiarów -> bez tego rozdyma się na całą szerokość) */
.breadcrumbs { padding: 14px 0 2px; font-size: 13px; }
.breadcrumbs .container.row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--ink-2); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }
.breadcrumbs svg { width: 16px; height: 16px; flex: 0 0 auto; opacity: 0.4; }

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 24px 20px 40px;
}

.prod-gallery { display: flex; flex-direction: column; gap: 12px; }
.prod-main-img {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-md);
}
.prod-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prod-main-img:hover img { transform: scale(1.04); }
.prod-ribbons {
  position: absolute; top: 16px; left: 16px;
  display: flex; gap: 8px;
}
.prod-ribbons .ribbon { position: static; }

.prod-thumbs { display: flex; gap: 10px; }
.thumb {
  width: 76px; height: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.15s;
  background: var(--cream-2);
}
.thumb:hover { transform: translateY(-2px); }
.thumb.active { border-color: var(--red); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.prod-info { display: flex; flex-direction: column; gap: 16px; }
.prod-cat {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 5px 10px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  align-self: flex-start;
}
.prod-info h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 4px 0;
}
.prod-tag { font-size: 17px; color: var(--ink-2); line-height: 1.5; }

.prod-rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); }
.prod-rating .stars { color: var(--gold); font-size: 16px; letter-spacing: 0.06em; }

.prod-macros {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.prod-macros > div { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.prod-macros strong {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 400;
  color: var(--red);
  letter-spacing: 0.005em;
  line-height: 1;
}
.prod-macros span { font-size: 11px; letter-spacing: 0.04em; color: var(--ink-2); }

.prod-price-row { padding: 4px 0; }
.prod-price strong {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400;
  color: var(--ink); letter-spacing: 0.005em; line-height: 1;
  display: inline-block;
}
.prod-price small { display: block; color: var(--ink-2); font-size: 13px; margin-top: 4px; }

.prod-options { display: flex; flex-direction: column; gap: 10px; }
.opt-label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); }

.opt-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-pills button {
  flex: 1; min-width: 100px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: white;
  font-weight: 700; font-size: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: all 0.2s;
}
.opt-pills button small { font-size: 11px; font-weight: 500; color: var(--ink-2); }
.opt-pills button span { font-size: 11px; color: var(--red); font-weight: 700; }
.opt-pills button:hover { border-color: var(--ink); }
.opt-pills button.active {
  border-color: var(--red);
  background: rgba(200,68,42,0.06);
}

.opt-toppings { display: flex; flex-direction: column; gap: 8px; }
.opt-toppings label {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}
.opt-toppings label:hover { border-color: var(--ink); }
.opt-toppings label:has(input:checked) {
  border-color: var(--red);
  background: rgba(200,68,42,0.05);
}
.opt-toppings input { width: 18px; height: 18px; accent-color: var(--red); }
.opt-toppings span { flex: 1; }
.opt-toppings strong { color: var(--red); font-weight: 700; }

.prod-actions { display: flex; gap: 10px; align-items: stretch; margin-top: 8px; }
.qty-pill {
  display: flex; align-items: center; gap: 8px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 6px 8px;
}
.qty-pill button {
  width: 36px; height: 36px;
  border-radius: 10px;
  font-weight: 700; font-size: 18px;
  background: var(--cream-2);
  display: grid; place-items: center;
  transition: all 0.15s;
}
.qty-pill button:hover { background: var(--ink); color: var(--cream); }
.qty-pill span { min-width: 28px; text-align: center; font-weight: 800; font-size: 16px; }

.prod-actions .btn { flex: 1; padding: 16px 22px; justify-content: space-between; }
.prod-actions .btn strong { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.005em; line-height: 1; }

.prod-features {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.prod-features > div { font-size: 14px; line-height: 1.4; }
.prod-features strong { display: block; font-size: 14px; font-weight: 700; }
.prod-features span { font-size: 12px; color: var(--ink-2); }

/* DETAILS */
.prod-details { background: var(--cream); padding: 60px 0; }
.prod-grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
.prod-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 0 0 18px;
}
.prod-h:not(:first-child) { margin-top: 36px; }

.ingredients { display: grid; grid-template-columns: 1fr; gap: 8px; }
.ingredients li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: white;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--line);
}
.ingredients span { font-size: 22px; }

.macro-table {
  width: 100%;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.macro-table th, .macro-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.macro-table thead { background: var(--ink); color: var(--cream); }
.macro-table thead th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.macro-table tbody th { font-weight: 600; }
.macro-table tbody td { color: var(--ink-2); }
.macro-table tbody tr:last-child th, .macro-table tbody tr:last-child td { border-bottom: none; }
/* makro: tylko kolumna "na 100 g". Pełna szer. jako tabela (nadpisuje display:block z fixu overflow) + liczby do prawej */
.prod-details table.macro-table { display: table; overflow: visible; }
.macro-table th:last-child, .macro-table td:last-child { text-align: right; }

.allergens { display: flex; flex-wrap: wrap; gap: 8px; }
.allergens span {
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}

.prod-side { display: flex; flex-direction: column; gap: 16px; }
.prod-side-card {
  background: white;
  padding: 22px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.prod-side-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; letter-spacing: 0.005em; margin-bottom: 10px; }
.prod-side-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-bottom: 8px; }
.prod-side-card strong { color: var(--ink); }
.side-list { display: flex; flex-direction: column; gap: 6px; padding-left: 4px; }
.side-list li { font-size: 14px; color: var(--ink-2); padding-left: 18px; position: relative; }
.side-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}

/* REVIEWS */
.reviews { background: var(--paper); }
.rev-head {
  display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.rev-overall { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.big-star {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400;
  color: var(--gold); letter-spacing: 0.005em; line-height: 1;
}
.stars-lg { color: var(--gold); font-size: 22px; letter-spacing: 0.08em; }
.rev-overall small { display: block; font-size: 13px; color: var(--ink-2); margin-top: 4px; }

.rev-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.rev-card {
  background: white;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.rev-card h4 { font-size: 16px; font-weight: 700; }
.rev-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.rev-card footer { font-size: 12px; color: var(--ink-2); opacity: 0.75; margin-top: auto; }

.related { background: var(--cream); }

/* STICKY MOBILE BUY BAR (product page) */
.prod-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: white;
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: 12px;
  z-index: 30;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
}
.prod-sticky-info { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.prod-sticky-info strong { font-size: 14px; }
.prod-sticky-info span { font-size: 13px; color: var(--ink-2); }
.prod-sticky .btn { flex-shrink: 0; }

@media (max-width: 899px) {
  .prod-sticky { display: flex; }
  .body--has-cart .prod-sticky { bottom: 64px; }
  .product { padding-bottom: 100px; }
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    padding: 36px 20px 80px;
    align-items: start;
  }
  .prod-info { position: sticky; top: calc(var(--header-h) + 24px); }
  .prod-features { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .prod-grid-2 { grid-template-columns: 1.5fr 1fr; gap: 60px; }
  .ingredients { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rev-grid { grid-template-columns: repeat(3, 1fr); }
}

/* link arrow on related card */
.card-body a.btn-add { text-decoration: none; }

/* ============== CHECKOUT PAGE ============== */
.page-checkout { background: var(--paper); }

.header-checkout {
  background: white;
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  padding: 0 16px;
}
.header-checkout .logo img { height: 56px; }
@media (min-width: 900px) { .header-checkout .logo img { height: 64px; } }
.link-back {
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  display: none;
  align-items: center; gap: 6px;
  margin-left: 24px;
}
.link-back:hover { color: var(--red); }

.checkout-secure {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--ink-2);
}
.checkout-secure span { font-size: 18px; }

.checkout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 120px;
}

.checkout-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* steps */
.checkout-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 14px;
}
.checkout-step.compact { padding: 14px 18px; }
.step-h {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.step-circle {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
}
.step-h h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400;
  letter-spacing: 0.005em;
}

/* zone toggle */
.zone-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 18px;
}
.zone-toggle-btn {
  padding: 14px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  text-align: left;
  transition: all 0.2s;
}
.zone-toggle-btn .ico { font-size: 26px; line-height: 1; margin-bottom: 4px; }
.zone-toggle-btn strong { font-size: 15px; }
.zone-toggle-btn small { font-size: 12px; color: var(--ink-2); }
.zone-toggle-btn:hover { border-color: var(--ink); }
.zone-toggle-btn.active {
  border-color: var(--red);
  background: white;
  box-shadow: 0 6px 18px rgba(200,68,42,0.15);
}

/* fields */
.zone-fields { display: flex; flex-direction: column; gap: 12px; }
/* hidden attribute must win over flex displays */
.zone-fields[hidden],
.warsaw-unavailable[hidden] { display: none !important; }

/* warning when Warsaw zip outside delivery radius */
.warsaw-unavailable {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FEEBE6;
  border: 1.5px solid var(--red);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.warsaw-unavailable-title { font-weight: 700; color: var(--red); font-size: 15px; }
.warsaw-unavailable-msg   { font-size: 14px; color: var(--ink-2); }
.warsaw-unavailable-cta   { align-self: flex-start; }

/* ZIP pre-check — bramka dowozu (Warszawa) */
.zip-precheck label {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.zip-precheck input {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  border-width: 2px;
  text-transform: uppercase;
}
.zip-precheck .field-hint { color: var(--ink-2); }

/* Sukces — kod w zasięgu */
.zip-available {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #E8F4DD;
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 6px;
}
.zip-available[hidden] { display: none !important; }
.zip-available strong  { color: var(--green); font-size: 15px; }
.zip-available span    { font-size: 13px; color: var(--ink-2); }

/* Pola adresu — zablokowane do czasu pozytywnego ZIP-checku */
.address-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.18s ease;
}
.address-fields.locked {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.address-fields.locked input,
.address-fields.locked textarea {
  background: #F5F0E3;
  cursor: not-allowed;
}
.address-fields.locked .zone-note { opacity: 0.6; }

.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.field label small { font-weight: 500; opacity: 0.7; margin-left: 4px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  width: 100%;
  padding: 14px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 16px; /* >=16px = brak zoomu na iOS */
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus {
  outline: none;
  border-color: var(--ink);
  background: white;
}
.field.error input { border-color: var(--red); background: rgba(200,68,42,0.04); }
.field-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 2px;
  font-weight: 600;
}
.field-hint { font-size: 12px; color: var(--ink-2); opacity: 0.8; margin-top: 2px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.zone-note {
  font-size: 13px;
  color: var(--ink-2);
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 10px;
  margin-top: 4px;
}

/* paczkomat field */
.paczkomat-input { display: flex; gap: 8px; }
.paczkomat-input input { flex: 1; }
.btn-pick {
  padding: 0 14px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-pick:hover { background: var(--red); }

.check-row { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-row input { width: 20px; height: 20px; accent-color: var(--red); margin-top: 2px; flex-shrink: 0; }
.check-row span { font-size: 14px; line-height: 1.45; color: var(--ink-2); }
.check-row strong { color: var(--ink); }

/* payment grid */
.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.pay-btn {
  position: relative;
  padding: 16px 14px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  transition: all 0.2s;
}
.pay-btn strong { font-size: 14px; }
.pay-btn small { font-size: 12px; color: var(--ink-2); }
.pay-btn:hover { border-color: var(--ink); }
.pay-btn.active {
  border-color: var(--red);
  background: white;
  box-shadow: 0 6px 18px rgba(200,68,42,0.15);
}
.pay-check {
  position: absolute; top: 10px; right: 12px;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--red); color: white;
  font-size: 13px; font-weight: 800;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.pay-btn.active .pay-check { opacity: 1; }
.pay-logo {
  width: 44px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 4px;
}
.pay-logo.blik { background: linear-gradient(135deg, #000 0%, #2a2a2a 100%); color: #FFD814; letter-spacing: 0.02em; }
.pay-logo.card { background: linear-gradient(135deg, #ff9966, #ff5e62); font-size: 18px; }
.pay-logo.apple { background: #000; color: white; }
.pay-logo.apple::after { content: ''; display: block; width: 16px; height: 18px; background: white; mask: radial-gradient(circle at 50% 30%, #000 4px, transparent 5px); -webkit-mask: radial-gradient(circle at 50% 30%, #000 4px, transparent 5px); }
.pay-logo.google { background: white; color: #4285F4; border: 1px solid var(--line); font-family: 'Inter', sans-serif; font-weight: 900; font-size: 16px; }

.pay-note { font-size: 12px; color: var(--ink-2); text-align: center; margin-top: 8px; }
.pay-note strong { color: var(--ink); }

/* promo */
.promo-toggle { background: white; border-radius: 12px; }
.promo-toggle summary {
  cursor: pointer; padding: 6px 0;
  font-weight: 600; font-size: 14px;
  list-style: none;
  color: var(--ink);
}
.promo-toggle summary::-webkit-details-marker { display: none; }
.promo-toggle[open] summary { margin-bottom: 12px; }
.promo-inner { display: flex; gap: 8px; }
.promo-inner input {
  flex: 1; padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promo-inner .btn { padding: 12px 18px; }
.promo-msg { margin-top: 10px; font-size: 13px; font-weight: 600; }
.promo-msg.ok { color: var(--green); }
.promo-msg.err { color: var(--red); }

/* SUMMARY */
.checkout-summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.sum-h {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400; letter-spacing: 0.005em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.sum-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.sum-empty {
  text-align: center;
  padding: 30px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.sum-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px; align-items: center;
}
.sum-item img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; display: block; }
.sum-item-thumb { display: block; width: 50px; height: 50px; border-radius: 8px; overflow: hidden; transition: opacity .15s; }
.sum-item-thumb:hover { opacity: .85; }
.sum-item-name { color: inherit; text-decoration: none; }
.sum-item-name:hover strong { color: var(--red); }
.sum-item-body strong { font-size: 14px; line-height: 1.3; display: block; transition: color .15s; }
.sum-item-body span { font-size: 12px; color: var(--ink-2); margin-top: 2px; display: block; }
.sum-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.sum-item-side > span { font-weight: 700; font-size: 14px; }
.sum-item-remove {
  width: 26px; height: 26px;
  border-radius: 999px;
  font-size: 18px; line-height: 1;
  color: var(--ink-2);
  display: grid; place-items: center;
  transition: all 0.15s;
}
.sum-item-remove:hover { background: var(--red); color: white; }
.sum-item.busy { opacity: 0.55; pointer-events: none; }

.qty-ctrl {
  display: inline-flex; align-items: center; gap: 0;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: var(--cream);
  width: max-content;
}
.qty-ctrl .qty-btn {
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 0; background: transparent;
  font-size: 16px; font-weight: 700; line-height: 1;
  color: var(--ink);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s, color 0.15s;
}
.qty-ctrl .qty-btn:hover { background: var(--ink); color: var(--cream); }
.qty-ctrl .qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.qty-ctrl .qty-num {
  min-width: 22px;
  text-align: center;
  font-size: 13px; font-weight: 700;
  padding: 0 4px;
}

.sum-rows {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}
.sum-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 15px; }
.sum-row.muted { color: var(--ink-2); font-size: 13px; }
.sum-row.muted strong { font-weight: 600; color: var(--ink-2); font-size: 13px; }
.sum-row small { font-size: 11px; color: var(--ink-2); margin-left: 4px; opacity: 0.8; font-weight: 500; }
.sum-row.total {
  border-top: 1px solid var(--line);
  padding-top: 12px; margin-top: 6px;
  font-size: 16px;
}
.sum-row.total strong {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 400;
  color: var(--red);
  letter-spacing: 0.005em;
  line-height: 1;
}

/* loyalty progress */
.sum-loyalty {
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.sum-loyalty-bar {
  height: 6px;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.sum-loyalty-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 999px;
  width: 0%;
  transition: width 0.5s ease;
}
.sum-loyalty p { font-size: 13px; color: var(--ink-2); }
.sum-loyalty.done { background: rgba(90,140,62,0.10); }
.sum-loyalty.done p { color: var(--green); font-weight: 600; }

/* big pay button */
.btn-pay {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--red) 0%, #b3361e 100%);
  color: var(--cream);
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(200,68,42,0.40);
  transition: transform 0.15s ease, box-shadow 0.25s, opacity 0.2s;
}
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(200,68,42,0.55); }
.btn-pay:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-pay .pay-cta { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; gap: 2px; text-align: left; }
.btn-pay .pay-cta strong { font-size: 17px; }
.btn-pay .pay-cta small { font-size: 14px; opacity: 0.78; }
.btn-pay .pay-arrow { font-size: 22px; }

.sum-trust {
  display: flex; justify-content: space-between; gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}
.sum-trust > div { flex: 1; }

/* sticky mobile pay bar */
.checkout-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  background: white;
  border-top: 1px solid var(--line);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.checkout-sticky.show { transform: translateY(0); display: flex; }
.checkout-sticky-info { line-height: 1.1; min-width: 90px; }
.checkout-sticky-info small { font-size: 11px; color: var(--ink-2); display: block; }
.checkout-sticky-info strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--red);
  letter-spacing: 0.005em;
}
.checkout-sticky .btn-pay { flex: 1; padding: 14px 18px; box-shadow: 0 8px 22px rgba(200,68,42,0.40); }
.checkout-sticky .btn-pay strong { font-size: 16px; }

/* BLIK modal */
.blik-modal .modal-card { max-width: 420px; padding: 32px 28px 28px; }
.blik-head { text-align: center; margin-bottom: 24px; }
.blik-logo-big {
  display: inline-block;
  background: linear-gradient(135deg, #000 0%, #2a2a2a 100%);
  color: #FFD814;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.blik-modal h3 { font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: 0.005em; }
.blik-modal h3 em { font-family: var(--font-script); font-style: normal; color: var(--red); font-size: 0.78em; }

.blik-input {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.blik-input input {
  width: 44px; height: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.005em;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.15s;
}
.blik-input input:focus { outline: none; border-color: var(--red); background: white; transform: translateY(-2px); }
.blik-sep { color: var(--ink-2); opacity: 0.5; font-weight: 700; }

.blik-timer { text-align: center; margin-bottom: 20px; }
.blik-timer span {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.blik-timer span.warn { color: var(--red); animation: pulse-warn 0.8s ease infinite; }
@keyframes pulse-warn {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.blik-timer small { display: block; font-size: 12px; color: var(--ink-2); margin-top: 2px; }

#blikConfirm { width: 100%; display: flex; gap: 8px; }
.blik-note { font-size: 12px; color: var(--ink-2); text-align: center; margin-top: 14px; }

/* SUCCESS modal */
.success-modal .modal-card { text-align: center; max-width: 460px; padding: 36px 28px 28px; }
.success-anim { display: flex; justify-content: center; margin-bottom: 20px; }
.success-circle {
  width: 84px; height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #76b855);
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(90,140,62,0.4);
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-circle span { font-size: 44px; color: white; font-weight: 900; }
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.success-modal h3 { font-family: var(--font-display); font-size: 40px; font-weight: 400; letter-spacing: 0.005em; }
.success-modal h3 em { font-family: var(--font-script); font-style: normal; color: var(--green); font-size: 0.78em; }

.success-info {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 20px 0;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  font-size: 14px;
  color: var(--ink-2);
}
.success-info > div { display: flex; align-items: flex-start; gap: 8px; }
.success-info strong { color: var(--ink); }

#successHome { width: 100%; }

/* responsive */
@media (min-width: 640px) {
  .pay-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .link-back { display: inline-flex; }
  .checkout-wrap { grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
  .checkout-summary { position: sticky; top: calc(var(--header-h) + 24px); }
  .checkout-sticky { display: none !important; }
  .checkout { padding-bottom: 80px; }
}

/* ============== ABOUT PAGE ============== */
.page-about { background: var(--paper); }
.page-about .nav a.active { color: var(--red); }
.page-about .nav a.active::after { transform: scaleX(1); }

/* HERO MANIFESTO */
.about-hero {
  position: relative;
  min-height: 80vh;
  min-height: 80svh;
  display: flex; align-items: center;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(200,68,42,0.4), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(224,169,60,0.22), transparent 50%),
    linear-gradient(180deg, #1B232A 0%, #0F1418 100%);
}
.about-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(244,236,216,0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(244,236,216,0.04) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.about-hero-content {
  padding: 80px 20px 80px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 24px;
}

.about-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--red-glow);
  padding: 7px 14px;
  border: 1.5px solid var(--red-glow);
  border-radius: 999px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(58px, 11vw, 150px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.about-hero h1 > span { display: block; }
.about-hero h1 .strike {
  position: relative;
  color: rgba(244,236,216,0.45);
}
.about-hero h1 .strike::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; top: 50%;
  height: 0.12em;
  background: var(--red-glow);
  transform: translateY(-50%) rotate(-3deg);
  box-shadow: 0 0 24px rgba(225,90,61,0.6);
}
.about-hero h1 .accent {
  color: var(--cream);
}
.about-hero h1 .accent em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red-glow);
  font-size: 0.85em;
  text-shadow: 0 4px 24px rgba(225,90,61,0.4);
}
.about-hero h1 .small-line {
  font-family: var(--font-body);
  font-size: 0.18em;
  font-weight: 500;
  color: rgba(244,236,216,0.62);
  letter-spacing: 0.04em;
  margin-top: 18px;
  line-height: 1.4;
}

.about-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(244,236,216,0.18);
  border-bottom: 1px solid rgba(244,236,216,0.18);
  width: 100%;
  max-width: 720px;
}
.about-hero-meta > div {
  display: flex; flex-direction: column;
}
.about-hero-meta strong {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.005em; line-height: 1;
}
.about-hero-meta span {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.58);
  margin-top: 6px;
}

/* INTRO */
.about-intro { background: var(--paper); padding: 80px 0 60px; }
.about-intro .container { max-width: 780px; }
.about-intro p {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.about-intro p.lead {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-intro p.lead.red {
  color: var(--red);
}
.about-intro strong { color: var(--ink); }
.about-intro em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-size: 1.1em;
}

/* TIMELINE */
.about-timeline { background: var(--cream); }
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  list-style: none;
  padding-left: 70px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px; top: 14px; bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 2px;
}
.timeline li {
  position: relative;
  margin-bottom: 36px;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -52px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 3px solid var(--red);
  box-shadow: 0 0 0 4px rgba(200,68,42,0.15);
}
.timeline li.highlight::before {
  background: var(--red);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(224,169,60,0.30), 0 0 24px rgba(200,68,42,0.45);
  animation: glow 2s ease infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 0 6px rgba(224,169,60,0.30), 0 0 24px rgba(200,68,42,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(224,169,60,0.10), 0 0 36px rgba(200,68,42,0.65); }
}
.t-year {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400;
  color: var(--red);
  letter-spacing: 0.005em; line-height: 1;
  margin-bottom: 6px;
}
.t-body h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 6px;
}
.t-body p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.timeline em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-weight: 400;
}
.timeline strong { color: var(--ink); }

/* VERSUS */
.about-versus { background: var(--paper); }
.versus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.v-col {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  position: relative;
}
.v-do {
  background: linear-gradient(135deg, rgba(90,140,62,0.08), rgba(90,140,62,0.02));
  border: 1.5px solid rgba(90,140,62,0.25);
}
.v-dont {
  background: linear-gradient(135deg, rgba(200,68,42,0.08), rgba(200,68,42,0.02));
  border: 1.5px solid rgba(200,68,42,0.25);
}
.v-col h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.v-do h3 { color: var(--green); }
.v-dont h3 { color: var(--red); }
.v-col ul { display: flex; flex-direction: column; gap: 12px; }
.v-col li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 24px;
  position: relative;
}
.v-do li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 800;
}
.v-dont li::before {
  content: '✗';
  position: absolute; left: 0; top: 0;
  color: var(--red); font-weight: 800;
}
.v-col strong { color: var(--ink); }

/* RECIPE */
.about-recipe { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.about-recipe::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(224,169,60,0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(200,68,42,0.20), transparent 45%);
  pointer-events: none;
}
.about-recipe .container { position: relative; }
.about-recipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.recipe-text .kicker.dark {
  background: rgba(224,169,60,0.12);
  color: var(--gold);
}
.recipe-text h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 14px 0 28px;
}
.recipe-text h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red-glow);
  font-size: 0.85em;
}
.recipe-text h2 strong {
  background: var(--gold);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 400;
  border-radius: 6px;
}

.recipe-rows { display: flex; flex-direction: column; gap: 8px; margin: 28px 0; }
.recipe-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(244,236,216,0.04);
  border: 1px solid rgba(244,236,216,0.10);
  border-radius: 12px;
  transition: all 0.25s;
}
.recipe-row:hover { border-color: rgba(244,236,216,0.25); }
.r-num {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.r-label { font-size: 14px; color: rgba(244,236,216,0.85); }
.r-result {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.r-fail { background: rgba(200,68,42,0.18); color: var(--red-glow); }
.r-mid  { background: rgba(224,169,60,0.18); color: var(--gold); }
.r-win  { background: var(--green); color: white; }

.recipe-row.highlight-row {
  background: linear-gradient(135deg, rgba(224,169,60,0.20), rgba(90,140,62,0.20));
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(224,169,60,0.4), 0 12px 32px rgba(224,169,60,0.18);
  transform: scale(1.01);
}
.highlight-row .r-num { color: var(--cream); font-size: 22px; }
.highlight-row .r-label { color: var(--cream); font-weight: 600; }

.recipe-quote {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(244,236,216,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
}
.recipe-quote em {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244,236,216,0.92);
  display: block;
}
.recipe-quote small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.recipe-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.recipe-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.recipe-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 14px;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 12px 28px rgba(224,169,60,0.45);
}
.recipe-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
}
.recipe-badge span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* FOUNDER */
.about-founder { background: var(--cream); }
.founder-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-img {
  position: relative;
}
.founder-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.founder-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,68,42,0.10), transparent 50%);
}
.founder-text { padding: 32px 28px 36px; }
.founder-text h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 12px 0 4px;
}
.founder-role {
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
}
.founder-quote { display: flex; flex-direction: column; gap: 14px; }
.founder-quote p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}
.founder-quote p:first-child::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--red);
  line-height: 0.7;
  margin-right: 6px;
  vertical-align: -10px;
}
.founder-quote strong { color: var(--ink); }
.founder-quote em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-weight: 400;
}
.founder-quote footer {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-top: 8px;
}

/* STATS */
.about-stats {
  background: linear-gradient(135deg, var(--ink) 0%, #2A3640 100%);
  color: var(--cream);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-tile {
  padding: 28px 22px;
  background: rgba(244,236,216,0.04);
  border: 1px solid rgba(244,236,216,0.10);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 4px;
  transition: all 0.3s;
}
.stat-tile:hover {
  background: rgba(244,236,216,0.08);
  border-color: rgba(224,169,60,0.4);
  transform: translateY(-3px);
}
.stat-tile strong {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.005em;
  line-height: 1;
}
.stat-tile span {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 4px;
}
.stat-tile small {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244,236,216,0.55);
  margin-top: 4px;
}

/* PRESS */
.about-press { background: var(--paper); }
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.press-tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: all 0.25s;
}
.press-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.press-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.press-tile p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* VALUES */
.about-values {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-values::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(225,90,61,0.20), transparent 50%);
  pointer-events: none;
}
.about-values .container { position: relative; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.val-tile {
  padding: 32px 28px;
  background: rgba(244,236,216,0.04);
  border: 1px solid rgba(244,236,216,0.10);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.val-tile:hover {
  background: rgba(244,236,216,0.08);
  border-color: var(--red-glow);
  transform: translateY(-4px);
}
.val-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--red-glow);
  letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 12px;
}
.val-tile h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
}
.val-tile p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,236,216,0.78);
}

/* CTA in about */
.page-about .cta-strip h2 em {
  font-family: var(--font-script);
  color: var(--gold);
}

/* responsive */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .versus-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .about-hero-meta { grid-template-columns: repeat(4, auto); gap: 36px 60px; }
  .timeline { padding-left: 110px; }
  .timeline::before { left: 50px; }
  .timeline li::before { left: -68px; }
  .about-recipe-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
  .founder-card { grid-template-columns: 1fr 1.2fr; gap: 0; }
  .founder-text { padding: 56px 56px 56px 32px; }
  .stats-grid { grid-template-columns: repeat(6, 1fr); }
  .press-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============== SHOP PAGE ============== */
.page-shop { background: var(--paper); }

.shop-hero {
  padding: 60px 0 40px;
  text-align: center;
}
.shop-hero .container { max-width: 760px; }
.shop-hero .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.shop-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.78em;
}
.shop-hero p { color: var(--ink-2); font-size: 17px; line-height: 1.55; }

.shop-tabs-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.shop-tabs {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.shop-tabs::-webkit-scrollbar { display: none; }
.shop-tab {
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--line);
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.shop-tab span {
  font-size: 11px;
  font-weight: 800;
  background: var(--cream-2);
  padding: 2px 8px;
  border-radius: 999px;
}
.shop-tab:hover { border-color: var(--ink); color: var(--ink); }
.shop-tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.shop-tab.active span { background: var(--red); color: white; }

.shop-grid-section { padding: 40px 0 60px; }

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.shop-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.shop-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.shop-media.spicy {
  background: linear-gradient(135deg, #ffe5db 0%, #fbb89c 100%);
}
.shop-emoji {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
  transition: transform 0.4s ease;
}
.shop-card:hover .shop-emoji { transform: scale(1.08) rotate(-3deg); }

.shop-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px; font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.shop-tag.hot { background: var(--red); color: white; }
.shop-tag.new { background: var(--green); color: white; }
.shop-tag.gold { background: var(--gold); color: var(--ink); }

.shop-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column;
  gap: 8px;
  flex: 1;
}
.shop-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--red);
}
.shop-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.shop-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}
.shop-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px;
}
.shop-foot .price {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.005em;
  font-weight: 400;
}

/* VOUCHER */
.voucher-strip {
  background: linear-gradient(135deg, var(--ink) 0%, #2A3640 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.voucher-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(224,169,60,0.20), transparent 50%);
  pointer-events: none;
}
.voucher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px; align-items: center;
  position: relative;
}
.voucher-text .kicker.dark { background: rgba(224,169,60,0.15); color: var(--gold); }
.voucher-text h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 14px 0 18px;
}
.voucher-text h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red-glow);
  font-size: 0.85em;
}
.voucher-text p {
  font-size: 16px;
  color: rgba(244,236,216,0.78);
  line-height: 1.55;
}

.voucher-options {
  display: flex; flex-direction: column;
  gap: 12px;
}
.voucher-card {
  position: relative;
  background: rgba(244,236,216,0.05);
  border: 1.5px solid rgba(244,236,216,0.15);
  border-radius: 16px;
  padding: 22px 24px;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.25s;
  color: var(--cream);
  cursor: pointer;
}
.voucher-card:hover {
  background: rgba(244,236,216,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.voucher-card strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.005em;
  line-height: 1;
}
.voucher-card span {
  font-size: 13px;
  color: rgba(244,236,216,0.7);
}
.voucher-card.popular {
  background: linear-gradient(135deg, rgba(224,169,60,0.12), rgba(200,68,42,0.10));
  border-color: var(--gold);
}
.vp-tag {
  position: absolute; top: -10px; left: 16px;
  background: var(--red);
  color: white;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============== BLOG PAGE ============== */
.page-blog { background: var(--paper); }

.blog-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--paper);
}
.blog-hero .container { max-width: 760px; }
.blog-hero .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.blog-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.85em;
}
.blog-hero p { color: var(--ink-2); font-size: 17px; line-height: 1.55; }

.blog-tags-wrap {
  background: var(--paper);
  padding: 16px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.blog-tags {
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.blog-tags::-webkit-scrollbar { display: none; }
.blog-tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--line);
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
  color: var(--ink-2);
  transition: all 0.2s;
}
.blog-tag:hover { border-color: var(--ink); color: var(--ink); }
.blog-tag.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Featured */
.blog-featured { padding: 40px 0 30px; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-card:hover .featured-media img { transform: scale(1.06); }
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,35,42,0.50) 100%);
}
.featured-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
}
.featured-body {
  padding: 28px 24px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.post-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.featured-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.featured-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.post-meta {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
  opacity: 0.78;
}
.read-more {
  font-weight: 700;
  color: var(--red);
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.featured-card:hover .read-more { gap: 12px; }

/* Posts grid */
.blog-grid-section { padding: 30px 0 60px; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.post-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.post-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(27,35,42,0.85);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.post-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.post-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.post-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}

.blog-load-more {
  text-align: center;
  margin-top: 40px;
}
.blog-load-more .btn { padding: 14px 28px; }

/* NEWSLETTER */
.newsletter-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.10), transparent 50%);
}
.news-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.news-content .kicker.dark {
  background: rgba(0,0,0,0.18);
  color: var(--cream);
}
.newsletter-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 14px 0 12px;
}
.newsletter-strip h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 0.78em;
}
.newsletter-strip p {
  font-size: 16px;
  color: rgba(244,236,216,0.92);
  margin-bottom: 24px;
  line-height: 1.55;
}
.news-form {
  display: flex; gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}
.news-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(244,236,216,0.30);
  background: rgba(255,255,255,0.10);
  color: var(--cream);
  font-size: 16px;
  font-family: inherit;
  backdrop-filter: blur(8px);
}
.news-form input::placeholder { color: rgba(244,236,216,0.5); }
.news-form input:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(255,255,255,0.16);
}
.news-form .btn-primary {
  background: var(--cream);
  color: var(--ink);
  padding: 14px 22px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0,0,0,0.20);
}
.news-form .btn-primary:hover { background: white; }
.news-trust {
  font-size: 12px;
  color: rgba(244,236,216,0.72);
  margin-top: 8px;
}

/* responsive shop + blog */
@media (min-width: 640px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .voucher-options { flex-direction: row; }
  .voucher-card { flex: 1; }
}
@media (min-width: 900px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-card { grid-template-columns: 1.2fr 1fr; align-items: stretch; }
  .featured-media { aspect-ratio: auto; }
  .featured-body { padding: 40px 36px; justify-content: center; }
  .voucher-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .voucher-options { flex-direction: column; }
  .news-form { gap: 12px; }
}
@media (min-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============== SHOP PRODUCT PAGE ============== */
.page-shop-product { background: var(--paper); }

.sp-emoji-bg {
  display: grid; place-items: center;
  position: relative;
}
.sp-bg-cream { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%) !important; }
.sp-bg-spicy { background: linear-gradient(135deg, #ffe5db 0%, #fbb89c 100%) !important; }
.sp-bg-brown { background: linear-gradient(135deg, #f0e2d5 0%, #d4b89c 100%) !important; }
.sp-bg-green { background: linear-gradient(135deg, #e6efd6 0%, #b6d18a 100%) !important; }

.sp-big-emoji {
  font-size: clamp(120px, 22vw, 240px);
  line-height: 1;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.18));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.sp-feature-list {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.sp-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-2);
  transition: all 0.2s;
}
.sp-feature:hover { border-color: var(--ink); transform: translateX(2px); }
.sp-feat-emoji { font-size: 20px; flex-shrink: 0; }

.sp-composition {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  background: white;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .sp-feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============== CONTACT PAGE ============== */
.page-contact { background: var(--paper); }

/* HERO */
.contact-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #0F1418 100%);
  color: var(--cream);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(225,90,61,0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(224,169,60,0.10), transparent 45%);
  pointer-events: none;
}
.contact-hero .container { position: relative; max-width: 760px; }
.contact-hero .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  background: rgba(224,169,60,0.12);
  border-radius: 999px;
  margin-bottom: 18px;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.contact-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red-glow);
  font-size: 0.85em;
}
.contact-hero p {
  font-size: 17px;
  color: rgba(244,236,216,0.78);
  line-height: 1.55;
  margin-bottom: 24px;
}
.contact-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(244,236,216,0.06);
  border: 1px solid rgba(90,140,62,0.30);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(244,236,216,0.92);
}
.contact-status strong { color: var(--cream); }
.status-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(90,140,62,0.30);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 4px rgba(90,140,62,0.30); }
  50% { box-shadow: 0 0 0 8px rgba(90,140,62,0.10); }
}

/* CHANNELS */
.contact-channels-section { padding: 60px 0 40px; }
.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: -120px;
  position: relative;
  z-index: 5;
}
.ch-card {
  display: flex; align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.ch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink);
}
.ch-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 26px;
  flex-shrink: 0;
}
.ch-phone .ch-icon { background: linear-gradient(135deg, #5A8C3E, #76b855); color: white; }
.ch-wa .ch-icon { background: linear-gradient(135deg, #25D366, #128C7E); color: white; }
.ch-ig .ch-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.ch-mail .ch-icon { background: linear-gradient(135deg, var(--red), var(--red-2)); color: white; }

.ch-meta { flex: 1; min-width: 0; line-height: 1.35; }
.ch-meta small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 700;
  margin-bottom: 2px;
}
.ch-meta strong {
  font-size: 17px;
  display: block;
  margin-bottom: 2px;
  word-break: break-word;
}
.ch-meta span { font-size: 13px; color: var(--ink-2); }
.ch-arrow {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.25s;
}
.ch-card:hover .ch-arrow { background: var(--red); color: white; transform: translate(2px,-2px); }

/* MAIN GRID: form + info */
.contact-main-section { padding: 30px 0 60px; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
}
.contact-form-card .kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 5px 10px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 12px;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.contact-form-card h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.85em;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.topic-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.topic-pill {
  cursor: pointer;
  position: relative;
}
.topic-pill input { position: absolute; opacity: 0; pointer-events: none; }
.topic-pill span {
  display: inline-block;
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--paper);
  color: var(--ink-2);
  transition: all 0.2s;
}
.topic-pill:hover span { border-color: var(--ink); color: var(--ink); }
.topic-pill input:checked + span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.contact-form .btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
}
.cf-arrow { font-size: 20px; }

.cf-promise {
  font-size: 13px;
  color: var(--ink-2);
  text-align: center;
  margin-top: 4px;
  padding: 12px 14px;
  background: rgba(90,140,62,0.08);
  border-radius: 12px;
}
.cf-promise strong { color: var(--green); }

/* INFO sidebar */
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 14px;
}
.info-card .addr {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 8px;
}
.info-card .addr strong { color: var(--ink); }
.addr-note { font-size: 13px; color: var(--ink-2); margin-bottom: 10px; }
.info-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: underline;
}

.hours { display: flex; flex-direction: column; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.hours li:last-child { border-bottom: none; }
.hours strong { font-weight: 700; }
.hours-now {
  display: flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(90,140,62,0.10);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.hours-now strong { color: var(--green); font-weight: 800; }

.info-card-team .team { display: flex; flex-direction: column; gap: 14px; }
.info-card-team li {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.info-card-team li:last-child { border-bottom: none; padding-bottom: 0; }
.team-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.005em;
  flex-shrink: 0;
}
.info-card-team strong { display: block; font-size: 15px; }
.info-card-team span { display: block; font-size: 12px; color: var(--ink-2); margin-top: 1px; }
.info-card-team a {
  display: inline-block;
  font-size: 13px;
  color: var(--red);
  margin-top: 4px;
  word-break: break-all;
}
.info-card-team a:hover { text-decoration: underline; }

.info-card-faq .faq-quick { display: flex; flex-direction: column; }
.faq-quick li { border-bottom: 1px solid var(--line); }
.faq-quick li:last-child { border-bottom: none; }
.faq-quick a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  transition: color 0.2s;
}
.faq-quick a:hover { color: var(--red); }
.faq-quick .faq-arrow {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-size: 14px;
  transition: all 0.2s;
}
.faq-quick a:hover .faq-arrow { background: var(--red); color: white; transform: translateX(3px); }

/* MAP */
.contact-map-section { padding: 60px 0; background: var(--cream); }
.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-map {
  width: 100%;
  height: 380px;
}
.map-overlay {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.map-pin {
  font-size: 24px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.map-overlay > div:nth-child(2) { flex: 1; min-width: 0; line-height: 1.3; }
.map-overlay strong { display: block; font-size: 15px; }
.map-overlay span { font-size: 13px; color: var(--ink-2); }
.map-overlay .btn { padding: 10px 16px; font-size: 13px; flex-shrink: 0; white-space: nowrap; }

/* SOCIALS */
.contact-socials-section { padding: 60px 0; background: var(--paper); }
.socials-big {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.social-big {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 26px 24px 22px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.social-big:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.social-big::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
}
.social-big.ig::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-big.tt::before { background: linear-gradient(135deg, #000, #25F4EE 50%, #FE2C55); }
.social-big.fb::before { background: linear-gradient(135deg, #1877F2, #0c4ba0); }

.sb-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.22);
}
.sb-handle {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
}
.sb-meta { font-size: 13px; opacity: 0.88; }
.sb-cta {
  margin-top: 14px;
  font-weight: 700;
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.20);
  width: 100%;
}

/* B2B */
.contact-b2b { padding: 60px 0; background: var(--paper); }
.b2b-card {
  background: linear-gradient(135deg, var(--ink) 0%, #2A3640 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.b2b-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(224,169,60,0.18), transparent 50%);
}
.b2b-text { position: relative; }
.b2b-text .kicker.dark { background: rgba(224,169,60,0.15); color: var(--gold); }
.b2b-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 14px 0 14px;
}
.b2b-text h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red-glow);
  font-size: 0.88em;
}
.b2b-text p {
  font-size: 16px;
  color: rgba(244,236,216,0.78);
  line-height: 1.55;
  margin-bottom: 14px;
}
.b2b-list { display: flex; flex-direction: column; gap: 6px; }
.b2b-list li { font-size: 14px; color: rgba(244,236,216,0.85); }

.b2b-actions {
  position: relative;
  display: flex; flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.b2b-actions .btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244,236,216,0.35);
}
.b2b-actions .btn-outline:hover { background: rgba(244,236,216,0.10); border-color: var(--cream); }

/* responsive contact */
@media (min-width: 640px) {
  .contact-channels { grid-template-columns: 1fr 1fr; }
  .socials-big { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .contact-channels { grid-template-columns: repeat(3, 1fr); margin-top: -100px; }
  .ch-card { flex-direction: column; align-items: flex-start; }
  .ch-arrow { align-self: flex-end; margin-top: -36px; }
  .contact-main-grid { grid-template-columns: 1.4fr 1fr; gap: 28px; }
  .contact-map { height: 460px; }
  .b2b-card { grid-template-columns: 1.4fr 1fr; align-items: center; gap: 40px; padding: 52px 48px; }
  .b2b-actions { flex-direction: column; }
}

/* ============== BLOG POST PAGE ============== */
.page-blog-post { background: var(--paper); }

/* Reading progress bar */
.read-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0%;
  z-index: 100;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* Hero */
.article-hero {
  padding: 40px 0 24px;
  text-align: center;
  background: var(--paper);
}
.article-hero .container { max-width: 820px; }
.article-cat {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
}
.article-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.85em;
}
.article-lead {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 auto 28px;
  font-style: italic;
}
.article-lead em { color: var(--red); font-style: normal; font-weight: 600; }

/* Author + meta */
.article-meta {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.005em;
  flex-shrink: 0;
}
.author-avatar.big { width: 72px; height: 72px; font-size: 36px; }
.author > div:nth-child(2) { text-align: left; line-height: 1.3; }
.author strong { display: block; font-size: 15px; }
.author span { display: block; font-size: 12px; color: var(--ink-2); }
.article-meta-info { display: flex; gap: 6px; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; justify-content: center; }

/* Hero image */
.article-hero-img {
  margin: 24px auto 0;
  max-width: 1100px;
  padding: 0 20px;
}
.article-hero-img img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.article-hero-img figcaption {
  text-align: center;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 12px;
  padding: 0 16px;
}

/* Article wrap */
.article-wrap { padding: 50px 0 40px; }
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1200px;
}

/* TOC sticky */
.article-toc {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.toc-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.article-toc ol {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 4px;
  counter-reset: toc;
}
.article-toc li { counter-increment: toc; }
.article-toc a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1.4;
}
.article-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.article-toc a:hover { background: var(--cream); color: var(--ink); }
.article-toc a.active {
  background: var(--ink);
  color: var(--cream);
}
.article-toc a.active::before { color: var(--gold); }

.toc-share {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.toc-share strong {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.share-row { display: flex; gap: 8px; }
.share-row a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.share-row a:hover { background: var(--red); color: white; transform: translateY(-2px); }

/* ARTICLE CONTENT */
.article {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 740px;
  margin: 0 auto;
}
.article p { margin-bottom: 1.4em; }
.article strong { font-weight: 700; color: var(--ink); }
.article em { font-style: italic; }

/* Drop cap */
.dropcap strong {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.8;
  float: left;
  padding-right: 12px;
  padding-top: 10px;
  color: var(--red);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* H2 */
.article h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin: 56px 0 18px;
  scroll-margin-top: calc(var(--header-h) + 24px);
  position: relative;
  padding-left: 18px;
}
.article h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 4px;
}

/* Blockquote */
.article blockquote {
  margin: 32px 0;
  padding: 22px 26px 22px 28px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(200,68,42,0.06), transparent);
  border-radius: 0 14px 14px 0;
  position: relative;
}
.article blockquote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--red);
  opacity: 0.30;
  line-height: 1;
}
.article blockquote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 12px;
}
.article blockquote footer {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}

/* Callouts */
.callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout.warn {
  background: rgba(225,90,61,0.08);
  border-color: var(--red);
}
.callout.success {
  background: rgba(90,140,62,0.08);
  border-color: var(--green);
}

/* Lists */
.article-list, .article-list-ord {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}
.article-list li, .article-list-ord li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 16px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.article-list li:last-child, .article-list-ord li:last-child { border-bottom: none; }
.article-list li::before {
  content: '🍕';
  position: absolute;
  left: 0; top: 8px;
  font-size: 16px;
}
.article-list-ord { counter-reset: ord; }
.article-list-ord li { counter-increment: ord; }
.article-list-ord li::before {
  content: counter(ord, decimal-leading-zero);
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--font-display);
  color: var(--red);
  font-weight: 400;
  font-size: 16px;
}

.article-end {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--red);
  text-align: right;
  margin: 40px 0 20px;
}

/* Inline CTA inside article */
.article-cta {
  background: linear-gradient(135deg, var(--ink), #2A3640);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
  font-family: var(--font-body);
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 12px;
}
.article-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(244,236,216,0.78);
  margin-bottom: 20px;
}

/* Tags */
.article-tags {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-family: var(--font-body);
  margin: 32px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.article-tags span { font-weight: 700; }
.article-tags a {
  color: var(--red);
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(200,68,42,0.08);
  border-radius: 999px;
  font-size: 13px;
  transition: all 0.2s;
  text-decoration: none;
}
.article-tags a:hover { background: var(--red); color: white; }

/* Author card */
.article-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  font-family: var(--font-body);
}
.author-meta strong { display: block; font-size: 18px; }
.author-meta span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.author-meta p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-top: 10px; }
.author-links { display: flex; gap: 12px; margin-top: 14px; }
.author-links a {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Comments */
.article-comments {
  background: var(--cream);
  text-align: center;
  padding: 60px 0;
}
.comments-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.comments-sub { font-family: var(--font-body); color: var(--ink-2); margin: 8px 0 22px; font-size: 16px; }
.comments-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Related articles */
.related-articles { background: var(--paper); }

/* Mobile share fab */
.share-fab {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 30;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 22px;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(200,68,42,0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.share-fab:hover { transform: translateY(-3px) scale(1.05); }
.share-fab span { transform: rotate(-45deg); display: inline-block; }

@media (min-width: 900px) {
  .article-grid { grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
  .article-toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow-y: auto;
  }
  .share-fab { display: none; }
}

@media (min-width: 1100px) {
  .article-grid { grid-template-columns: 260px 1fr 240px; gap: 56px; }
  .article { max-width: none; }
}

/* ============== FINAL POLISH ============== */

/* keyboard accessibility — visible focus */
*:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible,
.cart-btn:focus-visible,
.zone-btn:focus-visible,
.shop-tab:focus-visible,
.blog-tag:focus-visible,
.opt-pills button:focus-visible,
.pay-btn:focus-visible,
.zone-toggle-btn:focus-visible {
  outline-offset: 4px;
}

/* footer links smooth hover */
.footer ul a {
  transition: color 0.2s, padding-left 0.2s;
  position: relative;
  display: inline-block;
}
.footer ul a:hover { color: var(--cream); padding-left: 6px; }

.footer-bottom { color: rgba(244,236,216,0.45); }

/* card image clickable cursor */
.card-media[href],
.shop-media[href] { cursor: pointer; display: block; text-decoration: none; }

/* hero CTAs — fix flex on mobile (były flex-direction: column wewnątrz buttona) */
.hero-cta { width: 100%; max-width: 560px; }
.hero-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: normal;        /* pozwól długiej etykiecie PL się zawinąć zamiast wylewać poza przycisk */
  overflow-wrap: anywhere;
}
.hero-cta .btn span:first-child { white-space: normal; }
/* na telefonach: 2 przyciski w pionie, każdy pełnej szerokości — koniec ucinania "Warsza..."/"Ci..." */
@media (max-width: 640px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; flex: 1 1 auto; }
}

/* =====================================================
   FIX: poziomy overflow na mobile ("wersja lekko wystaje w prawo")
   overflow-x:hidden było tylko na body → html dawało się przewijać
   w bok. `clip` zatrzymuje przewijanie i NIE psuje sticky header
   (w przeciwieństwie do hidden/auto).
   ===================================================== */
html { overflow-x: clip; }
html, body { max-width: 100%; }

/* breadcrumb na karcie produktu: pozwól zawinąć zamiast rozpychać w bok */
.breadcrumb { flex-wrap: wrap; }

/* opis produktu to surowy HTML z bazy — żaden element nie może być
   szerszy niż kolumna (najczęstsza realna przyczyna rozpychania) */
.prod-details, .prod-info { min-width: 0; }
.prod-details img,
.prod-details table,
.prod-details iframe,
.prod-details video,
.prod-details pre { max-width: 100%; height: auto; }
.prod-details table { display: block; overflow-x: auto; }
.prod-grid-2 { overflow-wrap: anywhere; }

/* =====================================================
   FIX (karta produktu, mobile):
   1) schowaj wędrujący dolny pasek "Dodaj do koszyka"
   2) zmieść główny przycisk, który uciekał w prawo
   ===================================================== */
/* 1) sticky pasek na dole — niepotrzebny, chowamy całkiem */
.prod-sticky { display: none !important; }
@media (max-width: 899px) { .product { padding-bottom: 40px; } }

/* 2) "Dodaj do koszyka 64,99 zł" rozpychał wiersz (nowrap + cena 24px).
      Mniejsza czcionka, węższy licznik, etykieta może się zawinąć. */
@media (max-width: 600px) {
  .prod-actions { gap: 8px; }
  .prod-actions .btn {
    min-width: 0;
    white-space: normal;       /* zawijanie zamiast wylewania poza ekran */
    padding: 14px 16px;
    font-size: 14px;
    gap: 6px;
    text-align: left;
  }
  .prod-actions .btn strong { font-size: 18px; white-space: nowrap; }
  .qty-pill { padding: 5px 6px; gap: 4px; }
  .qty-pill button { width: 32px; height: 32px; font-size: 16px; }
  .qty-pill input[type="number"] { width: 34px !important; }
}

/* =====================================================
   Baner poniedziałkowy (pod nagłówkiem) + ostrzeżenie strefy Warszawa w koszyku
   ===================================================== */
.monday-banner {
  background: #FBEAE4;
  color: var(--red-2, #a8351f);
  border-bottom: 1px solid rgba(200,68,42,0.22);
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding: 10px 16px;
}

.zone-warning {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  background: #FBEAE4;
  border: 1px solid rgba(200,68,42,0.25);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink);
}
.zone-warning .zw-ico { flex: 0 0 auto; }
.zone-warning--today {
  background: rgba(200,68,42,0.12);
  border-color: var(--red);
  font-weight: 600;
}

/* notka "od 3 pizz dostawa gratis" pod wyborem dostawy (obie strefy) */
.zone-note-free { color: var(--green, #1f8a4c); font-weight: 600; margin-top: 4px; }
.zone-note-free strong { color: var(--green, #1f8a4c); }

/* lepsza widoczność cart-count gdy = 0 */
.cart-count { transition: transform 0.2s; }

/* selection color */
::selection { background: var(--red); color: var(--cream); }

/* image rendering quality */
img { background-color: var(--cream); }

/* link in cart-zone */
.cart-zone .link { background: none; border: none; cursor: pointer; }

/* topbar pause on hover (UX nice) */
.topbar:hover .topbar-track { animation-play-state: paused; }

/* shop-tab focus + active polish */
.shop-tab, .blog-tag {
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}

/* tap highlight removed on all buttons (Android) */
button, a { -webkit-tap-highlight-color: transparent; }

/* better mobile burger menu — ensure tap target */
.burger { -webkit-tap-highlight-color: transparent; }
.burger:hover span { background: var(--red); }
.burger span { transition: background 0.2s; }

/* card-media cursor when wrapped in <a> */
a.card-media { cursor: pointer; }

/* fix: ensure section under sticky header doesn't get covered when scrolling to anchor */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* CTA strip on hover */
.cta-strip .btn-primary { transition: transform 0.2s, background 0.2s; }
.cta-strip .btn-primary:hover { transform: translateY(-2px); }

/* sticky-cta animation tweak */
.sticky-cta { transition: transform 0.25s ease, box-shadow 0.25s; }
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(200,68,42,0.55); }

/* mobile: limit topbar text size on small screens */
@media (max-width: 380px) {
  .topbar { font-size: 11px; }
  .topbar-track { gap: 32px; padding: 8px 16px; }
}

/* details summary keyboard hint */
summary:focus-visible { background: rgba(200,68,42,0.05); }

/* faq + selectable text */
details p { user-select: text; }

/* skip-link for screen readers (nawet jak nie używamy widocznie, pomaga A11y) */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px; top: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  font-weight: 700;
}

/* ============== SCROLL REVEAL ============== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */
@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .zone-btn { display: inline-flex; }
  .burger { display: none; }
  .section { padding: 110px 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .plans { grid-template-columns: repeat(3, 1fr); }
  .plan.featured { transform: scale(1.04); }
  .story-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
  .box-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; }
  .t-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .hero-cta { gap: 16px; }
  .sticky-cta { display: none !important; }
  .hero-content { padding: 100px 20px 160px; }
}

@media (min-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; }
}

/* mobile-specific: show sticky cta only when has items */
@media (max-width: 899px) {
  .nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 16px 20px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); margin: 0; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }
  .body--has-cart .sticky-cta.show { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .topbar-track { animation: none; }
  .hero-video { display: none; }
}

/* =====================================================
   KETOPIZZA OC integration — overrides to map OC form
   structure to mockup-style classes (no markup changes)
   ===================================================== */

/* opt-pills: <label class="opt-pill"> with hidden <input radio> */
.opt-pills label.opt-pill {
  flex: 1; min-width: 100px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: white;
  font-weight: 700; font-size: 14px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}
.opt-pills label.opt-pill input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.opt-pills label.opt-pill .opt-pill-name { font-size: 14px; font-weight: 700; }
.opt-pills label.opt-pill .opt-pill-price { font-size: 11px; color: var(--red); font-weight: 700; }
.opt-pills label.opt-pill:hover { border-color: var(--ink); }
.opt-pills label.opt-pill:has(input:checked) {
  border-color: var(--red);
  background: rgba(200,68,42,0.06);
}
.opt-pills label.opt-pill:focus-within { outline: 2px solid var(--red); outline-offset: 2px; }

/* qty-pill: <input type="number"> styled as makieta <span> */
.qty-pill input[type="number"] {
  min-width: 36px;
  width: 40px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  border: none;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--font-body);
}
.qty-pill input[type="number"]::-webkit-outer-spin-button,
.qty-pill input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-pill input[type="number"]:focus { outline: none; }

/* opt-select (fallback for select-type OC options, makieta uses pills) */
.opt-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}

/* form wrapper inside .prod-info shouldn't break flex layout */
.prod-info form#product {
  display: flex; flex-direction: column; gap: 18px;
}

/* prod-thumb buttons (gallery) — makieta has no JS yet, so style as buttons */
.prod-thumbs .prod-thumb {
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 0;
  background: white;
  overflow: hidden;
  cursor: pointer;
  width: 72px; height: 72px;
  transition: border-color 0.2s;
}
.prod-thumbs .prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumbs .prod-thumb:hover,
.prod-thumbs .prod-thumb.active { border-color: var(--red); }

/* Required option label asterisk */
.prod-options .opt-label .req { color: var(--red); margin-left: 4px; }

/* opt-pill 3-line layout (name / dim / price) — matches makieta button */
.opt-pills label.opt-pill .opt-pill-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.opt-pills label.opt-pill .opt-pill-dim { font-size: 11px; font-weight: 500; color: var(--ink-2); }
.opt-pills label.opt-pill .opt-pill-price { font-size: 11px; color: var(--red); font-weight: 700; }
.opt-pills label.opt-pill.active {
  border-color: var(--red);
  background: rgba(200,68,42,0.06);
}

/* Hard reset for qty number input (kill spinners + border) */
.qty-pill input[type="number"],
.qty-pill input[type="number"]:focus,
.qty-pill input[type="number"]:active {
  min-width: 28px !important;
  width: 40px !important;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-body);
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0;
  margin: 0;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
.qty-pill input[type="number"]::-webkit-outer-spin-button,
.qty-pill input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  display: none !important;
}

/* prod-block wrappers — let aside.prod-side handle inner spacing */
.prod-block { display: block; }
.prod-block-sides {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* extra section spacing safety (in case .section padding got overridden) */
section.section.prod-details,
section.section.reviews,
section.section.related {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 900px) {
  section.section.prod-details,
  section.section.reviews,
  section.section.related {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* =====================================================
   ALLERGENS PAGE — Informacja o alergenach
   ===================================================== */
.page-allergens { background: var(--paper); }

/* HERO */
.allergens-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #0F1418 100%);
  color: var(--cream);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.allergens-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(224,169,60,0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(225,90,61,0.12), transparent 45%);
  pointer-events: none;
}
.allergens-hero .container { position: relative; max-width: 820px; }
.allergens-hero .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  background: rgba(224,169,60,0.12);
  border-radius: 999px;
  margin-bottom: 18px;
}
.allergens-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7.5vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
}
.allergens-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 0.82em;
}
.allergens-hero p {
  font-size: 17px;
  color: rgba(244,236,216,0.82);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 680px;
}
.allergens-meta {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.meta-pill {
  display: inline-flex; align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: rgba(244,236,216,0.08);
  border: 1px solid rgba(244,236,216,0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(244,236,216,0.92);
}

/* INTRO NOTICE */
.allergens-intro-section { padding: 60px 0 20px; }
.allergens-notice {
  background: white;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: -100px;
  position: relative;
  z-index: 5;
}
.notice-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #c89331);
  color: white;
  display: grid; place-items: center;
  font-size: 28px;
  flex-shrink: 0;
}
.notice-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--ink);
}
.notice-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.notice-body p + p { margin-top: 10px; }
.notice-body strong { color: var(--ink); }

/* LIST */
.allergens-list-section { padding: 50px 0 30px; }
.allergens-list-section .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.allergens-list-section .section-head .kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 5px 12px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 14px;
}
.allergens-list-section .section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 10px;
}
.allergens-list-section .section-head h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.82em;
}
.allergens-list-section .section-head p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
}

.allergens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.allergen-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 22px 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.allergen-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,68,42,0.30);
}
.allergen-num {
  position: absolute;
  top: 14px; left: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--red);
  background: rgba(200,68,42,0.10);
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
}
.allergen-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 6px;
}
.allergen-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
  margin-top: 6px;
}
.allergen-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

/* TRACE */
.allergens-trace-section { padding: 20px 0 60px; }
.trace-card {
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
  border: 1px solid rgba(200,68,42,0.18);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.trace-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: white;
  display: grid; place-items: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.trace-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--ink);
}
.trace-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.trace-body strong { color: var(--ink); }

/* CONTACT CTA */
.allergens-contact-section { padding: 20px 0 80px; }
.allergens-contact-card {
  background: linear-gradient(135deg, var(--ink) 0%, #2A3640 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.allergens-contact-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(200,68,42,0.20), transparent 50%);
  pointer-events: none;
}
.contact-text { position: relative; z-index: 1; }
.contact-text .kicker.dark { background: rgba(200,68,42,0.18); color: var(--red-glow); }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 14px 0 12px;
}
.contact-text h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 0.88em;
}
.contact-text p {
  font-size: 16px;
  color: rgba(244,236,216,0.82);
  line-height: 1.55;
}
.allergens-contact-card .contact-actions {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 10px;
}
.allergens-contact-card .btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244,236,216,0.35);
}
.allergens-contact-card .btn-outline:hover {
  background: rgba(244,236,216,0.10);
  border-color: var(--cream);
}

/* responsive allergens */
@media (min-width: 640px) {
  .allergens-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .allergens-grid { grid-template-columns: repeat(3, 1fr); }
  .allergens-contact-card {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 52px 48px;
  }
  .allergens-contact-card .contact-actions { flex-direction: column; }
  .allergens-notice { padding: 32px 36px; gap: 24px; }
}

/* =====================================================
   ALLERGENS NOTICE — w koszyku / checkoucie
   ===================================================== */
.cart-allergen-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  padding: 12px 14px;
  background: rgba(224,169,60,0.10);
  border: 1px solid rgba(224,169,60,0.32);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
}
.cart-allergen-notice .can-ico {
  font-size: 18px;
  line-height: 1.1;
  flex-shrink: 0;
}
.cart-allergen-notice a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-allergen-notice a:hover { color: var(--red-2); }

/* na karcie produktu — większy margin od features */
.prod-allergen-notice { margin-top: 16px; }

/* info o wysyłce — pod ceną na produkcie / pod trust-badges w checkout */
.prod-shipping-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 14px;
  padding: 11px 14px;
  background: rgba(200,68,42,0.06);
  border: 1px solid rgba(200,68,42,0.22);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.005em;
}
.prod-shipping-notice .psn-ico {
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}
.prod-shipping-notice strong {
  color: var(--red);
  font-weight: 800;
}
/* paski pod ceną: koszty dostawy (neutralny) → gratis (zielony) → wysyłka 10:00 (czerwony, bazowy) */
.prod-shipping-notice + .prod-shipping-notice { margin-top: -4px; }
.prod-cost-notice {
  background: var(--cream-2, rgba(0,0,0,0.03));
  border-color: var(--line);
  border-left-color: var(--ink);
}
.prod-cost-notice strong { color: var(--ink); }
/* linijka "dlaczego" pod cenami dostawy — uzasadnienie kosztu paczkomatu */
.psn-line { display: block; }
.psn-line + .psn-line { margin-top: 2px; }
.psn-why { display: block; margin-top: 6px; font-size: 12px; font-weight: 500; line-height: 1.35; color: var(--ink-2); }
.prod-free-notice {
  background: rgba(31,138,76,0.07);
  border-color: rgba(31,138,76,0.25);
  border-left-color: var(--green, #1f8a4c);
}
.prod-free-notice strong { color: var(--green, #1f8a4c); }
/* dłuższy opis paczkomatu w przyciskach stref — pozwól zawinąć ładnie */
.zone-toggle-btn small { white-space: normal; line-height: 1.3; }
.cart-shipping-notice { margin-top: 14px; }

/* checkbox "Dobierz pistacje w prezencie" w checkout */
.gift-pistacje {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(120, 178, 90, 0.08);
  border: 1px solid rgba(120, 178, 90, 0.35);
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.gift-pistacje:hover { background: rgba(120, 178, 90, 0.13); border-color: rgba(120, 178, 90, 0.55); }
.gift-pistacje input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--green, #78b25a);
  flex-shrink: 0;
  cursor: pointer;
}
.gift-pistacje-body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gift-pistacje-body strong { font-size: 14px; color: var(--ink); font-weight: 700; line-height: 1.25; }
.gift-pistacje-body small { font-size: 11.5px; color: var(--ink-2); line-height: 1.3; }
.gift-pistacje-price {
  font-weight: 800;
  font-size: 13px;
  color: var(--green, #78b25a);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* obowiązkowy checkbox zgody na newsletter */
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  padding: 11px 13px;
  background: rgba(27,35,42,0.04);
  border: 1px solid rgba(27,35,42,0.14);
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.newsletter-consent:hover { background: rgba(27,35,42,0.06); }
/* odstęp przycisku płatności od boxu zgody powyżej (przylegał górną krawędzią) */
#payBtn { margin-top: 14px; }
.newsletter-consent.error { background: rgba(200,68,42,0.08); border-color: var(--red); animation: nlShake .35s ease; }
@keyframes nlShake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-3px);} 75%{transform:translateX(3px);} }
.newsletter-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}
.newsletter-consent-body { flex: 1; min-width: 0; }
.newsletter-consent-body small { font-size: 11.5px; line-height: 1.4; color: var(--ink-2); display: block; }
.newsletter-consent-body strong { color: var(--ink); font-weight: 700; }

/* klikalna nazwa pizzy w kartach (home / category / related) */
.card-link { text-decoration: none; color: inherit; display: block; }
.card-link h3 { transition: color .15s; }
.card-link:hover h3 { color: var(--red); }


/* ============================================================
   BLOG (lista artykułów + pojedynczy artykuł)
   ============================================================ */

.blog-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--paper);
}
.blog-hero .container { max-width: 760px; }
.blog-hero .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 6px 12px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
.blog-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.85em;
}
.blog-hero p { color: var(--ink-2); font-size: 17px; line-height: 1.55; }

.blog-tags-wrap {
  background: var(--paper);
  padding: 16px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.blog-tags {
  display: flex; gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.blog-tags::-webkit-scrollbar { display: none; }
.blog-tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1.5px solid var(--line);
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
  color: var(--ink-2);
  transition: all 0.2s;
}
.blog-tag:hover { border-color: var(--ink); color: var(--ink); }
.blog-tag.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Featured */
.blog-featured { padding: 40px 0 30px; }
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-card:hover .featured-media img { transform: scale(1.06); }
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27,35,42,0.50) 100%);
}
.featured-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
}
.featured-body {
  padding: 28px 24px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.post-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.featured-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
}
.featured-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.post-meta {
  display: flex; flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
  opacity: 0.78;
}
.read-more {
  font-weight: 700;
  color: var(--red);
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.featured-card:hover .read-more { gap: 12px; }

/* Posts grid */
.blog-grid-section { padding: 30px 0 60px; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.post-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.post-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(27,35,42,0.85);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.post-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.post-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.post-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  flex: 1;
}

.blog-load-more {
  text-align: center;
  margin-top: 40px;
}
.blog-load-more .btn { padding: 14px 28px; }

/* NEWSLETTER */
.newsletter-strip {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.10), transparent 50%);
}
.news-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.news-content .kicker.dark {
  background: rgba(0,0,0,0.18);
  color: var(--cream);
}
.newsletter-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 14px 0 12px;
}
.newsletter-strip h2 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold);
  font-size: 0.78em;
}
.newsletter-strip p {
  font-size: 16px;
  color: rgba(244,236,216,0.92);
  margin-bottom: 24px;
  line-height: 1.55;
}
.news-form {
  display: flex; gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}
.news-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(244,236,216,0.30);
  background: rgba(255,255,255,0.10);
  color: var(--cream);
  font-size: 16px;
  font-family: inherit;
  backdrop-filter: blur(8px);
}
.news-form input::placeholder { color: rgba(244,236,216,0.5); }
.news-form input:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(255,255,255,0.16);
}
.news-form .btn-primary {
  background: var(--cream);
  color: var(--ink);
  padding: 14px 22px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0,0,0,0.20);
}
.news-form .btn-primary:hover { background: white; }
.news-trust {
  font-size: 12px;
  color: rgba(244,236,216,0.72);

.read-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0%;
  z-index: 100;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* Hero */
.article-hero {
  padding: 40px 0 24px;
  text-align: center;
  background: var(--paper);
}
.article-hero .container { max-width: 820px; }
.article-cat {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
  padding: 6px 14px;
  background: rgba(200,68,42,0.10);
  border-radius: 999px;
  margin-bottom: 18px;
}
.article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
}
.article-hero h1 em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--red);
  font-size: 0.85em;
}
.article-lead {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 auto 28px;
  font-style: italic;
}
.article-lead em { color: var(--red); font-style: normal; font-weight: 600; }

/* Author + meta */
.article-meta {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.005em;
  flex-shrink: 0;
}
.author-avatar.big { width: 72px; height: 72px; font-size: 36px; }
.author > div:nth-child(2) { text-align: left; line-height: 1.3; }
.author strong { display: block; font-size: 15px; }
.author span { display: block; font-size: 12px; color: var(--ink-2); }
.article-meta-info { display: flex; gap: 6px; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; justify-content: center; }

/* Hero image */
.article-hero-img {
  margin: 24px auto 0;
  max-width: 1100px;
  padding: 0 20px;
}
.article-hero-img img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.article-hero-img figcaption {
  text-align: center;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 12px;
  padding: 0 16px;
}

/* Article wrap */
.article-wrap { padding: 50px 0 40px; }
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1200px;
}

/* TOC sticky */
.article-toc {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.toc-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.article-toc ol {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 4px;
  counter-reset: toc;
}
.article-toc li { counter-increment: toc; }
.article-toc a {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1.4;
}
.article-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.article-toc a:hover { background: var(--cream); color: var(--ink); }
.article-toc a.active {
  background: var(--ink);
  color: var(--cream);
}
.article-toc a.active::before { color: var(--gold); }

.toc-share {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.toc-share strong {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
}
.share-row { display: flex; gap: 8px; }
.share-row a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.share-row a:hover { background: var(--red); color: white; transform: translateY(-2px); }

/* ARTICLE CONTENT */
.article {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 740px;
  margin: 0 auto;
}
.article p { margin-bottom: 1.4em; }
.article strong { font-weight: 700; color: var(--ink); }
.article em { font-style: italic; }

/* Drop cap */
.dropcap strong {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.8;
  float: left;
  padding-right: 12px;
  padding-top: 10px;
  color: var(--red);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* H2 */
.article h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin: 56px 0 18px;
  scroll-margin-top: calc(var(--header-h) + 24px);
  position: relative;
  padding-left: 18px;
}
.article h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 4px;
}

/* Blockquote */
.article blockquote {
  margin: 32px 0;
  padding: 22px 26px 22px 28px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(200,68,42,0.06), transparent);
  border-radius: 0 14px 14px 0;
  position: relative;
}
.article blockquote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--red);
  opacity: 0.30;
  line-height: 1;
}
.article blockquote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 12px;
}
.article blockquote footer {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 600;
}

/* Callouts */
.callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout.warn {
  background: rgba(225,90,61,0.08);
  border-color: var(--red);
}
.callout.success {
  background: rgba(90,140,62,0.08);
  border-color: var(--green);
}

/* Lists */
.article-list, .article-list-ord {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}
.article-list li, .article-list-ord li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 16px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.article-list li:last-child, .article-list-ord li:last-child { border-bottom: none; }
.article-list li::before {
  content: '🍕';
  position: absolute;
  left: 0; top: 8px;
  font-size: 16px;
}
.article-list-ord { counter-reset: ord; }
.article-list-ord li { counter-increment: ord; }
.article-list-ord li::before {
  content: counter(ord, decimal-leading-zero);
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--font-display);
  color: var(--red);
  font-weight: 400;
  font-size: 16px;
}

.article-end {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--red);
  text-align: right;
  margin: 40px 0 20px;
}

/* Inline CTA inside article */
.article-cta {
  background: linear-gradient(135deg, var(--ink), #2A3640);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
  font-family: var(--font-body);
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin-bottom: 12px;
}
.article-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(244,236,216,0.78);
  margin-bottom: 20px;
}

/* Tags */
.article-tags {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-family: var(--font-body);
  margin: 32px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.article-tags span { font-weight: 700; }
.article-tags a {
  color: var(--red);
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(200,68,42,0.08);
  border-radius: 999px;
  font-size: 13px;
  transition: all 0.2s;
  text-decoration: none;
}
.article-tags a:hover { background: var(--red); color: white; }

/* Author card */
.article-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  font-family: var(--font-body);
}
.author-meta strong { display: block; font-size: 18px; }
.author-meta span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.author-meta p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-top: 10px; }
.author-links { display: flex; gap: 12px; margin-top: 14px; }
.author-links a {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Comments */
.article-comments {
  background: var(--cream);
  text-align: center;
  padding: 60px 0;
}
.comments-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.comments-sub { font-family: var(--font-body); color: var(--ink-2); margin: 8px 0 22px; font-size: 16px; }
.comments-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Related articles */
.related-articles { background: var(--paper); }

/* Mobile share fab */
.share-fab {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 30;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 22px;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(200,68,42,0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.share-fab:hover { transform: translateY(-3px) scale(1.05); }
.share-fab span { transform: rotate(-45deg); display: inline-block; }

@media (min-width: 900px) {
  .article-grid { grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
  .article-toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow-y: auto;
  }
  .share-fab { display: none; }
}

@media (min-width: 1100px) {
  .article-grid { grid-template-columns: 260px 1fr 240px; gap: 56px; }
  .article { max-width: none; }
}
