/* Pełny Wazon — mobile-first, dynamiczny landing */
:root {
  --bg: #0c0e18;
  --bg2: #12162a;
  --surface: #181c33;
  --text: #f4f6ff;
  --muted: #9aa3c7;
  --accent: #ff3d7a;
  --accent2: #7c5cff;
  --accent3: #2ee6c7;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --max: 1120px;
  --surface-plan: #252a45;
  --surface-plan-hover: #2e3558;
  --text-strong: #f8faff;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(124, 92, 255, 0.35), transparent),
    radial-gradient(900px 500px at 90% 0%, rgba(255, 61, 122, 0.25), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

a { color: var(--accent3); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow { max-width: 640px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(12, 14, 24, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header--minimal .header-inner { justify-content: center; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 0.5rem 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
}
.nav a:hover { color: var(--text); }

.nav-link--register {
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link--register:hover {
  color: var(--accent3);
  background: rgba(46, 230, 199, 0.1);
}

.nav-link--logout {
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link--logout:hover {
  color: var(--accent);
  background: rgba(255, 61, 122, 0.12);
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #ff7a4d);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 61, 122, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.9rem; }
.btn--lg { padding: 0.9rem 1.5rem; font-size: 1.05rem; }
.btn--xl { padding: 1rem 1.75rem; font-size: 1.15rem; }
.btn--block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  box-sizing: border-box;
}
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  box-shadow: none;
}
.btn--xs { padding: 0.25rem 0.5rem; font-size: 0.8rem; }

.hero {
  position: relative;
  padding: 2rem 0 3rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(124, 92, 255, 0.4), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(255, 61, 122, 0.35), transparent 50%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; min-height: 70vh; }
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent3);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 520px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
}

.hero-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 3rem 0;
}
.section--tint {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.section--brand {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(255, 61, 122, 0.15));
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin: 0 0 0.5rem;
}
.section__lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.step-card__n {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.step-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }

.freq-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .freq-grid { grid-template-columns: 1fr 1fr; }
}

.freq-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 2px solid rgba(255, 255, 255, 0.08);
}
.freq-card--hot {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 61, 122, 0.3);
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(46, 230, 199, 0.15);
  color: var(--accent3);
  margin-bottom: 0.5rem;
}
.pill--dark {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}
.pill--ok { background: rgba(46, 230, 199, 0.25); }

.plan-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .plan-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.plan-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.plan-card--best {
  border-color: var(--accent2);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(124, 92, 255, 0.25);
}
.plan-card__effect {
  font-weight: 700;
  color: var(--accent3);
  margin: 0;
}
.plan-card__price span { font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); }
.plan-card__price small { color: var(--muted); display: block; }
.plan-card__price--secondary span { font-size: 1.2rem; }

.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.icon-list li {
  padding-left: 1.5rem;
  position: relative;
}
.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent3);
  font-weight: 800;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.days {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.day-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: var(--surface);
  font-weight: 700;
}

.link-arrow { font-weight: 700; }

.faq { display: grid; gap: 0.5rem; }
.faq__item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 1rem;
}
.faq__item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 700;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__a { padding-bottom: 1rem; color: var(--muted); }

.cta-final {
  text-align: center;
  padding: 4rem 0;
}
.cta-final__inner {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.35), rgba(255, 61, 122, 0.3));
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-legal__sep {
  opacity: 0.45;
}

.page-legal .legal-prose {
  padding: 2rem 0 4rem;
}

.legal-prose__inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal-prose__h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.legal-prose__meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.legal-prose h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.75rem 0 0.65rem;
  color: #fff;
}

.legal-prose ol,
.legal-prose ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.55;
}

.legal-prose li {
  margin-bottom: 0.45rem;
}

.legal-prose p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0.65rem 0 0;
}

.legal-prose a {
  color: #fda4cf;
  font-weight: 600;
}

.legal-prose__contact {
  margin-top: 2rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem !important;
}

/* Checkout */
.checkout { padding: 2rem 0 4rem; }
.checkout__head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin: 0.5rem 0 1rem;
}
.progress {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.progress__dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--surface);
  color: var(--muted);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.progress__dot.is-done {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  border-color: transparent;
}

.card-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
}
.card-form h2 { margin: 0; font-family: var(--font-display); }

.card-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.card-form input:not([type="checkbox"]):not([type="radio"]),
.card-form textarea,
.card-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}
.card-form--tight { max-width: 640px; }

.row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 500px) {
  .row { grid-template-columns: 1fr 2fr; }
}

.choice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.15);
}
.choice:not(.choice--tag) {
  align-items: center;
  min-height: 4.5rem;
}
.choice:has(input:checked) {
  border-color: var(--accent2);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.4);
}
.choice--best { border-color: rgba(124, 92, 255, 0.5); }
.choice input { margin-top: 0.35rem; }
.choice:not(.choice--tag) input {
  margin-top: 0;
  align-self: center;
}
.choice span { display: grid; gap: 0.25rem; }
.choice span small { color: var(--muted); font-weight: 400; }
.choice__price { font-weight: 800; color: var(--accent3); margin-top: 0.25rem; }

.choice--tag { align-items: center; }

.check { font-weight: 500; display: flex; gap: 0.5rem; align-items: flex-start; }
.check input { margin-top: 0.25rem; }

.sum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.sum-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.flash {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
}
.flash--err {
  background: rgba(255, 61, 122, 0.2);
  border: 1px solid rgba(255, 61, 122, 0.5);
}
.flash--ok {
  background: rgba(46, 230, 199, 0.15);
  border: 1px solid rgba(46, 230, 199, 0.4);
}

.link-back { color: var(--muted); text-decoration: none; font-size: 0.95rem; }

/* Thank you */
.thankyou .lead { font-size: 1.15rem; }
.thankyou__grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 700px) {
  .thankyou__grid { grid-template-columns: 1fr 1fr; }
}
.card-soft {
  background: var(--surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Kwiaty */
.kwiaty-hero {
  position: relative;
  min-height: 42vh;
}
.kwiaty-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.kwiaty-hero__img--grad {
  background: linear-gradient(135deg, #2a1f55, #551f3a, #1a2a55);
}
.kwiaty-hero__overlay {
  position: relative;
  padding: 3rem 0 2rem;
  min-height: 42vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent, rgba(12, 14, 24, 0.95));
}
.kwiaty-name { font-size: 1.25rem; font-weight: 700; color: var(--accent3); }

/* Auth & panel */
.auth-page h1 { font-family: var(--font-display); }
.auth-page__signup {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.auth-page__signup-link {
  color: var(--accent3);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.5;
}
.auth-page__signup-link:hover {
  color: var(--text);
}
.auth-page__signup-link strong {
  font-weight: 700;
}
.theme-lifestyle .auth-page__signup {
  border-top-color: rgba(0, 0, 0, 0.08);
}
.theme-lifestyle .auth-page__signup-link {
  color: #0d9488;
}
.theme-lifestyle .auth-page__signup-link:hover {
  color: #115e59;
}

.register-page__card {
  margin-top: 1.25rem;
}
.register-page__lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #374151;
}
.register-page__hint {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.register-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 0.25rem;
}
.theme-lifestyle .register-page h1 {
  color: #141824;
}
.panel-page .sub-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sub-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.h-small { font-size: 1rem; margin: 1.25rem 0 0.5rem; }
.grid-forms {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: end;
}
@media (min-width: 600px) {
  .grid-forms {
    grid-template-columns: 1fr auto;
  }
}
.inline-form { display: inline-block; margin-right: 0.5rem; }
.table-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.table-mini th,
.table-mini td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.table-mini--schedule {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.table-mini--schedule thead th {
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.table-mini--schedule tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.12);
}
.table-mini--schedule tbody td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}
.table-mini__schedule-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  vertical-align: top;
}
.panel-tracking-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(236, 72, 127, 0.45);
  color: var(--accent3);
}
.panel-tracking-link:hover {
  filter: brightness(1.08);
  border-bottom-color: var(--accent);
}
.panel-tracking-note {
  display: block;
}
.table-mini--schedule tbody tr:last-child td {
  border-bottom: none;
}
.table-mini--schedule tbody tr.table-mini__row-renewal td {
  background: rgba(124, 92, 255, 0.12);
  border-top: 2px solid rgba(124, 92, 255, 0.35);
  border-bottom: 2px solid rgba(124, 92, 255, 0.2);
}
.status-pill--renewal {
  background: rgba(124, 92, 255, 0.22);
  color: #ddd6fe;
  border: 1px solid rgba(167, 139, 250, 0.35);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0.5rem;
}

.sub-card__top {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: start;
}
@media (min-width: 640px) {
  .sub-card__top {
    grid-template-columns: minmax(140px, 220px) 1fr;
  }
}
.sub-card__visual {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.sub-card__plan-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.sub-card__intro .sub-card__head {
  margin-bottom: 0.35rem;
}

.renewal-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
}
.renewal-card__title {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}
.renewal-dl {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.renewal-dl__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  font-size: 0.95rem;
}
@media (max-width: 480px) {
  .renewal-dl__row {
    grid-template-columns: 1fr;
  }
}
.renewal-dl dt {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}
.renewal-dl dd {
  margin: 0;
}
.renewal-dl__breakdown {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.panel-banner {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.panel-banner--info {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: var(--text);
}
.panel-banner p {
  margin: 0;
  font-size: 0.92rem;
  flex: 1 1 12rem;
}
.panel-banner__form {
  margin: 0;
}

.panel-settings {
  margin: 1.25rem 0 1.5rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
}
.panel-settings__h {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--text-strong);
}
.panel-settings__h--sub {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.panel-settings__lead {
  margin: -0.25rem 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
}
.panel-settings__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.panel-settings__btn-form {
  margin: 0;
}
.panel-settings__form {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
  align-items: end;
}
@media (min-width: 560px) {
  .panel-settings__form {
    grid-template-columns: 1fr auto;
    gap: 0.85rem 1rem;
  }
}
.panel-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.panel-field__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.panel-select {
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  line-height: 1.35;
}
.panel-select:focus {
  outline: none;
  border-color: rgba(236, 72, 127, 0.55);
  box-shadow: 0 0 0 2px rgba(236, 72, 127, 0.2);
}

.btn--panel {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn--panel-primary {
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
  box-shadow: 0 4px 16px rgba(236, 72, 127, 0.35);
}
.btn--panel-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn--panel-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--panel-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--panel-danger {
  background: transparent;
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.45);
}
.btn--panel-danger:hover {
  background: rgba(248, 113, 113, 0.12);
}

.renewal-card__alert {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
  font-size: 0.9rem;
}
.renewal-card__note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
}
.schedule-lead {
  margin: 0 0 0.5rem;
}

.status-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  line-height: 1.25;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.status-pill--sub-active {
  background: rgba(46, 230, 199, 0.22);
  color: #9ff5e5;
}
.status-pill--sub-paused {
  background: rgba(251, 191, 36, 0.2);
  color: #fde68a;
}
.status-pill--sub-cancelled {
  background: rgba(148, 163, 184, 0.22);
  color: #e2e8f0;
}
.status-pill--sub-pending {
  background: rgba(96, 165, 250, 0.22);
  color: #bfdbfe;
}
.status-pill--sub-payfail {
  background: rgba(248, 113, 113, 0.22);
  color: #fecaca;
}
.status-pill--sub-unknown {
  background: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.status-pill--pay-ok {
  background: rgba(46, 230, 199, 0.22);
  color: #9ff5e5;
}
.status-pill--pay-wait {
  background: rgba(251, 191, 36, 0.2);
  color: #fde68a;
}
.status-pill--pay-fail {
  background: rgba(248, 113, 113, 0.25);
  color: #fecaca;
}
.status-pill--pay-refund {
  background: rgba(167, 139, 250, 0.22);
  color: #ddd6fe;
}
.status-pill--pay-unknown {
  background: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.status-pill--ship-ok {
  background: rgba(46, 230, 199, 0.2);
  color: #9ff5e5;
}
.status-pill--ship-label {
  background: rgba(96, 165, 250, 0.22);
  color: #bfdbfe;
}
.status-pill--ship-wait {
  background: rgba(148, 163, 184, 0.22);
  color: #e2e8f0;
}
.status-pill--ship-err {
  background: rgba(248, 113, 113, 0.22);
  color: #fecaca;
}
.status-pill--ship-unknown {
  background: rgba(148, 163, 184, 0.18);
  color: #cbd5e1;
}
.status-pill--ship-planned {
  background: rgba(45, 212, 191, 0.12);
  color: #99f6e4;
  border: 1px solid rgba(45, 212, 191, 0.25);
}

/* Admin — nagłówek poziomy + treść (jak serwis) */
.admin-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(124, 92, 255, 0.22), transparent),
    radial-gradient(900px 500px at 90% 0%, rgba(255, 61, 122, 0.18), transparent),
    var(--bg);
  color: var(--text);
}
.admin-body--no-nav {
  min-height: 100vh;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12, 14, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.admin-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 0;
  min-height: 3.5rem;
}
.admin-header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.admin-header__brand:hover .admin-header__title {
  color: var(--accent3);
}
.admin-header__logo-img {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.admin-header__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
  text-align: left;
}
.admin-header__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.15s ease;
}
.admin-header__tagline {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent3);
}
.admin-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex: 1 1 280px;
  min-width: 0;
}
.admin-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.admin-header__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.admin-header__link.is-active {
  color: var(--text);
  background: rgba(255, 61, 122, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 61, 122, 0.4);
}
.admin-header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.admin-header__action {
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.admin-header__action--muted {
  color: var(--muted);
}
.admin-header__action--muted:hover {
  color: var(--accent3);
  background: rgba(46, 230, 199, 0.08);
}
.admin-header__action--cta {
  background: linear-gradient(135deg, var(--accent), #ff7a4d);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 61, 122, 0.22);
}
.admin-header__action--cta:hover {
  filter: brightness(1.06);
}

.admin-main {
  flex: 1;
  padding: 2.25rem 0 3rem;
  min-width: 0;
}
.admin-main__inner {
  min-width: 0;
}
.admin-main--login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}
.admin-main--login .admin-main__inner {
  width: 100%;
  max-width: 440px;
}

.admin-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 1.2;
}
.admin-page-lead {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 0.25rem;
  width: 100%;
}
.admin-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.admin-stat-card__label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.admin-stat-card__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.admin-login-card {
  width: 100%;
}
.admin-login {
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: rgba(24, 28, 51, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.admin-login__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.admin-login__brand img {
  flex-shrink: 0;
  border-radius: 12px;
}
.admin-login__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent3);
  margin: 0 0 0.2rem;
}
.admin-login__subtitle {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.admin-login__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--text);
}
.admin-login-hint {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  line-height: 1.45;
}
.admin-login-hint code { font-size: 0.85em; word-break: break-all; }

.admin-fieldset {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.02);
}
.admin-fieldset label {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.admin-fieldset input,
.admin-fieldset textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 20, 31, 0.9);
  color: var(--text);
  font-family: var(--font);
}
.admin-fieldset legend {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0 0.35rem;
  color: var(--text);
}

/* Formularze admina (sekcje, siatka) */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1rem;
}
.admin-form__section {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.admin-form__section-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
}
.admin-form__grid {
  display: grid;
  gap: 1rem;
}
.admin-form__grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .admin-form__grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.admin-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
}
.admin-form__field--full {
  grid-column: 1 / -1;
}
.admin-form__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.admin-form__field input[type="text"],
.admin-form__field input[type="date"],
.admin-form__field input[type="file"],
.admin-form__field select,
.admin-form__field textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 20, 31, 0.92);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
}
.admin-form__field textarea {
  min-height: 5.5rem;
  resize: vertical;
  line-height: 1.45;
}
.admin-form__section .admin-form__field + .admin-form__field {
  margin-top: 0.25rem;
}
.admin-form__section .admin-form__field--full {
  margin-top: 0.75rem;
}
.admin-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding-top: 0.25rem;
}
.admin-form__note {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
}

.stat-list { list-style: none; padding: 0; }
.stat-list li { margin-bottom: 0.5rem; }

.table-admin {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.table-admin thead th {
  background: rgba(255, 61, 122, 0.12);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 0.65rem 0.75rem;
}
.table-admin tbody td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.75rem;
  vertical-align: middle;
}
.table-admin tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.filters {
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}
.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.filters select {
  min-width: 10rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 20, 31, 0.95);
  color: var(--text);
  font-family: var(--font);
}
.filters--subs { align-items: flex-end; }
.filters__check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
  user-select: none;
}

.admin-subs-lead {
  max-width: 52rem;
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.admin-subs-lead code { font-size: 0.85em; }
.admin-dhl-preview {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-dhl-preview__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.admin-dhl-preview__meta {
  margin: 0 0 0.75rem;
}
.admin-dhl-preview__warn {
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #fcd34d;
  font-size: 0.9rem;
}
.admin-body.theme-lifestyle .admin-dhl-preview {
  border-top-color: rgba(0, 0, 0, 0.08);
}
.admin-body.theme-lifestyle .admin-dhl-preview__title {
  color: #141824;
}
.admin-body.theme-lifestyle .admin-dhl-preview__warn {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(217, 119, 6, 0.35);
  color: #92400e;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  -webkit-overflow-scrolling: touch;
}
.table-admin--subs th,
.table-admin--subs td { vertical-align: top; }
.table-admin__sub { font-size: 0.8rem; margin-top: 0.2rem; color: var(--muted); }

@media (max-width: 900px) {
  .admin-header__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-header__nav {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }
  .admin-header__actions {
    justify-content: space-between;
    width: 100%;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.hero--simple {
  padding: 4rem 0;
  text-align: center;
}
.hero--simple h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin: 0 0 1rem;
}
.hero__sub { color: var(--muted); font-size: 1.1rem; }

.is-hidden { display: none !important; }

/* --- Sekcja planów (landing — konwersja, mobile) --- */
.section--bright {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%),
    rgba(18, 22, 42, 0.65);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent3);
  margin: 0 0 0.35rem;
}

.section__lead--emph {
  color: var(--text-strong);
  font-size: 1.1rem;
  max-width: 36rem;
}

.section__title--sm {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.landing-freq {
  margin: 2rem 0 2.25rem;
}

.landing-freq__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  margin: 0 0 1rem;
  font-weight: 700;
}

.landing-freq__btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 520px) {
  .landing-freq__btns {
    grid-template-columns: 1fr 1fr;
    max-width: 560px;
  }
}

.landing-freq__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 3.5rem;
  height: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
  background: var(--surface-plan);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.landing-freq__btn:hover {
  background: var(--surface-plan-hover);
}

.landing-freq__btn.is-active {
  border-color: var(--accent3);
  box-shadow: 0 0 0 1px rgba(46, 230, 199, 0.35), 0 12px 40px rgba(46, 230, 199, 0.12);
  background: rgba(46, 230, 199, 0.08);
}

.plan-section__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 900px) {
  .plan-section__grid {
    grid-template-columns: 1fr 1.14fr 1fr;
    gap: 1rem 1.25rem;
  }
}

.plan-card--surface {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-plan);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--text-strong);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-card--surface .plan-card__title,
.plan-card--surface .plan-card__desc {
  padding: 0 1.25rem;
}

.plan-card--surface .plan-card__price-row {
  padding: 0 1.25rem 0.85rem;
}

.plan-card--surface .plan-card__cta {
  width: auto;
  min-width: 0;
  margin: 0 1.25rem 1.25rem;
  align-self: stretch;
}

.plan-card--surface .plan-card__upsell {
  padding: 0 1.25rem;
  margin: 0;
  font-size: 0.92rem;
  color: var(--accent3);
  font-weight: 600;
  min-height: 1.4em;
}

.plan-card__media {
  aspect-ratio: 10 / 7;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.plan-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1rem 0 0.35rem;
  line-height: 1.25;
}

.plan-card__desc {
  margin: 0 0 0.75rem;
  color: #c8d0e8;
  font-size: 0.98rem;
  line-height: 1.45;
}

.plan-card__price-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.plan-card__price-num {
  font-size: clamp(1.65rem, 5vw, 2rem);
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
}

.plan-card__price-hint {
  font-size: 0.85rem;
  color: #8a96b8;
}

.plan-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
}

.plan-badge--bestseller {
  background: linear-gradient(135deg, #ff3d7a, #ff9f4d);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 61, 122, 0.45);
}

.plan-card--surface.plan-card--best {
  position: relative;
  border-color: rgba(124, 92, 255, 0.65);
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.25), 0 24px 60px rgba(124, 92, 255, 0.18);
  z-index: 1;
}

@media (min-width: 900px) {
  .plan-card--surface.plan-card--best {
    transform: scale(1.04);
    margin-top: -0.25rem;
  }
}

.plan-card--surface.is-selected {
  border-color: rgba(46, 230, 199, 0.45);
  box-shadow: 0 0 0 2px rgba(46, 230, 199, 0.2);
}

.plan-card--surface:focus-visible {
  outline: 2px solid var(--accent3);
  outline-offset: 2px;
}

.lifestyle-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}
@media (min-width: 600px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .lifestyle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lifestyle-grid__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.lifestyle-grid__item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.plans-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, transparent, rgba(12, 14, 24, 0.92) 30%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plans-sticky.is-visible {
  display: block;
}

.plans-sticky__inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

body.has-plans-sticky {
  padding-bottom: 5.5rem;
}

@media (min-width: 900px) {
  body.has-plans-sticky {
    padding-bottom: 0;
  }
}

/* ========== Motyw lifestyle / jasny (strona główna) ========== */
body.theme-lifestyle {
  background: linear-gradient(165deg, #fdfcfa 0%, #f5f0e8 42%, #ebe4d9 100%);
  color: #1e2433;
}

.theme-lifestyle .section__title {
  color: #141824;
}

.theme-lifestyle .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.theme-lifestyle .logo {
  color: #1a1d2e;
}

.theme-lifestyle .nav a {
  color: #5a6378;
}

.theme-lifestyle .nav a:hover {
  color: #1a1d2e;
}

.theme-lifestyle .site-footer {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  color: #5a6378;
}

.theme-lifestyle .site-footer a {
  color: #c45b7a;
}

.theme-lifestyle .nav .btn:not(.btn--ghost) {
  background: linear-gradient(135deg, #ec4899, #f97316);
  box-shadow: 0 8px 22px rgba(236, 72, 127, 0.28);
  color: #fff;
}

.theme-lifestyle .nav .btn--ghost {
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #1e2433;
  box-shadow: none;
}

.theme-lifestyle .nav .btn--ghost:hover {
  background: #fff;
  color: #1a1d2e;
}

.theme-lifestyle .nav .nav-link--register {
  color: #6b7280;
}
.theme-lifestyle .nav .nav-link--register:hover {
  color: #0d9488;
  background: rgba(13, 148, 136, 0.12);
}

.theme-lifestyle .nav .nav-link--logout {
  color: #6b7280;
}
.theme-lifestyle .nav .nav-link--logout:hover {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
}

/* Lifestyle — checkout, logowanie, panel, podziękowanie, 404, /kwiaty */
.theme-lifestyle .muted {
  color: #6b7280;
}

.theme-lifestyle .link-back {
  color: #6b7280;
}

.theme-lifestyle .link-back:hover {
  color: #1a1d2e;
}

.theme-lifestyle .checkout__head h1,
.theme-lifestyle .auth-page h1,
.theme-lifestyle .panel-page h1,
.theme-lifestyle .thankyou h1 {
  color: #141824;
}

.theme-lifestyle .thankyou .lead,
.theme-lifestyle .section:not(.hero--light) h2 {
  color: #374151;
}

.theme-lifestyle .card-form {
  background: #fff;
  color: #1e2433;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.theme-lifestyle .card-form h2 {
  color: #141824;
}

.theme-lifestyle .card-form label {
  color: #374151;
}

.theme-lifestyle .card-form input:not([type="checkbox"]):not([type="radio"]),
.theme-lifestyle .card-form textarea,
.theme-lifestyle .card-form select {
  background: #fafafa;
  color: #1e2433;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.theme-lifestyle .check {
  color: #374151;
}

.theme-lifestyle .choice {
  background: #fff;
  color: #1e2433;
  border-color: rgba(0, 0, 0, 0.1);
}

.theme-lifestyle .choice span strong {
  color: #141824;
}

.theme-lifestyle .choice span small {
  color: #6b7280;
}

.theme-lifestyle .choice:has(input:checked) {
  border-color: #ec4899;
  box-shadow: 0 0 0 2px rgba(236, 72, 127, 0.2);
}

.theme-lifestyle .choice--best {
  border-color: rgba(236, 72, 127, 0.4);
}

.theme-lifestyle .choice--tag {
  background: #fafafa;
}

.theme-lifestyle .progress__dot {
  background: #fff;
  color: #6b7280;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.theme-lifestyle .progress__dot.is-done {
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
  border-color: transparent;
}

.theme-lifestyle .sum-list li {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #374151;
}

.theme-lifestyle .sum-list strong {
  color: #141824;
}

.theme-lifestyle .flash--err {
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.theme-lifestyle .flash--ok {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.theme-lifestyle .panel-page .sub-card {
  background: #fff;
  color: #1e2433;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}

.theme-lifestyle .panel-page .sub-card__visual {
  border-color: rgba(0, 0, 0, 0.08);
  background: #f3f4f6;
}

.theme-lifestyle .panel-summary-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 1.75rem;
}
.theme-lifestyle .panel-tile {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.theme-lifestyle a.panel-tile--link:hover {
  border-color: rgba(236, 72, 127, 0.45);
  box-shadow: 0 8px 24px rgba(236, 72, 127, 0.12);
}
.theme-lifestyle .panel-tile__value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: #141824;
}
.theme-lifestyle .panel-tile__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: #374151;
}
.theme-lifestyle .panel-tile__hint {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #6b7280;
}
.theme-lifestyle .panel-tile--ok .panel-tile__value {
  color: #047857;
}
.theme-lifestyle .panel-tile--neutral .panel-tile__value {
  color: #6b7280;
}
.theme-lifestyle .panel-tile--alert {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, #fff5f5 0%, #fff 100%);
}
.theme-lifestyle .panel-tile--alert .panel-tile__value {
  color: #b91c1c;
}
.theme-lifestyle .panel-tile--alert .panel-tile__label {
  color: #991b1b;
}
.theme-lifestyle .panel-tile--muted {
  opacity: 0.92;
  background: #fafafa;
}

.theme-lifestyle .panel-page .panel-archive__h {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.5rem;
  color: #141824;
  scroll-margin-top: 5rem;
}
.theme-lifestyle .panel-page .panel-archive__lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.theme-lifestyle .panel-page .sub-archive {
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: #fafafa;
  overflow: hidden;
}
.theme-lifestyle .panel-page .sub-archive[open] {
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.theme-lifestyle .panel-page .sub-archive__summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  list-style: none;
  font-family: var(--font-display);
  color: #141824;
  user-select: none;
}
.theme-lifestyle .panel-page .sub-archive__summary::-webkit-details-marker {
  display: none;
}
.theme-lifestyle .panel-page .sub-archive__summary-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.theme-lifestyle .panel-page .sub-archive__meta {
  font-size: 0.85rem;
  font-weight: 400;
}
.theme-lifestyle .panel-page .sub-archive__body {
  padding: 0 0 0.5rem;
}
.theme-lifestyle .panel-page .sub-archive .sub-card {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.theme-lifestyle .panel-page .sub-archive--payfail {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, #fff5f5 0%, #fafafa 100%);
}
.theme-lifestyle .panel-page .sub-archive--payfail[open] {
  background: #fff;
}
.theme-lifestyle .panel-page .sub-archive__alert {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #991b1b;
  background: rgba(254, 226, 226, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.theme-lifestyle .panel-page .renewal-card {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, 0.08);
}

.theme-lifestyle .panel-page .renewal-card__title {
  color: #141824;
}

.theme-lifestyle .panel-page .renewal-dl dt {
  color: #6b7280;
}

.theme-lifestyle .panel-page .renewal-card__alert {
  background: rgba(254, 226, 226, 0.95);
  border-color: rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

.theme-lifestyle .status-pill--sub-active {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}
.theme-lifestyle .status-pill--sub-paused {
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
}
.theme-lifestyle .status-pill--sub-cancelled {
  background: rgba(107, 114, 128, 0.18);
  color: #374151;
}
.theme-lifestyle .status-pill--sub-pending {
  background: rgba(59, 130, 246, 0.18);
  color: #1d4ed8;
}
.theme-lifestyle .status-pill--sub-payfail {
  background: rgba(239, 68, 68, 0.16);
  color: #b91c1c;
}
.theme-lifestyle .status-pill--sub-unknown {
  background: rgba(107, 114, 128, 0.15);
  color: #4b5563;
}

.theme-lifestyle .status-pill--pay-ok {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}
.theme-lifestyle .status-pill--pay-wait {
  background: rgba(245, 158, 11, 0.2);
  color: #b45309;
}
.theme-lifestyle .status-pill--pay-fail {
  background: rgba(239, 68, 68, 0.16);
  color: #b91c1c;
}
.theme-lifestyle .status-pill--pay-refund {
  background: rgba(139, 92, 246, 0.16);
  color: #5b21b6;
}
.theme-lifestyle .status-pill--pay-unknown {
  background: rgba(107, 114, 128, 0.15);
  color: #4b5563;
}

.theme-lifestyle .status-pill--ship-ok {
  background: rgba(16, 185, 129, 0.16);
  color: #047857;
}
.theme-lifestyle .status-pill--ship-label {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}
.theme-lifestyle .status-pill--ship-wait {
  background: rgba(107, 114, 128, 0.12);
  color: #4b5563;
}
.theme-lifestyle .status-pill--ship-err {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}
.theme-lifestyle .status-pill--ship-unknown {
  background: rgba(107, 114, 128, 0.12);
  color: #6b7280;
}
.theme-lifestyle .status-pill--ship-planned {
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  border-color: rgba(13, 148, 136, 0.28);
}

.theme-lifestyle .panel-page .panel-settings {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.08);
}
.theme-lifestyle .panel-page .panel-settings__h {
  color: #141824;
}
.theme-lifestyle .panel-page .panel-settings__lead {
  color: #6b7280;
}
.theme-lifestyle .panel-page .panel-settings__h--sub {
  border-top-color: rgba(0, 0, 0, 0.06);
}
.theme-lifestyle .panel-page .panel-field__label {
  color: #6b7280;
}
.theme-lifestyle .panel-page .panel-select {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #1e2433;
}
.theme-lifestyle .panel-page .panel-select:focus {
  border-color: rgba(236, 72, 127, 0.45);
  box-shadow: 0 0 0 2px rgba(236, 72, 127, 0.15);
}
.theme-lifestyle .panel-page .btn--panel-secondary {
  background: #fff;
  color: #374151;
  border-color: rgba(0, 0, 0, 0.14);
}
.theme-lifestyle .panel-page .btn--panel-secondary:hover {
  background: #f9fafb;
}
.theme-lifestyle .panel-page .btn--panel-danger {
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.45);
}
.theme-lifestyle .panel-page .btn--panel-danger:hover {
  background: rgba(254, 226, 226, 0.5);
}
.theme-lifestyle .panel-banner--info {
  background: rgba(219, 234, 254, 0.85);
  border-color: rgba(59, 130, 246, 0.25);
  color: #1e3a5f;
}
.theme-lifestyle .panel-banner--info p {
  color: #374151;
}

.theme-lifestyle .panel-banner--pay-retry {
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 100%);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #1e2433;
}
.theme-lifestyle .panel-banner--pay-retry__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .theme-lifestyle .panel-banner--pay-retry__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
  }
}
.theme-lifestyle .panel-banner--pay-retry__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
  flex: 1 1 auto;
}
.theme-lifestyle .panel-banner--pay-retry__form {
  flex: 0 0 auto;
  margin: 0;
}
.theme-lifestyle .panel-banner--pay-retry__form .btn--panel-primary {
  white-space: nowrap;
}

.theme-lifestyle .panel-page p {
  color: #374151;
}

.theme-lifestyle .table-mini th,
.theme-lifestyle .table-mini td {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #1e2433;
}

.theme-lifestyle .table-mini--schedule {
  border-color: rgba(0, 0, 0, 0.1);
}
.theme-lifestyle .table-mini--schedule thead th {
  background: #f3f4f6;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  color: #6b7280;
}
.theme-lifestyle .table-mini--schedule tbody tr:nth-child(even) {
  background: #fafafa;
}
.theme-lifestyle .table-mini--schedule tbody td {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.theme-lifestyle .panel-tracking-link {
  color: #be185d;
  border-bottom-color: rgba(190, 24, 93, 0.4);
}
.theme-lifestyle .table-mini--schedule tbody tr.table-mini__row-renewal td {
  background: rgba(124, 92, 255, 0.08);
  border-top-color: rgba(124, 92, 255, 0.35);
  border-bottom-color: rgba(124, 92, 255, 0.2);
}
.theme-lifestyle .status-pill--renewal {
  background: rgba(124, 92, 255, 0.14);
  color: #5b21b6;
  border-color: rgba(124, 92, 255, 0.35);
}

.theme-lifestyle .card-soft {
  background: #fff;
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.theme-lifestyle .card-soft h2 {
  color: #141824;
}

.theme-lifestyle .card-soft .btn--ghost {
  border: 2px solid rgba(0, 0, 0, 0.12);
  color: #1e2433;
  background: rgba(255, 255, 255, 0.5);
}

.theme-lifestyle .card-soft .btn--ghost:hover {
  background: #fff;
}

.theme-lifestyle .pill--dark {
  background: rgba(236, 72, 127, 0.12);
  color: #9d174d;
}

.theme-lifestyle .hero--simple h1 {
  color: #141824;
}

.theme-lifestyle .hero__sub {
  color: #6b7280;
}

.theme-lifestyle .kwiaty-hero__overlay {
  background: linear-gradient(transparent, rgba(253, 252, 250, 0.97));
}

.theme-lifestyle .kwiaty-hero__overlay h1 {
  color: #141824;
}

.theme-lifestyle .kwiaty-name {
  color: #be185d;
}

.theme-lifestyle .site-header--minimal {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Admin — motyw jasny (jak landing „lifestyle”) */
.admin-body.theme-lifestyle {
  background:
    radial-gradient(ellipse 900px 500px at 85% 5%, rgba(255, 182, 200, 0.35), transparent 55%),
    radial-gradient(ellipse 700px 450px at 5% 40%, rgba(180, 220, 200, 0.4), transparent 50%),
    linear-gradient(165deg, #fdfcfa 0%, #f5f0e8 42%, #ebe4d9 100%);
  color: #1e2433;
}

.admin-body.theme-lifestyle .admin-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.admin-body.theme-lifestyle .admin-header__title {
  color: #141824;
}

.admin-body.theme-lifestyle .admin-header__brand:hover .admin-header__title {
  color: #be185d;
}

.admin-body.theme-lifestyle .admin-header__tagline {
  color: #0d9488;
}

.admin-body.theme-lifestyle .admin-header__link {
  color: #5a6378;
}

.admin-body.theme-lifestyle .admin-header__link:hover {
  color: #1a1d2e;
  background: rgba(0, 0, 0, 0.04);
}

.admin-body.theme-lifestyle .admin-header__link.is-active {
  color: #141824;
  background: rgba(236, 72, 127, 0.12);
  box-shadow: 0 0 0 1px rgba(236, 72, 127, 0.35);
}

.admin-body.theme-lifestyle .admin-header__action--muted {
  color: #6b7280;
}

.admin-body.theme-lifestyle .admin-header__action--muted:hover {
  color: #0d9488;
  background: rgba(13, 148, 136, 0.1);
}

.admin-body.theme-lifestyle .admin-header__action--cta {
  background: linear-gradient(135deg, #ec4899, #f97316);
  box-shadow: 0 4px 14px rgba(236, 72, 127, 0.2);
  color: #fff;
}

@media (max-width: 900px) {
  .admin-body.theme-lifestyle .admin-header__actions {
    border-top-color: rgba(0, 0, 0, 0.08);
  }
}

.admin-body.theme-lifestyle .admin-main {
  color: #1e2433;
}

.admin-body.theme-lifestyle .admin-page-lead a {
  color: #be185d;
  font-weight: 600;
}
.admin-body.theme-lifestyle .admin-page-lead a:hover {
  text-decoration: underline;
}

.admin-body.theme-lifestyle .admin-page-title,
.admin-body.theme-lifestyle .admin-main h2 {
  color: #141824;
}

.admin-body.theme-lifestyle .admin-page-lead {
  color: #6b7280;
}

.admin-body.theme-lifestyle .admin-stat-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}

.admin-body.theme-lifestyle .admin-stat-card__label {
  color: #6b7280;
}

.admin-body.theme-lifestyle .admin-stat-card__value {
  color: #141824;
}

.admin-body.theme-lifestyle .admin-login {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.admin-body.theme-lifestyle .admin-login__title {
  color: #141824;
}

.admin-body.theme-lifestyle .admin-login__subtitle {
  color: #6b7280;
}

.admin-body.theme-lifestyle .admin-fieldset {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-body.theme-lifestyle .admin-fieldset label {
  color: #374151;
}

.admin-body.theme-lifestyle .admin-fieldset legend {
  color: #141824;
}

.admin-body.theme-lifestyle .admin-fieldset input,
.admin-body.theme-lifestyle .admin-fieldset textarea {
  background: #fafafa;
  color: #1e2433;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.admin-body.theme-lifestyle .filters {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.admin-body.theme-lifestyle .filters label {
  color: #6b7280;
}

.admin-body.theme-lifestyle .filters select {
  background: #fff;
  color: #1e2433;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.admin-body.theme-lifestyle .table-admin {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

.admin-body.theme-lifestyle .table-admin thead th {
  background: rgba(236, 72, 127, 0.12);
  color: #141824;
}

.admin-body.theme-lifestyle .table-admin tbody td {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.admin-body.theme-lifestyle .table-admin tbody tr:hover td {
  background: rgba(255, 255, 255, 0.85);
}

.admin-body.theme-lifestyle .table-mini th,
.admin-body.theme-lifestyle .table-mini td {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  color: #1e2433;
}

.admin-body.theme-lifestyle .muted {
  color: #6b7280;
}

.admin-body.theme-lifestyle .table-admin__sub {
  color: #6b7280;
}

.admin-body.theme-lifestyle .admin-form__section {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}
.admin-body.theme-lifestyle .admin-form__section-title {
  color: #141824;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.admin-body.theme-lifestyle .admin-form__label {
  color: #374151;
}
.admin-body.theme-lifestyle .admin-form__field input[type="text"],
.admin-body.theme-lifestyle .admin-form__field input[type="date"],
.admin-body.theme-lifestyle .admin-form__field input[type="file"],
.admin-body.theme-lifestyle .admin-form__field select,
.admin-body.theme-lifestyle .admin-form__field textarea {
  background: #fafafa;
  color: #1e2433;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

/* Hero */
.hero--light {
  padding: 2.5rem 0 3.5rem;
}

.hero__bg--light {
  background:
    radial-gradient(ellipse 900px 500px at 80% 10%, rgba(255, 182, 200, 0.25), transparent 55%),
    radial-gradient(ellipse 700px 400px at 10% 60%, rgba(180, 220, 200, 0.35), transparent 50%),
    linear-gradient(180deg, #fffefb 0%, transparent 100%);
  opacity: 1;
}

.theme-lifestyle .hero h1 {
  color: #141824;
}

.theme-lifestyle .hero__lead {
  color: #4a5568;
  max-width: 34rem;
}

.badge--soft {
  background: rgba(236, 72, 127, 0.12);
  color: #b8325a;
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hero__cta--strong {
  margin-top: 0.25rem;
}

.btn--primary-strong {
  background: linear-gradient(135deg, #ec4899, #f97316);
  box-shadow: 0 14px 36px rgba(236, 72, 127, 0.35);
  font-size: 1.08rem;
  padding: 1rem 1.75rem;
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #1e2433;
  box-shadow: none;
}

.btn--ghost-light:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
}

.hero-photo-slot {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.hero-photo-slot__inner {
  min-height: 280px;
  background: linear-gradient(145deg, #fff 0%, #f3ebe4 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-photo-slot__kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #c45b7a;
  margin: 0 0 0.5rem;
}

.hero-photo-slot__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5a6378;
}

/* Hero — jedno zdjęcie (karuzela wyłączona; style karuzeli zostają na przyszłość) */
.hero-photo-slot--static .hero-photo-static {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, #f8f4ef 0%, #ebe4d9 100%);
  border-radius: inherit;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero-photo-slot--static .hero-photo-static {
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }
}

.hero-photo-static__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-slot--live .hero-carousel {
  width: 100%;
}

.hero-carousel__viewport {
  position: relative;
  border-radius: inherit;
  overflow: hidden;
}

.hero-carousel__slides {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, #f8f4ef 0%, #ebe4d9 100%);
}

@media (min-width: 900px) {
  .hero-carousel__slides {
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-carousel__chrome {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.04) 0%,
    transparent 35%,
    transparent 65%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: #1e2433;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: background 0.15s ease, transform 0.15s ease;
}

.hero-carousel__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.hero-carousel__arrow:focus-visible {
  outline: 2px solid #ec4899;
  outline-offset: 2px;
}

.hero-carousel__arrow--prev {
  left: 0.65rem;
}

.hero-carousel__arrow--next {
  right: 0.65rem;
}

.hero-carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: calc(100% - 5rem);
}

.hero-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(236, 72, 127, 0.65);
}

.hero-carousel__dot:focus-visible {
  outline: 2px solid #ec4899;
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .hero-carousel__arrow {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 1.25rem;
  }

  .hero-carousel__arrow--prev {
    left: 0.4rem;
  }

  .hero-carousel__arrow--next {
    right: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    transition-duration: 0.01ms;
  }
}

/* Sekcje miękkie */
.section--soft {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(0, 0, 0, 0.04);
}

.section--light-surface {
  background: linear-gradient(180deg, #faf7f2 0%, #f3ede5 100%);
  border-block: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section__eyebrow--rose {
  color: #c45b7a;
}

.section__prose {
  max-width: 42rem;
  margin: 0 0 2rem;
  line-height: 1.7;
  color: #4a5568;
  font-size: 1.02rem;
}

.narrow-text {
  max-width: 40rem;
  margin-inline: auto;
}

.steps--light {
  gap: 1.25rem;
}

.step-card--light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.step-card--light p {
  color: #5a6378;
}

.step-card--light h3 {
  color: #1a1d2e;
}

.theme-lifestyle .step-card__n {
  background: linear-gradient(135deg, #f472b6, #fb923c);
}

.icon-list--light li {
  color: #374151;
}

.icon-list--light li::before {
  color: #ec4899;
}

.section__closing {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.55;
}

.split--light .section__title {
  color: #141824;
}

.theme-lifestyle .split--light p {
  color: #4b5563;
  line-height: 1.65;
}

.media-card--slot {
  min-height: 220px;
  background: linear-gradient(160deg, #fff 0%, #f0ebe4 100%);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.media-card--photo {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f5f0ea;
}

.media-card--photo .media-card__img {
  display: block;
  width: 100%;
  height: auto;
}

.media-card__brief {
  margin: 0;
  font-size: 0.92rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.5;
}

.section--delivery {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 249, 244, 0.95) 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  margin: 0 1rem;
  padding: 2.5rem 1.5rem !important;
}

@media (min-width: 700px) {
  .section--delivery {
    margin: 0 auto;
    max-width: min(100% - 2rem, var(--max));
  }
}

.section__lead--dark {
  color: #374151;
  font-size: 1.1rem;
}

.section--delivery .section__lead--dark + .section__lead--dark {
  margin-top: 0.75rem;
}

.delivery-note {
  color: #6b7280;
  margin: 0.5rem 0 1.25rem;
  font-size: 0.98rem;
}

.days--emph {
  justify-content: center;
}

.day-pill--light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1e2433;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.section--brand-soft {
  background: rgba(255, 255, 255, 0.35);
}

.brand-about {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  max-width: 48rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .brand-about {
    grid-template-columns: minmax(7.5rem, 11rem) minmax(0, 1fr);
    gap: 2rem 2.25rem;
  }
}

.brand-about__logo-link {
  display: block;
  line-height: 0;
}

.brand-about__logo {
  display: block;
  width: 100%;
  max-width: 11rem;
  height: auto;
}

.brand-about__body .section__title {
  margin-top: 0;
}

.theme-lifestyle .section--brand-soft p {
  color: #374151;
  line-height: 1.65;
}

.link-arrow--brand {
  color: #c45b7a;
  font-weight: 700;
}

.section--faq-wrap {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.faq--airy {
  gap: 0.85rem;
  max-width: 44rem;
  margin-inline: auto;
}

.faq__item--light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 0 1.15rem;
}

.faq__item--light summary {
  padding: 1.15rem 0;
  color: #1a1d2e;
  font-size: 1.02rem;
}

.faq__item--light .faq__a {
  color: #5a6378;
  line-height: 1.6;
  padding-bottom: 1.15rem;
}

.cta-final--light {
  padding: 4rem 0;
}

.cta-final__inner--light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(254, 242, 248, 0.9) 50%, rgba(255, 251, 235, 0.95) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.cta-final__inner--light h2 {
  color: #141824;
}

.cta-final__inner--light p {
  color: #5a6378;
}

/* Plany — jasne karty */
.landing-freq__note {
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 38rem;
  margin: 1rem 0 0;
  line-height: 1.5;
}

.theme-lifestyle .landing-freq__btn {
  background: #fff;
  color: #1e2433;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.theme-lifestyle .landing-freq__btn:hover {
  background: #fafafa;
}

.theme-lifestyle .landing-freq__btn.is-active {
  border-color: #ec4899;
  background: rgba(236, 72, 127, 0.06);
  box-shadow: 0 8px 28px rgba(236, 72, 127, 0.12);
}

.plan-card--light {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1a1d2e;
  padding: 0;
  padding-bottom: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.plan-card--light .plan-card__title,
.plan-card--light .plan-card__desc,
.plan-card--light .plan-card__wow-tag {
  padding: 0 1.25rem;
}

.plan-card--light .plan-card__price-row {
  padding: 0 1.25rem 0.85rem;
}

.plan-card--light .plan-card__cta {
  width: auto;
  min-width: 0;
  margin: 0 1.25rem 0;
  align-self: stretch;
}

.plan-card--light .plan-card__desc {
  color: #4b5563;
}

.plan-card--light .plan-card__price-num {
  color: #111827;
}

.plan-card__price-note {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
}

.plan-card__wow-tag {
  font-size: 0.88rem;
  font-weight: 600;
  color: #be185d;
  margin: 0 1.25rem 0.35rem;
}

.plan-card--light .plan-card__upsell {
  padding: 0 1.25rem;
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: #db2777;
  font-weight: 600;
  min-height: 1.35em;
}

.plan-card__media--slot {
  position: relative;
}

.plan-card__photo-brief {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.68rem;
  line-height: 1.35;
  padding: 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  color: #6b7280;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-card--light.plan-card--best {
  border-color: rgba(236, 72, 127, 0.45);
  box-shadow: 0 16px 48px rgba(236, 72, 127, 0.15), 0 0 0 1px rgba(236, 72, 127, 0.12);
  z-index: 1;
}

@media (min-width: 900px) {
  .plan-card--light.plan-card--best {
    transform: scale(1.05);
    margin-top: -0.35rem;
  }
}

.plan-card--light.is-selected {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15), 0 12px 36px rgba(0, 0, 0, 0.06);
}

.plan-badge--bestseller {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.theme-lifestyle .plan-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.35rem;
  line-height: 1.2;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
  border: none;
}

.section--gallery {
  background: #fff;
  border-block: 1px solid rgba(0, 0, 0, 0.05);
}

.section__lead--wide {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #4b5563;
}

.lifestyle-grid--photos {
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .lifestyle-grid--photos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .lifestyle-grid--photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.theme-lifestyle .lifestyle-grid__item--photo {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
  background: #fff;
}

.lifestyle-grid__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.theme-lifestyle .plans-sticky {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.97) 25%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.theme-lifestyle .plans-sticky .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ec4899, #f97316);
}

/* ========== Checkout — spójny z landingiem (róż–pomarańcz) ========== */
body.theme-lifestyle.page-checkout {
  background: linear-gradient(165deg, #fdfcfa 0%, #f5f0e8 42%, #ebe4d9 100%);
  color: #1e2433;
}

.checkout-top {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.85rem 0;
}

.checkout-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.checkout-top__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.checkout-top__sep {
  color: #b8b8b8;
  user-select: none;
}
.checkout-top__link--strong {
  font-weight: 700;
}

.checkout-top__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.checkout-top__link {
  font-size: 0.92rem;
  color: #be185d;
  font-weight: 600;
  text-decoration: none;
}

.checkout-top__link:hover {
  text-decoration: underline;
}

.checkout-foot {
  padding: 2rem 0 3rem;
  text-align: center;
}

.checkout-foot__legal {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
}

.checkout-foot__legal a {
  color: #be185d;
  font-weight: 600;
  text-decoration: none;
}

.checkout-foot__legal a:hover {
  text-decoration: underline;
}

.checkout-foot__copy {
  margin: 0;
  font-size: 0.88rem;
  color: #6b6b6b;
}

.checkout-foot__copy a {
  color: #be185d;
}

.checkout-flow {
  padding: 1.5rem 0 3rem;
}

.checkout-flow__inner {
  max-width: min(100%, 1100px);
}

.checkout-flow__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin: 0 0 0.5rem;
}

.checkout-flow__h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 1.75rem;
  color: #141414;
}

.checkout-flow__flash {
  margin-bottom: 1rem;
}

.checkout-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  position: relative;
}

.checkout-steps__item {
  flex: 1;
  min-width: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  position: relative;
  opacity: 0.45;
}

.checkout-steps__item.is-current,
.checkout-steps__item.is-done {
  opacity: 1;
}

.checkout-steps__dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: #fff;
  border: 2px solid #c4c4c4;
  color: #555;
}

.checkout-steps__item.is-current .checkout-steps__dot {
  border-color: transparent;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
}

.checkout-steps__item.is-done .checkout-steps__dot {
  border-color: transparent;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
}

.checkout-steps__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #555;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .checkout-steps__label {
    font-size: 0.8rem;
  }
}

.checkout-panel {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.35rem 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 600px) {
  .checkout-panel {
    padding: 2.25rem 2.5rem 2.5rem;
  }
}

.checkout-panel__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #141414;
}

.checkout-panel__title--sub {
  margin-bottom: 1.25rem;
}

.checkout-panel__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #5a6378;
  max-width: 52rem;
}

.checkout-plan-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .checkout-plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checkout-plan-tile {
  position: relative;
  display: block;
  cursor: pointer;
}

.checkout-plan-tile__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.checkout-plan-tile__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-plan-tile__figure {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eceae6;
}

.checkout-plan-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout-plan-tile__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.15rem;
  flex: 1;
}

.checkout-plan-tile:hover .checkout-plan-tile__body {
  border-color: #aaa;
}

.checkout-plan-tile__input:checked + .checkout-plan-tile__body,
.checkout-plan-tile__input:focus-visible + .checkout-plan-tile__body {
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 127, 0.2);
  background: #fff;
}

.checkout-plan-tile--featured .checkout-plan-tile__body {
  border-color: rgba(236, 72, 127, 0.45);
}

.checkout-plan-tile__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #141414;
}

.checkout-plan-tile__price {
  font-size: 1.65rem;
  font-weight: 800;
  color: #141414;
}

.checkout-plan-tile__cycle {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #777;
}

.checkout-plan-tile__desc {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #555;
  margin-top: 0.25rem;
}

.checkout-plan-tile__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
}

.checkout-options {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkout-options--days {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .checkout-options--days {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checkout-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.checkout-option--disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.checkout-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.checkout-option__box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-option:hover .checkout-option__box {
  border-color: #bbb;
}

.checkout-option input:checked + .checkout-option__box {
  border-color: #ec4899;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(236, 72, 127, 0.15);
}

.checkout-option__title {
  font-weight: 800;
  font-size: 1rem;
  color: #141414;
}

.checkout-option__hint {
  font-size: 0.78rem;
  font-weight: 700;
  color: #be185d;
}

.checkout-option__muted {
  font-size: 0.8rem;
  color: #888;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.checkout-actions--final {
  margin-top: 0.5rem;
}

.checkout-actions__next {
  flex: 1;
  min-width: 10rem;
  justify-content: center;
}

.checkout-actions__back {
  flex: 0 0 auto;
}

.btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: #fff !important;
  box-shadow: 0 14px 36px rgba(236, 72, 127, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn--cta:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(236, 72, 127, 0.38);
}

.page-checkout .btn--outline {
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  color: #1e2433 !important;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  border: 2px solid #ccc;
  background: #fff;
  color: #333 !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.page-checkout .btn--outline:hover {
  border-color: rgba(236, 72, 127, 0.45);
  background: rgba(236, 72, 127, 0.04);
}

.btn--outline:hover {
  border-color: #999;
  background: #fafafa;
}

.page-checkout .checkout-data-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .page-checkout .checkout-data-grid {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
  }
}

.checkout-summary {
  padding: 1.25rem 1.15rem;
  background: linear-gradient(180deg, #fffefb 0%, #fef7f2 100%);
  border-radius: 12px;
  border: 1px solid rgba(236, 72, 127, 0.12);
}

.checkout-summary__h {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  color: #555;
}

.checkout-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.checkout-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #444;
}

.checkout-summary__list strong {
  color: #141414;
  font-weight: 700;
  text-align: right;
}

.checkout-summary__total {
  padding-top: 0.65rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 1rem;
}

.checkout-summary__total strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.checkout-summary__breakdown {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #666;
}

.checkout-summary__note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #777;
}

.checkout-trust {
  margin-top: 1rem;
  padding: 0.9rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 1px 0 rgba(16, 185, 129, 0.08);
}

.checkout-trust__title {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f766e;
}

.checkout-trust__text {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: #555;
}

.checkout-fields__section-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}

.checkout-form-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.checkout-fields > .checkout-form-section:first-child {
  margin-top: 0;
}

.checkout-billing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
}

.checkout-fields__hint {
  margin: -0.25rem 0 0.75rem;
  font-size: 0.8rem;
  color: #777;
  line-height: 1.45;
  max-width: 42rem;
}

.checkout-form-section--invoice {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-check--invoice {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.checkout-check--delivery-alt {
  margin-top: 1rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  border: 1px solid rgba(236, 72, 127, 0.12);
}

.checkout-addr-alt {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-addr-alt__block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
}

.checkout-fields__row--2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .checkout-fields__row--2 {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-field__l {
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
}

.page-checkout .checkout-field input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  box-sizing: border-box;
}

.page-checkout .checkout-field input:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 127, 0.18);
}

.page-checkout .checkout-field--in {
  gap: 0;
}

.page-checkout .checkout-field--in input {
  padding: 0.75rem 0.9rem;
}

.page-checkout .checkout-field--in input::placeholder {
  color: #888;
  opacity: 1;
}

.page-checkout .checkout-field--in input:focus::placeholder {
  color: #aaa;
}

.checkout-addr-alt__block--in {
  margin-top: 0;
}

.checkout-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  margin: 0.75rem 0 0;
}

.checkout-check input {
  margin-top: 0.2rem;
}

.checkout-check a {
  color: #be185d;
  font-weight: 700;
}

.checkout-legal {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.checkout-pay-hint {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.45;
  margin: 1rem 0 0;
}

.page-checkout .flash--err {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #991b1b;
}
