/* ============================================================
   ECHO TAPES — design główny „BRUTAL" (document chrome,
   w duchu mariuszszypura.studio). Wybór Mariusza 2026-08-08.
   Struktura pliku: [1] baza (dawny store-v1legacy) →
   [2] skin brutal (dawny v5-brutal) → [3] final overrides.
   Kaskada zamierzona — sekcje 2-3 nadpisują 1.
   ============================================================ */

/* ============================================================
   ECHO TAPES — elegancki minimalizm na białym tle
   Playfair Display (serif, jak logo) + Hanken Grotesk (UI)
   + IBM Plex Mono (drobne meta). Bez build-stepu.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fbfbfa;
  --ink: #111111;
  --ink-soft: #787774;
  --line: #eaeaea;
  --tag-yellow-bg: #fbf3db;
  --tag-yellow-tx: #956400;
  --tag-red-bg: #fdebec;
  --tag-red-tx: #9f2f2d;
  --serif: 'Bodoni Moda', 'Bodoni 72', 'Didot', serif;
  --sans: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', monospace;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img { max-width: 100%; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

::selection { background: #111; color: #fff; }

/* ---------- animacja wejścia ---------- */

.reveal { opacity: 0; transform: translateY(12px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--pad);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  font-size: 25px;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a[aria-current] { color: var(--ink); }

.cart-toggle {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: background 0.2s;
}
.cart-toggle:hover { background: #333; }
.cart-toggle:active { transform: scale(0.98); }

.cart-count {
  background: #fff;
  color: var(--ink);
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
}

/* ---------- przyciski ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #333; }
.btn-primary[disabled] {
  background: var(--bg-soft);
  color: var(--ink-soft);
  border-color: var(--line);
  cursor: not-allowed;
}

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-block { width: 100%; text-align: center; }

/* ---------- tagi ---------- */

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
}
.tag-preorder { background: var(--tag-yellow-bg); color: var(--tag-yellow-tx); }
.tag-soldout { background: var(--tag-red-bg); color: var(--tag-red-tx); }

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 9vh, 120px) var(--pad);
  max-width: 1240px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
}

.eyebrow {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero h1 em { font-style: italic; }

.lede {
  margin: 0 0 32px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* karta produktu w hero */

.hero-card {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.2s;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font: inherit;
  color: inherit;
}
.hero-card:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }

.hero-card-media {
  position: relative;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 1.15;
}
.hero-card-media img {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: contain;
}
.hero-card-media .tag { position: absolute; top: 14px; left: 14px; z-index: 1; }

.hero-card-body {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
}

.hero-card-title { display: block; margin: 0; font-size: 15px; font-weight: 600; line-height: 1.4; }
.hero-card-sub { display: block; margin: 2px 0 0; font-size: 13px; color: var(--ink-soft); }
.hero-card-price { font-size: 15px; font-weight: 600; white-space: nowrap; }

/* ---------- separator fala (z logo) ---------- */

.wave-divider {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  color: var(--line);
}
.wave-divider svg { display: block; width: 100%; height: 28px; }

/* ---------- sekcje ---------- */

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) var(--pad);
}

.section-tinted {
  max-width: none;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-tinted > * { max-width: calc(1240px - 2 * var(--pad)); margin-left: auto; margin-right: auto; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.section-head h2, .info-col h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.link-more {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.link-more:hover { color: var(--ink); }

/* ---------- karty produktów ---------- */

.product-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }

.card-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 18px;
}

.card-media img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.card:hover .card-media img { transform: scale(1.03); }

.card-media .tag { position: absolute; top: 12px; left: 12px; }

.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 2px; flex: 1; }

.card-artist { font-size: 12px; color: var(--ink-soft); }

.card-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin: 0; }

.card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.card-format {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.card-price { font-size: 14px; font-weight: 600; }

/* ---------- banery artystów ---------- */

.artist-banners { display: grid; gap: 20px; }

.artist-banner {
  display: block;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.artist-banner:hover { box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07); }
.artist-banner > img { display: block; width: 100%; height: auto; }

.artist-banner-compose {
  display: grid;
  grid-template-columns: minmax(200px, 0.8fr) minmax(0, 1.6fr);
  align-items: center;
  aspect-ratio: 2.23;
  padding: clamp(16px, 3vw, 48px);
  gap: clamp(12px, 2vw, 32px);
}

.ab-copy { display: flex; flex-direction: column; gap: 6px; }

.ab-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.ab-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.6vw, 1.4rem);
  color: var(--ink-soft);
}

.ab-cta { font-size: 14px; font-weight: 500; margin-top: 8px; }
.artist-banner:hover .ab-cta { text-decoration: underline; text-underline-offset: 3px; }

.ab-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 24px);
  min-width: 0;
}
.ab-strip img {
  height: clamp(90px, 13vw, 200px);
  max-width: 30%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .artist-banner-compose { aspect-ratio: auto; grid-template-columns: 1fr; text-align: center; }
  .ab-copy { align-items: center; }
}

/* ---------- artyści ---------- */

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.artist-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.artist-card:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }

.artist-media {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 28px;
}
.artist-media img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.artist-card:hover .artist-media img { transform: scale(1.03); }

.artist-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; }

.artist-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.artist-blurb { font-size: 14px; color: var(--ink-soft); }

.artist-cta { font-size: 14px; font-weight: 500; margin-top: 6px; }
.artist-card:hover .artist-cta { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- banery formatów ---------- */

.format-banners { display: grid; gap: 20px; }

.fb {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.fb:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }

.fb-copy {
  padding: clamp(24px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.fb-name {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

.fb-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fb-blurb { font-size: 14px; color: var(--ink-soft); max-width: 38ch; }

.fb-cta { font-size: 14px; font-weight: 500; margin-top: 6px; }
.fb:hover .fb-cta { text-decoration: underline; text-underline-offset: 3px; }

.fb-media {
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(18px, 2.5vw, 32px);
  min-height: 200px;
}

.fb-media img {
  height: clamp(120px, 14vw, 190px);
  max-width: 30%;
  object-fit: contain;
}

.fb-lp .fb-media { min-height: 260px; }
.fb-lp .fb-media img { height: clamp(170px, 19vw, 260px); max-width: 55%; }

@media (max-width: 700px) {
  .fb { grid-template-columns: 1fr; }
  .fb-media { border-left: 0; border-top: 1px solid var(--line); order: -1; }
}

.fb-mini-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px;
}

.fb-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  background: #fff;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.fb-mini:hover { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); }

.fb-mini img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px;
}

.fb-mini-name { font-size: 15px; font-weight: 600; display: block; }
.fb-mini-count { font-size: 12px; color: var(--ink-soft); display: block; }

/* ---------- strony dokumentowe (regulamin / prywatność / zwroty) ---------- */

.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 7vh, 80px) var(--pad) clamp(64px, 10vh, 120px);
}

.doc h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.doc-updated {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin: 0 0 40px;
}

.doc h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  margin: 40px 0 12px;
}

.doc p, .doc li { font-size: 15px; color: #2f3437; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin-bottom: 6px; }

.doc .placeholder {
  background: var(--tag-yellow-bg);
  color: var(--tag-yellow-tx);
  padding: 1px 6px;
  border-radius: 4px;
}

.doc-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  padding: 24px 28px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13px;
  margin-top: 8px;
}
.footer-legal a { color: var(--ink-soft); text-decoration: none; }
.footer-legal a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.modal-legal { font-size: 12px; color: var(--ink-soft); margin: 10px 0 0; }
.modal-legal a { color: inherit; }

/* ---------- info ---------- */

.info { border-top: 1px solid var(--line); }

.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.info-col h3 { font-size: 19px; margin-bottom: 10px; }

.info-col p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.info-col a { color: var(--ink); }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(32px, 5vh, 56px) var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-logo { width: 72px; height: 72px; border-radius: 12px; }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-meta p { margin: 0; }

/* ---------- katalog ---------- */

.catalog-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(36px, 6vh, 64px) var(--pad) clamp(56px, 9vh, 110px);
}

.catalog-head { margin-bottom: 28px; }

.catalog-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.catalog-sub { margin: 6px 0 0; font-size: 14px; color: var(--ink-soft); }

.filters {
  position: sticky;
  top: 57px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.filter-row { display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: baseline; }
.filter-row-formats { margin-top: 10px; gap: 8px; }

.filter-tab {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 2px 0;
  cursor: pointer;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-tab:hover { color: var(--ink); }
.filter-tab.is-active { color: var(--ink); border-bottom-color: var(--ink); }

.filter-chip {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 6px 16px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: 20px;
}

.grid .card { opacity: 0; animation: card-in 0.5s var(--ease) forwards; animation-delay: calc(var(--i) * 40ms); }

@keyframes card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 72px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ---------- modal produktu ---------- */

.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: clamp(8px, 3vw, 40px); }

.modal-backdrop, .drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  animation: fade 0.25s both;
}

@keyframes fade { from { opacity: 0; } }

.modal-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: min(880px, 100%);
  max-height: min(88vh, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: auto;
  animation: pop 0.35s var(--ease) both;
}

@keyframes pop {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .modal-card { grid-template-columns: 1fr; }
}

.modal-media {
  background: var(--bg-soft);
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 32px;
}

@media (max-width: 720px) {
  .modal-media { border-right: 0; border-bottom: 1px solid var(--line); }
}

.modal-media img { width: 100%; height: 100%; max-height: 64vh; object-fit: contain; }

.modal-body { padding: clamp(24px, 3.5vw, 40px); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 34px;
  height: 34px;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s;
}
.modal-close:hover { border-color: var(--ink); }

.modal-artist { margin: 0 0 4px; font-size: 13px; color: var(--ink-soft); }

.modal-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.modal-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

#modalFormat {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.modal-price { font-size: 20px; font-weight: 600; }

.modal-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.modal-sizes:empty { margin: 0; }

.size-chip {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  min-width: 46px;
  padding: 9px 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.size-chip:hover { border-color: var(--ink); }
.size-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.modal-note { font-size: 13px; color: var(--ink-soft); margin: 12px 0 0; }
.modal-note:empty { display: none; }

.modal-desc {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.modal-desc:empty { display: none; }

/* ---------- koszyk ---------- */

.drawer { position: fixed; inset: 0; z-index: 95; }

.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 94vw);
  background: #fff;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  animation: slide 0.35s var(--ease) both;
}

@keyframes slide { from { transform: translateX(40px); opacity: 0; } }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
}

.drawer-head .modal-close { position: static; }

.drawer-lines { flex: 1; overflow: auto; padding: 8px 22px; }

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
}

.cart-line-title { font-size: 13px; font-weight: 500; line-height: 1.4; margin: 0; }
.cart-line-variant { font-size: 12px; color: var(--ink-soft); }

.cart-line-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 13px; }

.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  line-height: 1;
  transition: border-color 0.15s;
}
.qty-btn:hover { border-color: var(--ink); }

.cart-line-remove {
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-line-remove:hover { color: var(--ink); }

.cart-line-price { font-size: 14px; font-weight: 600; text-align: right; }

.cart-empty { text-align: center; color: var(--ink-soft); padding: 56px 0; font-size: 14px; }

.drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px; }

.drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
}
.drawer-total strong { font-size: 19px; font-weight: 600; }

.drawer-shipnote { font-size: 12px; color: var(--ink-soft); margin: 6px 0 14px; }

/* ---------- motion safety ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

body.no-scroll { overflow: hidden; }



/* ========== [2] SKIN BRUTAL ========== */

/* ============================================================
   ECHO TAPES — WARIANT 5: „BRUTAL"
   Layout 1:1 w duchu mariuszszypura.studio (minimalist brutalism,
   document chrome): metabar + nav-grid z liniami, hero-grid
   [side rail | main | aux], ascii dividery, sec-heady z numerem
   white-on-black, twarde linie 1/2px, hover = inwersja.
   Font: Manrope (jak studio). Tło = kolor teł packshotów.
   Ładowany PO store-v1legacy.css (nadpiski).
   ============================================================ */

:root {
  --bg: #f7f7f7;
  --bg-soft: #f7f7f7;
  --ink: #000000;
  --ink-soft: rgba(0, 0, 0, 0.55);
  --muted: rgba(0, 0, 0, 0.55);
  --line: #000000;
  --tag-yellow-bg: #000000;
  --tag-yellow-tx: #f7f7f7;
  --tag-red-bg: #000000;
  --tag-red-tx: #f7f7f7;
  --mono: 'Manrope', 'Avenir Next', system-ui, sans-serif;
  --sans: 'Manrope', 'Avenir Next', system-ui, sans-serif;
  --rule: 1px;
  --rule-2: 2px;
  --soft: rgba(0, 0, 0, 0.16);
}

* { border-radius: 0 !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
}

a:hover { background: var(--ink); color: var(--bg); }

/* legacy .site-header nie występuje w tym wariancie */

/* ---------- topbar: metabar + nav ---------- */

.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: var(--bg); }

.metabar {
  display: grid;
  grid-template-columns: 1.3fr 1.9fr 1.1fr 0.9fr;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: var(--rule-2) solid var(--ink);
}
.metabar > div {
  padding: 0.55rem 1.1rem;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.metabar > div:last-child { border-right: none; }
.metabar .mtag { color: var(--muted); }
.metabar .live { font-weight: 700; }
.metabar .live::before { content: '●'; margin-right: 0.4em; animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.3; } }
@media (max-width: 900px) { .metabar { grid-template-columns: 1fr 1fr; } .metabar > div:nth-child(2), .metabar > div:nth-child(3) { display: none; } }

.bnav {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  border-bottom: var(--rule-2) solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bnav a, .bnav .cart-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 0.95rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--bg);
  transition: background 0.15s linear, color 0.15s linear;
  font: inherit;
  cursor: pointer;
}
.bnav a:hover { background: var(--ink); color: var(--bg); }
.bnav .brand .dot { width: 8px; height: 8px; background: var(--ink); display: inline-block; }
.cart-count { background: var(--ink); color: var(--bg); padding: 1px 7px; font-size: 10px; }

.stage { padding-top: 92px; }
@media (max-width: 900px) { .stage { padding-top: 84px; } }

/* ---------- hero: document chrome ---------- */

.bhero { border-bottom: var(--rule-2) solid var(--ink); }

.bhero-grid {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) 15rem;
  min-height: min(78vh, 720px);
}
@media (max-width: 900px) { .bhero-grid { grid-template-columns: 1fr; min-height: 0; } }

.bhero-side {
  border-right: var(--rule) solid var(--soft);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}
.bhero-side .vert {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bhero-side .marker { font-size: 9px; color: var(--muted); font-weight: 700; }
@media (max-width: 900px) { .bhero-side { display: none; } }

.bhero-main {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.bhero-eyebrow {
  margin: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: var(--rule) solid var(--ink);
  width: max-content;
  max-width: 100%;
  padding: 0.5rem 0.8rem;
}

.bhero-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.bhero-title .line { display: block; }
.bhero-title u { text-decoration: none; background: var(--ink); color: var(--bg); padding: 0 0.12em; }

.bhero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.blede { margin: 0; max-width: 42ch; font-size: 13.5px; line-height: 1.65; color: var(--ink); }

.bctas { display: flex; }
.bctas a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border: var(--rule) solid var(--ink);
  border-right: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--bg);
  transition: background 0.15s linear, color 0.15s linear;
}
.bctas a:last-child { border-right: var(--rule) solid var(--ink); background: var(--ink); color: var(--bg); }
.bctas a:hover { background: var(--ink); color: var(--bg); }
.bctas a:last-child:hover { background: var(--bg); color: var(--ink); }

.bhero-aux {
  border-left: var(--rule) solid var(--soft);
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) { .bhero-aux { border-left: 0; border-top: var(--rule) solid var(--soft); } }

.bhero-aux .block {
  border-bottom: var(--rule) solid var(--soft);
  padding: 0.85rem 1.1rem;
}
.bhero-aux .block:last-child { border-bottom: none; }
.bhero-aux .key {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.bhero-aux .val { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.bhero-aux .val.big { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }

.block-product { flex: 1; display: flex; padding: 0 !important; }
.hero-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 0;
  background: none;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}
.hero-card .shell { display: block; border: 0; background: none; padding: 0; box-shadow: none; }
.hero-card .core { display: block; position: relative; aspect-ratio: 1; }
.hero-card .core img { position: absolute; inset: 2%; width: 96%; height: 96%; object-fit: contain; }
.hero-card .core .tag { position: absolute; top: 0; left: 0; z-index: 1; }
.hero-card-caption { display: block; margin-top: 0.6rem; }
.hero-card-title { display: block; font-weight: 800; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.35; }
.hero-card-sub { display: block; font-size: 9.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.hero-card-price { display: block; font-size: 14px; font-weight: 800; margin-top: 0.4rem; }
.hero-card:hover .hero-card-title { background: var(--ink); color: var(--bg); }

/* ---------- sekcje ---------- */

.bsec { border-bottom: var(--rule-2) solid var(--ink); }

.sec-head {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  align-items: stretch;
  border-bottom: var(--rule-2) solid var(--ink);
}
.sec-head .num {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 0.85rem 0.9rem;
  border-right: var(--rule) solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
}
.sec-head .title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sec-head .title .sub { color: var(--muted); font-weight: 400; letter-spacing: 0.14em; }
.sec-head .stamp {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.1rem;
  color: var(--muted);
  display: flex; align-items: center;
  white-space: nowrap;
  text-decoration: none;
}
a.stamp { color: var(--ink); font-weight: 700; }
a.stamp:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 700px) { .sec-head .title .sub, .sec-head .stamp { display: none; } }

/* ---------- produkty ---------- */

.product-row, .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: none;
  border: 0;
}
.grid { grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr)); }
@media (max-width: 1000px) { .product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .product-row { grid-template-columns: 1fr; } }

.card {
  background: none;
  border: 0;
  border-bottom: var(--rule) solid var(--soft);
  padding: 1.1rem;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  transform: none;
}
.card:hover { background: rgba(0, 0, 0, 0.045); transform: none; box-shadow: none; }

.card-media { position: relative; aspect-ratio: 1; margin-bottom: 0.8rem; background: none; border: 0; }
.card-media img { position: absolute; inset: 4%; width: 92%; height: 92%; object-fit: contain; }
.card-media .tag { position: absolute; top: 0; left: 0; z-index: 1; }

.card-body { display: flex; flex-direction: column; flex: 1; }
.card-artist { font-size: 9.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.card-title { font-weight: 800; font-size: 13px; line-height: 1.35; letter-spacing: 0.02em; text-transform: uppercase; background: none; }
.card:hover .card-title { background: var(--ink); color: var(--bg); }
.card-foot { margin-top: auto; padding-top: 0.8rem; display: flex; justify-content: space-between; align-items: baseline; }
.card-format { font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.card-price { font-size: 13.5px; font-weight: 800; }

.tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--bg);
  border: 0;
}
.tag-soldout { background: var(--bg); color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

/* ---------- katalog: pasma z side railami ---------- */

.bband {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  border-bottom: var(--rule) solid var(--soft);
}
.bband:last-child { border-bottom: 0; }

.bband-side {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 0;
}
.bband-side .vert {
  writing-mode: vertical-rl;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 700px) { .bband { grid-template-columns: 1fr; } .bband-side { display: none; } }

.bband-media { display: block; }
.bband-media img { display: block; width: 100%; height: auto; }
.bband-media:hover { background: none; filter: invert(0.04); }

.bband-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.7rem 1.1rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.bband-meta b { font-weight: 800; }
.bband-meta span { color: var(--muted); font-weight: 500; }
.bband-meta a { margin-left: auto; font-weight: 800; text-decoration: none; }
.bband-meta a:hover { background: var(--ink); color: var(--bg); }
.bband-meta { grid-column: 2; }
@media (max-width: 700px) { .bband-meta { grid-column: 1; } }

/* ---------- nośniki ---------- */

.format-banners { border: 0; }

.frow {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(14px, 3vw, 40px);
  padding: 0;
  border-bottom: var(--rule) solid var(--soft);
  text-decoration: none;
  color: inherit;
}
.frow:last-child { border-bottom: 0; }
.frow:hover { background: rgba(0, 0, 0, 0.045); }

.frow-num {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.frow-name {
  font-weight: 800;
  font-size: clamp(1.3rem, 3.4vw, 2.3rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 1rem 0;
}
.frow-thumbs { display: flex; gap: 10px; }
.frow-thumbs img { width: 48px; height: 48px; object-fit: contain; }
.frow-count { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; padding-right: 1.1rem; }
.frow-arrow { margin-left: 6px; }
@media (max-width: 700px) { .frow { grid-template-columns: 1fr auto; } .frow-thumbs, .frow-num { display: none; } .frow-name { padding-left: 1rem; } }

/* ---------- info ---------- */

.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 0;
  border: 0;
  padding: 0;
}
.info-col { padding: 1.2rem; }
.info-col h3 {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}
.info-col p { font-size: 12.5px; line-height: 1.7; color: var(--ink); }

/* ---------- stopka ---------- */

.bfoot { border-top: 0; }
.bfoot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 2.4vw, 2rem) 2.6rem;
}
.bfoot p { margin: 0; }
.bfoot p, .footer-legal a { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-legal { display: flex; gap: 1.4rem; }

/* ---------- katalog (strona) ---------- */

.catalog-head h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border-bottom: var(--rule-2) solid var(--ink);
  padding-bottom: 0.6rem;
}
.filter-tab, .filter-chip {
  border: var(--rule) solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.filter-tab.is-active, .filter-chip.is-active { background: var(--ink); color: var(--bg); }

/* ---------- modal / koszyk ---------- */

.modal-card, .drawer-panel {
  border: var(--rule-2) solid var(--ink);
  box-shadow: none;
  background: var(--bg);
}
.modal-close { border: var(--rule) solid var(--ink); background: var(--bg); }
.modal-title { font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; }
.modal-price { font-weight: 800; }


/* ============================================================
   Iteracja 2 (2026-08-08 wieczór): mniej linii — pionowe
   podziały zdjęte (metabar/nav/karty/info/side raile), drugorzędne
   linie zmiękczone (--soft). Struktura document-chrome zostaje.
   ============================================================ */

/* ---------- tape motif: szpule + taśma + VU ---------- */

.tape-motif {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 1rem clamp(1rem, 2.4vw, 2rem);
  border-bottom: var(--rule-2) solid var(--ink);
}

.tape-motif .reel {
  flex: none;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 50% !important;
  background:
    radial-gradient(circle, var(--ink) 3.5px, transparent 4.5px),
    radial-gradient(circle, transparent 0 34%, var(--bg) 34% 100%),
    repeating-conic-gradient(var(--ink) 0 7deg, transparent 7deg 60deg);
  animation: reel-spin 6s linear infinite;
}
.tape-motif .reel-b { width: 28px; height: 28px; animation-duration: 4.2s; }

.tape-motif .tape {
  flex: 1;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 14px, transparent 14px 22px);
  background-size: 22px 100%;
  animation: tape-flow 0.9s linear infinite;
}

/* uproszczony linearny VU meter */
.tape-motif .vu {
  flex: none;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
}
.tape-motif .vu i {
  width: 5px;
  background: var(--ink);
  animation: vu-bounce 1.1s ease-in-out infinite alternate;
}
.tape-motif .vu i:nth-child(1) { height: 40%; animation-delay: 0s; }
.tape-motif .vu i:nth-child(2) { height: 75%; animation-delay: 0.15s; }
.tape-motif .vu i:nth-child(3) { height: 55%; animation-delay: 0.3s; }
.tape-motif .vu i:nth-child(4) { height: 90%; animation-delay: 0.07s; }
.tape-motif .vu i:nth-child(5) { height: 62%; animation-delay: 0.22s; }
.tape-motif .vu i:nth-child(6) { height: 35%; animation-delay: 0.4s; }

@keyframes reel-spin { to { transform: rotate(360deg); } }
@keyframes tape-flow { to { background-position: 22px 0; } }
@keyframes vu-bounce { to { transform: scaleY(0.45); } }
.tape-motif .vu i { transform-origin: bottom; }

@media (prefers-reduced-motion: reduce) {
  .tape-motif .reel, .tape-motif .tape, .tape-motif .vu i { animation: none; }
}


/* ============================================================
   FINAL (2026-08-08): brutal wybrany jako design główny.
   Poprawki decyzją Mariusza:
   - nagłówek hero + Katalog: Bodoni Moda heavy (900)
   - bez metabara (tylko nav), bez szarych podświetleń hover
   - tytuł hero bez czarnego prostokąta na „zostają"
   ============================================================ */

.stage { padding-top: 64px; }
@media (max-width: 900px) { .stage { padding-top: 58px; } }



/* zero szarych podświetleń na hover */
.card:hover { background: none; }
.frow:hover { background: none; }
.bband-media:hover { filter: none; }
.frow:hover .frow-name { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }

/* nagłówki INFO w sansie (legacy dawał serif) */
.info-col h3 { font-family: var(--sans); letter-spacing: 0.22em; }

/* ============================================================
   FINAL 2 (2026-08-08 noc): bez Bodoni (wszystko Manrope),
   bez capitalików, hero = logo + animowana kaseta (cienka linia),
   filtry katalogu jako tekstowe taby, strony produktów p/<handle>
   zamiast modali (SEO).
   ============================================================ */

/* zero capitalików — sentence case w markupie, transform off */
.bnav a, .bnav .cart-toggle, .bhero-eyebrow, .bhero-side .vert,
.bhero-aux .key, .bhero-aux .val, .sec-head .title, .sec-head .stamp,
.bctas a, .card-artist, .card-title, .card-format, .frow-name,
.frow-count, .bband-side .vert, .bband-meta, .info-col h3,
.bfoot p, .footer-legal a, .filter-tab, .filter-chip, .tag,
.catalog-sub, .catalog-head h1, .btn, .size-chip, .drawer-head h2,
.cart-line-variant, .doc h1, .doc h2 {
  text-transform: none;
}

.catalog-head h1 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- hero: logo + kaseta ---------- */

.bhero-logo { margin: 0; }
.bhero-logo img {
  display: block;
  width: min(560px, 88%);
  height: auto;
}

.cassette {
  display: block;
  width: min(440px, 76%);
  color: var(--ink);
  margin-top: clamp(20px, 4vh, 40px);
  opacity: 0.9;
}
.cassette .spin { animation: reel-spin 5s linear infinite; }
.cassette .spin-b { animation-duration: 3.6s; }
.cassette .tapeflow {
  stroke-dasharray: 9 7;
  animation: cass-dash 0.8s linear infinite;
}
@keyframes cass-dash { to { stroke-dashoffset: -16; } }
@media (prefers-reduced-motion: reduce) {
  .cassette .spin, .cassette .tapeflow { animation: none; }
}

/* ---------- filtry katalogu: tekstowe taby ---------- */

.filters {
  border-top: 1px solid var(--soft);
  border-bottom: 1px solid var(--soft);
  padding: 6px 0 14px;
  margin-bottom: 0;
  background: none;
}
.filter-row { display: flex; flex-wrap: wrap; gap: 2px 26px; border: 0; padding: 6px 0 0; }

.filter-tab, .filter-chip {
  border: 0;
  background: none;
  padding: 6px 0;
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--muted);
  cursor: pointer;
  box-shadow: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s linear;
}
.filter-tab:hover, .filter-chip:hover { color: var(--ink); background: none; }
.filter-tab.is-active, .filter-chip.is-active {
  color: var(--ink);
  background: none;
  border-bottom-color: var(--ink);
  box-shadow: none;
}

/* ---------- strona produktu ---------- */

.product-page {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 2.4vw, 2rem);
  padding-right: clamp(1rem, 2.4vw, 2rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
}

.pp-back { margin: 1.4rem 0 0; }
.pp-back a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.pp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 1.6rem;
}
@media (max-width: 860px) { .pp-grid { grid-template-columns: 1fr; } }

.pp-media {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--soft);
}
.pp-media img {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
}
.pp-media .tag { position: absolute; top: 12px; left: 12px; z-index: 1; }

.pp-artist { margin: 0 0 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--muted); }
.pp-title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.pp-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft);
  font-size: 13px;
  color: var(--muted);
}
.pp-price { font-size: 22px; font-weight: 800; color: var(--ink); }

.pp-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pp-sizes:empty { display: none; }

.pp-actions .btn { width: 100%; justify-content: center; display: flex; }
.pp-note { min-height: 1.2em; margin: 10px 0 0; font-size: 12.5px; color: var(--muted); }
.pp-legal { margin: 14px 0 0; font-size: 12px; color: var(--muted); }
.pp-legal a { color: var(--ink); }
.pp-desc { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--soft); font-size: 14px; line-height: 1.75; white-space: pre-line; }

/* karty-linki: bez podkreśleń i bez globalnej inwersji a:hover */
.card, .card *, .hero-card, .hero-card *, .bband-media, .frow, .frow *,
.stamp, .bband-meta a, .pp-back a, .link-more {
  text-decoration: none;
}
a.card:hover { background: none; color: inherit; padding: 1.1rem; margin: 0; }
a.hero-card:hover { background: none; color: inherit; padding: 1rem 1.1rem; margin: 0; }
a.bband-media:hover { background: none; color: inherit; padding: 0; margin: 0; }
a.frow:hover { background: none; color: inherit; padding: 0; margin: 0; }

/* ============================================================
   FINAL 3 (2026-08-08 noc): hero bez kolumny aux — sama duża
   kaseta lineart (wg inspiracji patentowych) z logo na etykiecie.
   Pasek tape-motif usunięty (kaseta przejęła animację).
   ============================================================ */

.bhero-grid { grid-template-columns: 4.5rem minmax(0, 1fr); min-height: min(82vh, 760px); }
@media (max-width: 900px) { .bhero-grid { grid-template-columns: 1fr; } }

.cassette-stage { display: flex; justify-content: flex-start; padding: clamp(0.5rem, 2vh, 2rem) 0; }

.cassette {
  display: block;
  width: min(660px, 94%);
  color: var(--ink);
  opacity: 0.92;
}

/* hero po usunięciu eyebrow: kaseta wyżej */
.bhero-main { padding-top: clamp(1rem, 2.5vw, 2rem); gap: 1.6rem; }
.cassette-stage { padding-top: 0; }

/* kaseta bliżej przycisków; hero zwarte */
.bhero-grid { min-height: 0; }
.bhero-main { justify-content: flex-start; gap: clamp(0.8rem, 2vh, 1.4rem); padding-bottom: clamp(1.4rem, 3vw, 2.6rem); }
@media (max-width: 900px) {
  .cassette-stage { justify-content: center; }
  .bhero-main { gap: 0.8rem; }
}

/* sold-out: czerwone tło */
.tag-soldout {
  background: #c9241b;
  color: #fff;
  box-shadow: none;
  border-color: #c9241b;
}

/* kotwice pod fixed nav */
html { scroll-padding-top: 60px; }

/* brand w nav = logotyp */
.bnav .brand { padding-top: 0.55rem; padding-bottom: 0.55rem; }
.bnav .brand:hover { background: var(--bg); }
.brand-logo { display: block; height: 26px; width: auto; }
.bnav .brand:hover .brand-logo { opacity: 0.6; }

/* ============================================================
   Nav: wyższy, przejrzysty, rozmywa treść pod spodem (frosted),
   linki w formie tekstowych tabów jak filtry w katalogu.
   Info przeniesione do stopki (kolumny Kontakt / Info / Dokumenty).
   ============================================================ */

.topbar { background: none; }
.bnav {
  background: rgba(247, 247, 247, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--soft);
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
}
.bnav a, .bnav .cart-toggle {
  padding: 1.35rem 0.95rem;
  background: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.bnav a:hover, .bnav .cart-toggle:hover { background: none; color: var(--ink); }
.bnav a[aria-current] { color: var(--ink); }
.bnav .brand { padding-top: 1.05rem; padding-bottom: 1.05rem; }
.bnav .brand:hover { background: none; }
.brand-logo { height: 30px; }

.stage { padding-top: 84px; }
@media (max-width: 900px) { .stage { padding-top: 76px; } }
html { scroll-padding-top: 84px; }

/* stopka z kolumnami */
.bfoot { border-top: var(--rule-2) solid var(--ink); margin-top: clamp(2rem, 5vh, 4rem); }
.bfoot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.6rem, 3.5vw, 2.8rem) clamp(1rem, 2.4vw, 2rem) 2.6rem;
}
.bf-head { margin: 0 0 0.6rem; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--ink); }
.bf-col p { margin: 0 0 0.35rem; font-size: 12.5px; line-height: 1.7; color: var(--muted); letter-spacing: 0.01em; font-weight: 500; }
.bf-col a { color: var(--ink); }
.footer-legal { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-legal a { font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; text-transform: none; width: max-content; }
.bf-copy { margin: 0; font-size: 11px; font-weight: 600; color: var(--muted); align-self: end; justify-self: end; }
@media (max-width: 700px) { .bf-copy { justify-self: start; } }

/* stopka: jedna linia linków, fixed, przejrzysta z blurem (jak nav) */
.bfoot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  margin: 0;
  border-top: 1px solid var(--soft);
  background: rgba(247, 247, 247, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
}
body { padding-bottom: 46px; }
@media (max-width: 700px) { body { padding-bottom: 84px; } }
.bfoot-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 2rem;
  padding: 0.8rem clamp(1rem, 2.4vw, 2rem);
}
.bfoot-line a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.bfoot-line a:hover { background: none; color: var(--muted); padding: 0; margin: 0; }
.bfoot-line .bf-copy { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--muted); }
@media (max-width: 700px) { .bfoot-line .bf-copy { margin-left: 0; width: 100%; } }

/* pasma katalogu bez pionowego raila — banery do lewej */
.bband { grid-template-columns: 1fr; }
.bband-meta { grid-column: 1; }

/* nav: linki idealnie wyśrodkowane, brand/koszyk na krawędziach */
.bnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  position: relative;
}
.bnav a, .bnav .cart-toggle { padding: 1.35rem 0.2rem; }
.bnav .brand { position: absolute; left: 0; top: 50%; transform: translateY(-50%); padding: 0 0.95rem; }
.bnav .cart-toggle { position: absolute; right: 0; top: 50%; transform: translateY(-50%); padding: 0 0.95rem; }

/* ============================================================
   Nav: wysoki pasek (124px), logotyp jako pierwszy button w menu,
   bez szpul (motyw magnetofonu wycofany decyzją Mariusza; kaseta
   nadal zarchiwizowana w assets/cassette-backup.svg).
   ============================================================ */

.bnav { height: 124px; border-bottom: 1px solid var(--soft); }
.bnav a, .bnav .cart-toggle { padding: 0 0.2rem; }
.nav-logo-link { display: block; }
.nav-logo { display: block; height: 40px; width: auto; }
.nav-logo-link:hover { background: none; }
.nav-logo-link:hover .nav-logo { opacity: 0.6; }
.bnav .cart-toggle { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); }

.stage { padding-top: 125px; }
html { scroll-padding-top: 125px; }

@media (max-width: 700px) {
  .bnav { height: 96px; gap: 1.1rem; }
  .nav-logo { height: 30px; }
  .stage { padding-top: 97px; }
  html { scroll-padding-top: 97px; }
}


/* nośniki: wszystkie mockupy w jednej linii — tyle, ile się mieści */
.frow { grid-template-columns: 4.5rem auto minmax(0, 1fr) auto; }
.frow-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-height: 48px;
  overflow: hidden;
  min-width: 0;
}
.frow-thumbs img { width: 48px; height: 48px; object-fit: contain; flex: none; }
@media (max-width: 700px) {
  .frow { grid-template-columns: auto minmax(0, 1fr) auto; }
  .frow-thumbs { display: flex; max-height: 40px; }
  .frow-thumbs img { width: 40px; height: 40px; }
}

/* katalog: pełna szerokość + filtry sticky równo pod paskiem */
.catalog-page {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.sec-head h1 { margin: 0; }
.catalog-page .filters { padding-left: clamp(1rem, 2.4vw, 2rem); padding-right: clamp(1rem, 2.4vw, 2rem); }
.catalog-page .grid { border-bottom: var(--rule-2) solid var(--ink); }

.filters {
  position: sticky;
  top: 124px;
  z-index: 40;
  background: rgba(247, 247, 247, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
@media (max-width: 700px) { .filters { top: 96px; } }

/* filtry katalogu wyśrodkowane */
.catalog-page .filter-row { justify-content: center; }

/* submenu katalogu: obie grupy w jednej linii, łamanie całymi grupami */
.catalog-page .filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 3.2rem;
  row-gap: 0;
}
.catalog-page .filter-row { flex: 0 1 auto; flex-wrap: nowrap; }
@media (max-width: 700px) {
  .catalog-page .filter-row { flex-wrap: wrap; justify-content: center; }
}

/* mobile: submenu katalogu i footer mniejszym fontem — jedna linia */
@media (max-width: 700px) {
  .filter-tab, .filter-chip { font-size: 11px; padding: 4px 0; }
  .catalog-page .filter-row { gap: 2px 14px; }
  .catalog-page .filters { column-gap: 1.4rem; padding-top: 2px; padding-bottom: 8px; }

  .bfoot-line { gap: 0.3rem 0.9rem; padding: 0.6rem 0.8rem; flex-wrap: nowrap; white-space: nowrap; justify-content: space-between; }
  .bfoot-line a { font-size: 10px; letter-spacing: 0; }
  .bfoot-line .bf-copy { display: none; }
  body { padding-bottom: 44px; }
}

/* przełącznik języka w nav */
.lang-switch {
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  color: var(--ink) !important;
  border: 1px solid var(--soft);
  border-radius: 999px !important;
  padding: 0.25rem 0.7rem !important;
}
.lang-switch:hover { border-color: var(--ink); }
