/* ==========================================================================
   Prezent-Piosenka.pl — główny arkusz stylów
   Paleta: jasne, ciepłe tła + koral (akcja) + fiolet (akcent) + atrament (tekst)
   ========================================================================== */

:root {
  /* Kolory */
  --bg: #FFFBF5;
  --bg-soft: #FFF3E4;
  --bg-card: #FFFFFF;
  --ink: #241F35;
  --ink-soft: #5A5470;
  --ink-faint: #8B85A0;
  --coral: #FF6B5B;
  --coral-dark: #E8503F;
  --coral-soft: #FFE9E6;
  --violet: #7C6FF0;
  --violet-soft: #EEEBFF;
  --amber: #FFB43C;
  --amber-soft: #FFF2DC;
  --mint: #2FBF9B;
  --mint-soft: #E2F7F1;
  --line: #F0E7DA;

  /* Typografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rytm */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 8px rgba(36, 31, 53, 0.06);
  --shadow-md: 0 8px 30px rgba(36, 31, 53, 0.10);
  --shadow-lg: 0 20px 60px rgba(36, 31, 53, 0.14);
  --container: 1180px;
}

/* ---------- Reset / baza ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Typografia ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral-dark);
  background: var(--coral-soft);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-label--violet { color: var(--violet); background: var(--violet-soft); }
.section-label--mint { color: #1D8A6F; background: var(--mint-soft); }
.section-label--amber { color: #B27414; background: var(--amber-soft); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  color: var(--coral);
}
.section-intro {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 58ch;
}
.section-head { margin-bottom: clamp(36px, 6vw, 60px); }
.section-head--center { text-align: center; }
.section-head--center .section-title,
.section-head--center .section-intro { margin-inline: auto; }

section { padding-block: clamp(64px, 9vw, 110px); }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 91, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 107, 91, 0.45); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.btn--lg { padding: 19px 42px; font-size: 1.08rem; }
.btn--sm { padding: 11px 22px; font-size: 0.92rem; }

/* ---------- Nagłówek / nawigacja ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.logo__mark {
  width: 40px; height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--violet) 110%);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.logo em { font-style: italic; color: var(--coral); }

.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 15px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--ink); background: var(--bg-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(100px, 11vw, 125px) 0 clamp(28px, 4vw, 48px);
  /* clip zamiast hidden: hidden robi z sekcji kontener przewijalny i skok
     kotwicy do #zamow przewijał hero od środka pod stały nagłówek */
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  top: -320px; right: -220px;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(124, 111, 240, 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -280px; left: -260px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 91, 0.11) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 9px 18px 9px 12px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.hero__eyebrow .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px var(--mint-soft);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--mint-soft); }
  50% { box-shadow: 0 0 0 7px rgba(47, 191, 155, 0.15); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.1rem);
  margin-bottom: 22px;
}
.hero h1 .accent {
  position: relative;
  font-style: italic;
  color: var(--coral);
  white-space: nowrap;
}
.hero h1 .accent svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%;
  color: var(--amber);
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 38px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
}
.hero__stars { display: flex; align-items: center; gap: 10px; }
.hero__stars .stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.hero__stars span { font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }
.hero__avatars { display: flex; }
.hero__avatars .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}
.hero__avatars .avatar:first-child { margin-left: 0; }

/* Hero — lista korzyści (USP) */
.hero__usp {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 32px;
}
.hero__usp li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.hero__usp li strong { color: var(--ink); }
.hero__usp .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: #1D8A6F;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Kompaktowa wersja kreatora (hero na głównej + panel produktowy na podstronach) */
.hero .order-form { padding: 26px 28px; }
.hero .form-progress,
.product-panel .form-progress { margin-bottom: 18px; }
.hero .form-progress span,
.product-panel .form-progress span { height: 5px; }
.hero .form-step__label,
.product-panel .form-step__label { font-size: 0.72rem; margin-bottom: 5px; }
.hero .form-step h3,
.product-panel .form-step h3 { font-size: 1.28rem; margin-bottom: 16px; }
.hero .chip,
.product-panel .chip { padding: 8px 14px; font-size: 0.86rem; }
.hero .chip-group,
.product-panel .chip-group { gap: 8px; margin-bottom: 18px; }
.hero .field,
.product-panel .field { margin-bottom: 14px; }
.hero .field label,
.product-panel .field label { font-size: 0.85rem; margin-bottom: 6px; }
.hero .field input,
.hero .field select,
.hero .field textarea,
.product-panel .field input,
.product-panel .field select,
.product-panel .field textarea { padding: 11px 14px; font-size: 0.93rem; }
.hero .field textarea,
.product-panel .field textarea { min-height: 92px; }
.hero .field .hint,
.product-panel .field .hint { font-size: 0.78rem; margin-top: 4px; }
.hero .form-nav,
.product-panel .form-nav { margin-top: 16px; }
.hero .form-nav .btn,
.product-panel .form-nav .btn { padding: 13px 26px; font-size: 0.95rem; }
.hero .consent,
.product-panel .consent { font-size: 0.78rem; gap: 9px; }
.hero .consent--optional,
.hero .consent--portfolio,
.hero .consent--required,
.product-panel .consent--optional,
.product-panel .consent--portfolio,
.product-panel .consent--required { margin-top: 10px; padding: 11px 13px; }
.hero .upload-box,
.product-panel .upload-box { padding: 18px 14px; }
.hero .upload-box__icon,
.product-panel .upload-box__icon { font-size: 1.5rem; }
.hero .upload-box__text,
.product-panel .upload-box__text { font-size: 0.82rem; }

/* Hero — karta odtwarzacza */
.hero__visual { position: relative; }
.hero-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  transform: rotate(1.5deg);
}
.hero-card__badge {
  position: absolute;
  top: -18px; right: 26px;
  background: linear-gradient(135deg, var(--amber) 0%, #FF9838 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(255, 152, 56, 0.4);
  transform: rotate(3deg);
}
.hero-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-card__cover {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 120%);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.hero-card__title { font-weight: 700; font-size: 1.05rem; }
.hero-card__meta { font-size: 0.88rem; color: var(--ink-faint); }

.hero-card .eq {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 64px;
  margin-bottom: 22px;
}
.hero-card .eq span {
  flex: 1;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--violet) 0%, var(--coral) 100%);
  opacity: 0.85;
  animation: eq-bounce 1.3s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

.hero-card__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-card__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hero-card__play:hover { transform: scale(1.08); }
.hero-card__track { flex: 1; }
.hero-card__bar {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 100px;
  overflow: hidden;
}
.hero-card__bar i {
  display: block;
  height: 100%;
  width: 38%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--coral), var(--violet));
}
.hero-card__times {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 7px;
  font-variant-numeric: tabular-nums;
}

.hero-note {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}
.hero-note--1 { top: -26px; left: -34px; animation-delay: 0.6s; }
.hero-note--2 { bottom: -20px; right: -20px; }
.hero-note .emoji { font-size: 1.3rem; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Pasek liczb ---------- */
.stats-strip {
  padding-block: 0;
  margin-top: clamp(8px, 2vw, 20px);
}
.stats-strip .container {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 44px) clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
}
.stat__num .plus { color: var(--coral); }
.stat__label { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); margin-top: 4px; }

/* ---------- Okazje ---------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.occasion-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.occasion-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  background: var(--coral-soft);
}
.occasion-card:nth-child(4n+2) .occasion-card__icon { background: var(--violet-soft); }
.occasion-card:nth-child(4n+3) .occasion-card__icon { background: var(--amber-soft); }
.occasion-card:nth-child(4n+4) .occasion-card__icon { background: var(--mint-soft); }
.occasion-card h3 { font-size: 1.18rem; font-family: var(--font-body); font-weight: 700; }
.occasion-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.occasion-card__link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.occasion-card__link .arrow { transition: transform 0.25s; }
.occasion-card:hover .occasion-card__link .arrow { transform: translateX(5px); }
.occasion-card--all {
  background: linear-gradient(135deg, var(--violet) 0%, #5A4BDB 100%);
  border: none;
  color: #fff;
  justify-content: center;
}
.occasion-card--all h3 { color: #fff; font-size: 1.3rem; }
.occasion-card--all p { color: rgba(255, 255, 255, 0.8); flex: 0; }
.occasion-card--all .occasion-card__link { color: #fff; }

/* ---------- Jak to działa ---------- */
.how { background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  position: absolute;
  top: -16px; left: 26px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(36, 31, 53, 0.25);
}
.step__icon { font-size: 2rem; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--ink-soft); }
.step__time {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ---------- Próbki / odtwarzacze ---------- */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sample {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.sample:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sample__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.sample__cover {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sample__title { font-weight: 700; font-size: 1.02rem; line-height: 1.3; }
.sample__genre { font-size: 0.83rem; color: var(--ink-faint); margin-top: 3px; }
.sample__player {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sample__play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 5px 15px rgba(255, 107, 91, 0.35);
}
.sample__play:hover { transform: scale(1.1); }
.sample.is-playing .sample__play { background: var(--ink); }
.sample__wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  cursor: pointer;
}
.sample__wave span {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: var(--line);
  transition: background 0.2s;
}
.sample__wave span.done { background: var(--coral); }
.sample.is-playing .sample__wave span.done { background: var(--violet); }
.sample__time {
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  min-width: 38px;
  text-align: right;
}
.sample__quote {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Cennik ---------- */
.pricing { background: var(--bg-soft); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan--featured {
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan__badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(255, 107, 91, 0.4);
}
.plan__name { font-size: 1.25rem; font-weight: 700; font-family: var(--font-body); }
.plan__desc { font-size: 0.9rem; color: var(--ink-soft); margin-top: 6px; min-height: 44px; }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0 4px;
}
.plan__price .amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; }
.plan__price .currency { font-size: 1.1rem; font-weight: 700; color: var(--ink-soft); }
.plan__price-note { font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 24px; }
.plan__features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.plan__features li {
  display: flex;
  gap: 11px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.plan__features li strong { color: var(--ink); font-weight: 600; }
.plan__features .check {
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: #1D8A6F;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan .btn { width: 100%; }

.pricing__guarantee {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.guarantee-pill .shield {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

/* ---------- Opinie ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review__stars { color: var(--amber); letter-spacing: 3px; font-size: 1rem; }
.review__text { font-size: 0.97rem; color: var(--ink-soft); flex: 1; }
.review__text strong { color: var(--ink); }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review__name { font-weight: 700; font-size: 0.95rem; }
.review__occ { font-size: 0.82rem; color: var(--ink-faint); }
.review__verified {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1D8A6F;
  background: var(--mint-soft);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---------- Dlaczego my ---------- */
.why { background: var(--ink); color: #fff; }
.why .section-title { color: #fff; }
.why .section-intro { color: rgba(255, 255, 255, 0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: background 0.25s, transform 0.25s;
}
.why-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.12rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; color: #fff; }
.why-card p { font-size: 0.93rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Formularz zamówienia ---------- */
.order { position: relative; overflow: clip; } /* clip: patrz komentarz przy .hero */
.order::before {
  content: "";
  position: absolute;
  top: 10%; right: -300px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255, 180, 60, 0.14) 0%, transparent 65%);
  pointer-events: none;
}
.order .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.order__aside { position: sticky; top: 110px; }
.order__points {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.order__points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.order__points .ico {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.order__points strong { display: block; color: var(--ink); font-size: 1rem; }

.order-form {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  z-index: 1;
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.form-progress span {
  flex: 1;
  height: 6px;
  border-radius: 100px;
  background: var(--bg-soft);
  transition: background 0.35s;
}
.form-progress span.active { background: linear-gradient(90deg, var(--coral), var(--violet)); }

.form-step { display: none; }
.form-step.active { display: block; animation: step-in 0.4s ease; }
@keyframes step-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step__label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-dark);
  margin-bottom: 8px;
}
.form-step h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.chip {
  padding: 11px 20px;
  border-radius: 100px;
  border: 2px solid var(--line);
  background: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--violet); color: var(--violet); }
.chip.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.field label .optional { color: var(--ink-faint); font-weight: 500; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.82rem; color: var(--ink-faint); margin-top: 6px; }
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: var(--coral-dark); }
.field .error-msg {
  display: none;
  font-size: 0.82rem;
  color: var(--coral-dark);
  font-weight: 600;
  margin-top: 6px;
}
.field.has-error .error-msg { display: block; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Upload zdjęć do lyric video (pakiet Master) */
.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 18px;
  border: 2px dashed var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-box:hover,
.upload-box.dragover {
  border-color: var(--violet);
  background: var(--violet-soft);
}
.upload-box input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.upload-box__icon { font-size: 1.9rem; line-height: 1; }
.upload-box__text { font-size: 0.88rem; color: var(--ink-soft); }
.upload-box__text strong { color: var(--ink); }
.upload-box__count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-faint);
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Lista dodanych plików */
.upload-files {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.upload-files li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.85rem;
}
.upload-files .f-ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--violet-soft);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.upload-files .f-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
}
.upload-files .f-meta {
  color: var(--ink-faint);
  font-size: 0.76rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.upload-files .f-del {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}
.upload-files .f-del:hover { background: var(--coral); color: #fff; }
.upload-error {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral-dark);
  margin-top: 8px;
}
.upload-error:empty { display: none; }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.form-nav .btn--back {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 18px;
}
.form-nav .btn--back:hover { color: var(--ink); }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: var(--ink-faint);
  margin-top: 8px;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral); flex-shrink: 0; }
/* zgoda obowiązkowa (RODO) — wyróżniona, żeby nikt jej nie przeoczył */
.consent--required {
  margin-top: 12px;
  padding: 13px 15px;
  background: var(--coral-soft);
  border: 1.5px solid var(--coral);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 500;
}
.consent--required a { color: var(--coral-dark); font-weight: 600; text-decoration: underline; }
.consent__req {
  display: inline-block;
  margin-left: 3px;
  color: #fff;
  background: var(--coral);
  padding: 1px 8px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.consent--optional,
.consent--portfolio {
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
}
.consent--optional { background: var(--amber-soft); }
.consent--portfolio { background: var(--violet-soft); }
.consent--optional strong,
.consent--portfolio strong { color: var(--ink); }
.consent--optional .hl-promo {
  color: var(--coral-dark);
  background: var(--coral-soft);
  padding: 1px 7px;
  border-radius: 6px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .consent--optional .hl-promo { white-space: normal; }
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.visible { display: block; animation: step-in 0.5s ease; }
.form-success__icon {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
}
.form-success h3 { font-size: 1.7rem; margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); max-width: 42ch; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-soft); }
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}
.faq-item__q .plus {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--coral-soft); color: var(--coral-dark); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__a p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.post-card__cover {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.post-card__cover span { transition: transform 0.3s ease; }
.post-card:hover .post-card__cover span { transform: scale(1.15) rotate(-4deg); }
.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 22px;
  flex: 1;
}
.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.post-card__tag {
  font-weight: 700;
  color: var(--violet);
  background: var(--violet-soft);
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.post-card h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}
.post-card h3 a { transition: color 0.2s; }
.post-card h3 a:hover { color: var(--coral-dark); }
.post-card__body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex: 1;
}
.post-card__more {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-card__more .arrow { transition: transform 0.25s; }
.post-card:hover .post-card__more .arrow { transform: translateX(5px); }
.blog__all {
  margin-top: 40px;
  text-align: center;
}

/* ---------- CTA końcowe ---------- */
.final-cta { padding-block: clamp(70px, 9vw, 110px); }
.final-cta .container {
  background: linear-gradient(135deg, #FF8A6B 0%, var(--coral) 40%, var(--violet) 115%);
  border-radius: var(--radius-lg);
  padding: clamp(50px, 7vw, 90px) clamp(28px, 6vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta .notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  font-size: 2rem;
}
.final-cta .notes span { position: absolute; animation: float 6s ease-in-out infinite; }
.final-cta h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: #fff;
  max-width: 20ch;
  margin-inline: auto;
  position: relative;
}
.final-cta p {
  margin: 18px auto 34px;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  position: relative;
}
.final-cta .btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  position: relative;
}
.final-cta .btn--light:hover { transform: translateY(-2px); }
.final-cta__note { margin-top: 18px !important; font-size: 0.88rem !important; margin-bottom: 0 !important; }

/* ---------- Stopka ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 80px) 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-about p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a {
  font-size: 0.93rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral-dark); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--coral-dark); }

/* ---------- Animacje wejścia ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card .eq span, .hero-note, .hero__eyebrow .dot, .final-cta .notes span { animation: none; }
}

/* ---------- Cena na karcie okazji ---------- */
.occasion-card__price {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #B27414;
  background: var(--amber-soft);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ==========================================================================
   STRONA PRODUKTU (podstrona okazji jako „sklep")
   ========================================================================== */
.product-hero {
  padding: clamp(130px, 15vw, 170px) 0 clamp(50px, 7vw, 80px);
  position: relative;
  overflow: clip; /* clip: patrz komentarz przy .hero */
}
.product-hero::before {
  content: "";
  position: absolute;
  top: -300px; left: -220px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(124, 111, 240, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.product-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

/* --- Lewa kolumna: okładka + cena + zaufanie --- */
.product-gallery { position: sticky; top: 100px; }

.album {
  position: relative;
  width: min(420px, 100%);
  margin-bottom: 44px;
}
.album__vinyl {
  position: absolute;
  top: 6%; right: -17%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #3A3348 0 12%, #241F35 12% 13.5%, #322B44 13.5% 15%, #241F35 15% 100%);
  box-shadow: 0 14px 40px rgba(36, 31, 53, 0.35);
}
.album__vinyl::before {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--violet));
}
.album__vinyl::after {
  content: "";
  position: absolute;
  inset: 48.5%;
  border-radius: 50%;
  background: var(--bg);
}
.album__cover {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.35) 0, transparent 30%),
    linear-gradient(150deg, #FFD9A8 0%, var(--coral) 48%, var(--violet) 105%);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.album__cover .brand {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.85;
}
.album__cover .emoji { font-size: clamp(3.2rem, 7vw, 4.6rem); line-height: 1; }
.album__cover .title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.12;
  text-shadow: 0 2px 14px rgba(36, 31, 53, 0.25);
}
.album__badge {
  position: absolute;
  z-index: 2;
  top: -14px; left: -14px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 17px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

/* Cena w lewej kolumnie strony produktu */
.product-gallery .price-box {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.product-trust {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.product-trust li { display: flex; align-items: center; gap: 11px; }
.product-trust .ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* --- Prawa kolumna: karta zamówienia --- */
.product-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 4vw, 42px);
}
.product-panel h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin: 10px 0 14px;
}
.product-panel__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.product-panel__rating .stars { color: var(--amber); letter-spacing: 2px; }
.product-panel__rating a { text-decoration: underline; text-underline-offset: 3px; }

.price-box {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}
.price-box .old {
  font-size: 1.05rem;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.price-box .now {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--ink);
}
.price-box .promo {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral-dark);
  background: var(--coral-soft);
  padding: 5px 12px;
  border-radius: 100px;
}
.price-box .note {
  flex-basis: 100%;
  font-size: 0.83rem;
  color: var(--ink-faint);
}

.product-form .field { margin-bottom: 18px; }
.product-form .chip-group { margin-bottom: 20px; }
.product-form .btn { width: 100%; margin-top: 6px; }
.product-form__secure {
  text-align: center;
  font-size: 0.83rem;
  color: var(--ink-faint);
  margin-top: 14px;
}

/* --- Opis produktu / powiązane --- */
.product-desc { background: var(--bg-soft); }
.product-desc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(30px, 5vw, 50px);
}

@media (max-width: 1024px) {
  .product-hero .container { grid-template-columns: 1fr; }
  .product-gallery { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
  .album { margin-bottom: 0; }
  .product-desc__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .product-hero { padding: 92px 0 36px; }
  .product-hero .container { gap: 22px; }
  .product-gallery { grid-template-columns: 1fr; gap: 18px; }
  .album { width: min(230px, 64%); margin: 0 auto 10px; }
  .album__badge { font-size: 0.68rem; padding: 6px 12px; top: -10px; left: -10px; }
  .album__cover { padding: 18px; border-radius: 16px; }
  .album__cover .title { font-size: 1.3rem; }
  .product-trust { grid-template-columns: 1fr 1fr; gap: 10px 14px; font-size: 0.8rem; line-height: 1.4; }
  .product-trust li { align-items: flex-start; gap: 8px; }
  .product-trust .ico { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 8px; }
  .product-panel { padding: 22px 18px; border-radius: var(--radius); }
  .product-panel h1 { font-size: 1.45rem; margin: 8px 0 10px; }
  .product-panel__rating { margin-bottom: 14px; font-size: 0.82rem; }
  .price-box { padding: 13px 16px; gap: 8px 12px; margin-bottom: 18px; }
  .price-box .now { font-size: 1.7rem; }
  .price-box .promo { font-size: 0.72rem; }
  .price-box .note { font-size: 0.78rem; }
}

/* ---------- Podstrona okazji ---------- */
.subpage-hero {
  padding: clamp(140px, 16vw, 180px) 0 clamp(50px, 7vw, 80px);
  position: relative;
  overflow: clip; /* clip: patrz komentarz przy .hero */
}
.subpage-hero::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 180, 60, 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.breadcrumbs {
  font-size: 0.86rem;
  color: var(--ink-faint);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--coral-dark); }
.subpage-hero .container { position: relative; z-index: 1; }
.subpage-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 20ch; margin-bottom: 20px; }
.subpage-hero h1 em { font-style: italic; color: var(--coral); }
.subpage-hero .hero__lead { margin-bottom: 30px; }

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  margin-block: 34px;
  max-width: 720px;
}
.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.benefit-list .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: #1D8A6F;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.seo-text {
  max-width: 780px;
  margin-inline: auto;
}
.seo-text h2 { font-size: 1.6rem; margin: 34px 0 14px; }
.seo-text p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Responsywność ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .samples-grid, .reviews-grid, .why-grid, .pricing-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
  .order .container { grid-template-columns: 1fr; }
  .order__aside { position: static; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) and (min-width: 721px) {
  .main-nav a { padding: 9px 10px; font-size: 0.88rem; }
  .header-cta { display: none; }
}

@media (max-width: 720px) {
  /* Kompaktowy rytm sekcji na mobile */
  section { padding-block: 46px; }
  .section-head { margin-bottom: 28px; }
  .section-intro { font-size: 0.98rem; margin-top: 12px; }
  .hero { padding-top: 108px; padding-bottom: 44px; }
  .hero__lead { font-size: 1.02rem; margin-bottom: 24px; }
  .hero__cta { margin-bottom: 26px; }
  .step { padding: 28px 20px 24px; }
  .form-step h3 { font-size: 1.28rem; margin-bottom: 16px; }
  .field { margin-bottom: 14px; }
  .field input, .field select, .field textarea { padding: 12px 14px; font-size: 0.94rem; }
  .chip { padding: 9px 14px; font-size: 0.86rem; }
  .chip-group { gap: 8px; margin-bottom: 20px; }
  .order-form { padding: 22px 18px; border-radius: var(--radius); }
  .form-progress { margin-bottom: 20px; }
  .plan { padding: 28px 22px; }
  .review, .why-card, .sample { padding: 22px 18px; }
  .final-cta { padding-block: 46px; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 85vw);
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 100px 30px 30px;
    transform: translateX(105%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; font-size: 1.1rem; padding: 13px 16px; }
  .nav-toggle { display: flex; position: relative; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .header-cta { display: none; }

  .occasions-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .occasion-card { padding: 22px 18px; }
  .samples-grid, .reviews-grid, .why-grid, .pricing-grid, .steps, .blog-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .hero-note--1 { left: -8px; }
  .hero-note--2 { right: -8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-nav { flex-direction: column-reverse; align-items: stretch; }
  .form-nav .btn { width: 100%; }
  .form-nav .btn--back { text-align: center; }
}

@media (max-width: 460px) {
  .occasions-grid { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; padding: 26px 20px; gap: 20px; }
  .hero__cta .btn { width: 100%; }
}

/* ==========================================================================
   BLOKI PODSTRON PRODUKTOWYCH (edytor bloków w panelu admina)
   Nowe typy sekcji: punkty (wypunktowania), galeria, wideo.
   ========================================================================== */

/* ---------- Blok „punkty" — wypunktowania sprzedażowe ---------- */
.points-section { background: var(--bg-soft); }
.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0; padding: 0;
}
.point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.point__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 1.45rem;
  border-radius: 14px;
  background: var(--coral-soft);
}
.point:nth-child(3n+2) .point__icon { background: var(--violet-soft); }
.point:nth-child(3n)   .point__icon { background: var(--amber-soft); }
.point h3 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 5px; }
.point p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Blok „galeria" ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item { margin: 0; }
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.gallery-item figcaption {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: center;
  font-style: italic;
}

/* ---------- Blok „wideo" ---------- */
.video-section { background: var(--bg-soft); }
.video-frame {
  max-width: 880px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.video-frame iframe, .video-frame video {
  display: block;
  width: 100%; height: 100%;
  border: 0;
}
.video-note {
  max-width: 640px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .points-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
