/* ============================================================
   STYXXX.PL — główny arkusz stylów
   Kolory: primary #161616 | contrast #ffffff | secondary #374E34
   Czcionki: Charon Sans (nagłówki, self-hosted) | Bicyclette (body)
   ============================================================ */

@font-face {
  font-family: 'Charon Sans';
  src: url('/assets/fonts/CharonSansRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:              #161616;
  --bg-light:        #1e1e1e;
  --panel:           rgba(255, 255, 255, 0.04);
  --panel-strong:    rgba(255, 255, 255, 0.07);
  --line:            rgba(255, 255, 255, 0.12);
  --text:            #ffffff;
  --muted:           rgba(255, 255, 255, 0.55);
  --accent:          #374E34;
  --accent-hover:    #445e40;
  --shadow:          0 18px 48px rgba(0, 0, 0, 0.55);
  --radius-xl:       24px;
  --radius-lg:       18px;
  --radius-md:       12px;
  --radius-sm:       8px;
  --max-width:       1180px;
  --font-heading:    'Charon Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:       'Bicyclette', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #161616;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.nav__link {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  transition: color 0.18s ease;
}

.nav__link:hover {
  color: #ffffff;
}

.nav__link--primary {
  color: #ffffff;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 16px;
  letter-spacing: 0.08em;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.nav__link--primary:hover {
  border-color: #ffffff;
}

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle__bars {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
}

/* ─────────────────────────────────────────────
   MAIN – STRONA GŁÓWNA (komunikat)
   ───────────────────────────────────────────── */

.page-home main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 64px - 280px);
  padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 48px);
}

.notice {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.notice__logo {
  display: block;
  height: 56px;
  width: auto;
  margin: 0 auto 40px;
}

.notice__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.notice__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 32px;
  color: #ffffff;
}

.notice__body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}

.notice__body strong {
  color: #ffffff;
}

.notice__divider {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 36px auto;
}

.notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 14px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: #ffffff;
  color: #161616;
  border-color: #ffffff;
}

.button--primary:hover {
  background: rgba(255,255,255,0.88);
}

.button--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.40);
}

.button--ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.05);
}

.button--accent {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.button--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ─────────────────────────────────────────────
   PAGE SHELL (podstrony)
   ───────────────────────────────────────────── */

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.page-header {
  margin-bottom: 32px;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 12px;
}

.page-header .lead {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.page-copy h2,
.page-copy h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-copy h2 {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  margin-top: 32px;
  margin-bottom: 6px;
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy h3 {
  font-size: 0.85rem;
  margin-top: 22px;
  margin-bottom: 4px;
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  margin-top: 32px;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.lead {
  margin-top: 12px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
}

.page-copy {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.page-copy h2 {
  margin-top: 28px;
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: rgba(255,255,255,0.78);
  line-height: 1.72;
}

.page-copy li + li {
  margin-top: 8px;
}

.page-copy p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin: 0 0 14px;
}

.page-aside {
  align-self: start;
}

.aside-stack {
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.aside-card strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.aside-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.88rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color 0.18s;
}

.chip-link:hover {
  border-color: #ffffff;
}

/* ─────────────────────────────────────────────
   FORMULARZ ZGŁOSZENIOWY
   ───────────────────────────────────────────── */

.return-form {
  display: grid;
  gap: 18px;
}

.return-form h2 {
  margin-top: 0;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field__label abbr {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  margin-left: 3px;
}

.form-field__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.18s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field__input:focus {
  border-color: rgba(255,255,255,0.5);
}

.form-field__input::placeholder {
  color: rgba(255,255,255,0.3);
}

textarea.form-field__input {
  resize: vertical;
  min-height: 120px;
}

select.form-field__input {
  background-color: #1e1e1e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-field__input option {
  background: #1e1e1e;
  color: #ffffff;
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.form-check input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  top: 2px;
}

.form-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.form-check input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  position: absolute;
  top: 4px;
  left: 3px;
  transform: rotate(-45deg);
}

.form-check a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.return-form__submit {
  width: 100%;
  margin-top: 6px;
}

.return-form__status {
  margin: 0;
  font-size: 0.88rem;
  min-height: 1.4em;
  text-align: center;
}

.return-form__status--ok {
  color: #6fcf97;
}

.return-form__status--err {
  color: #f87171;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */

.site-footer {
  background: #161616;
  color: #ffffff;
  padding: 52px clamp(16px, 4vw, 48px) 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.footer__col {}

.footer__newsletter-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}

.footer__newsletter-form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}

.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.18s;
}

.footer__newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.footer__newsletter-input:focus {
  border-color: rgba(255,255,255,0.45);
}

.footer__newsletter-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  padding: 10px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.18s;
  white-space: nowrap;
}

.footer__newsletter-btn:hover {
  background: rgba(255,255,255,0.18);
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  color: transparent;
  font-size: 0;
  line-height: 0;
  transition: border-color 0.18s, background 0.18s;
}

.footer__social-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer__social-icon:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}

.footer__social-icon--ig::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23fff' stroke='none'/%3E%3C/svg%3E");
}

.footer__social-icon--fb::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-6 2.7-6 6v2H5v4h3v4h4v-4h3l1-4h-4v-2c0-1.1.9-2 2-2z'/%3E%3C/svg%3E");
}

.footer__social-icon--yt::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M21.6 7.2a2.8 2.8 0 0 0-2-2C17.9 4.8 12 4.8 12 4.8s-5.9 0-7.6.4a2.8 2.8 0 0 0-2 2C2 8.9 2 12 2 12s0 3.1.4 4.8a2.8 2.8 0 0 0 2 2c1.7.4 7.6.4 7.6.4s5.9 0 7.6-.4a2.8 2.8 0 0 0 2-2c.4-1.7.4-4.8.4-4.8s0-3.1-.4-4.8zM10 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
}

.footer__email-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}

.footer__email-link:hover {
  color: rgba(255,255,255,0.85);
}

.footer__col-heading {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px;
  font-weight: 400;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  transition: color 0.18s;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 0;
  opacity: 0.85;
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.18s;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.72);
}

/* ─────────────────────────────────────────────
   COOKIE CONSENT BANNER
   ───────────────────────────────────────────── */

#stx-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px clamp(16px, 4vw, 48px);
}

.ccb__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ccb__text {
  flex: 1;
  min-width: 240px;
}

.ccb__title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.ccb__text p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.ccb__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.ccb__btn {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.ccb__btn--primary {
  background: #ffffff;
  color: #161616;
}

.ccb__btn--primary:hover {
  background: rgba(255,255,255,0.88);
}

.ccb__btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}

.ccb__btn--secondary:hover {
  border-color: #ffffff;
}

.ccb__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.12);
}

.ccb__btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}

/* Cookie modal */
#stx-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.ccm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.ccm__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 32px), 560px);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
  max-height: 85vh;
  overflow-y: auto;
}

.ccm__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.18s;
}

.ccm__close:hover { color: #ffffff; }

.ccm__title {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.ccm__group {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}

.ccm__group:last-of-type { border-bottom: none; }

.ccm__group-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.ccm__group-header > div > strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.ccm__group-header > div > p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
}

.ccm__switch {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}

.ccm__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ccm__slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 22px;
  transition: background 0.18s;
}

.ccm__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.18s;
}

.ccm__switch input:checked + .ccm__slider {
  background: var(--accent);
}

.ccm__switch input:checked + .ccm__slider::before {
  transform: translateX(18px);
}

.ccm__toggle--locked {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  align-self: center;
}

.ccm__cookie-list {
  margin: 10px 0 0;
  padding-left: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.ccm__cookie-list code {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
}

.ccm__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ─────────────────────────────────────────────
   MANAGE CONSENT LINK (footer)
   ───────────────────────────────────────────── */

#stx-manage-consent {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#stx-manage-consent:hover {
  color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 760px) {
  .site-header {
    height: 56px;
    padding: 0 16px;
  }

  /* Logo wycentrowane jak w sklepie */
  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-toggle__line {
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  .nav-toggle.is-active .nav-toggle__line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle.is-active .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active .nav-toggle__line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .brand__logo {
    height: 28px;
  }

  .site-header .nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 99;
    background: #161616;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0 16px;
    transition: max-height 0.3s ease, opacity 0.22s ease;
  }

  .site-header .nav.is-open {
    max-height: 340px;
    opacity: 1;
    pointer-events: auto;
    padding: 10px 16px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .site-header .nav__link {
    padding: 11px 0;
    border: none;
    width: 100%;
    display: block;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding: 28px 0 48px;
  }

  .page-header {
    margin-bottom: 24px;
  }

  .page-header h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .page-copy {
    padding: 20px;
    border-left: none;
    border-right: none;
  }

  .aside-stack {
    gap: 10px;
  }

  .aside-card {
    padding: 16px;
  }

  /* Footer akordeon mobile – jak w sklepie */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__col:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer__col:last-child {
    grid-column: auto;
    padding-top: 24px;
  }

  .footer__brand-logo {
    height: 26px;
  }

  /* Kolumny z linkami → akordeon */
  .footer__col--accordion {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer__col--accordion .footer__col-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin: 0;
    cursor: pointer;
    user-select: none;
  }

  .footer__col--accordion .footer__col-heading::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 12px;
    transition: transform 0.25s ease;
  }

  .footer__col--accordion.is-open .footer__col-heading::after {
    transform: rotate(180deg);
  }

  .footer__col--accordion .footer__links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.22s ease;
    padding-bottom: 0;
  }

  .footer__col--accordion.is-open .footer__links {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 16px;
  }

  .notice {
    text-align: left;
  }

  /* Duże logo nad komunikatem – ukryte na mobile */
  .notice__logo {
    display: none;
  }

  .notice__title {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .notice__actions {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }

  .notice__actions .button {
    text-align: center;
    justify-content: center;
  }

  .button {
    padding: 13px 22px;
  }
}
