@charset "UTF-8";
@media (max-width: calc(768px - 1px)) {
  /* UKRYWAMY TYLKO LISTĘ LINKÓW DESKTOPOWYCH */
  .menu9-desktop-list {
    display: none !important;
  }
  .menu9-desktop-nav-wrapper {
    display: none; /* Ukryj menu desktop na mobile */
  }
  .menu9-toggle {
    display: block !important;
    margin-left: auto !important; /* Wyrównuje hamburgera do prawej */
  }
  .menu9-logo-container {
    flex: 0 1 auto;
  }
  .menu9-logo-brand {
    width: clamp(160px, 18vw, 220px) !important;
    height: auto !important;
  }
  .menu9-overlay {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .menu9-desktop-list {
    display: flex !important;
    margin-left: auto;
  }
  .menu9-toggle {
    display: none !important;
  }
  .menu9-logo-brand img {
    width: 200px !important;
    height: auto !important;
  }
}
.main-header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.menu9 {
  color: white;
}
.menu9-desktop-list a {
  text-decoration: none;
}
.menu9-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.menu9-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 1;
  width: auto;
  height: auto;
  padding: 0;
}
.menu9-logo-float {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.menu9-logo-float:hover {
  transform: translateY(-5px) scale(1.03);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
.menu9-logo-brand img {
  display: block;
  position: relative;
}
.menu9-logo-wrapper {
  position: relative;
  padding: 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.menu9-logo-img {
  display: block;
  position: relative;
  width: auto;
  max-width: 160px;
  height: auto;
  z-index: 5;
  object-fit: contain;
  transition: max-width 0.2s ease;
  will-change: filter, transform;
}
@media (max-width: 768px) {
  .menu9-logo-img {
    max-width: 140px;
  }
}
@media (max-width: 500px) {
  .menu9-logo-img {
    max-width: 110px;
  }
}
@media (max-width: 400px) {
  .menu9-logo-img {
    max-width: 90px;
  }
}
.menu9-toggle {
  flex-shrink: 0;
  margin-left: 1rem;
  transition: none;
  position: relative;
  right: 0;
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
  z-index: 9999;
}
.menu9-toggle .bar {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: white;
  transition: all 0.35s ease;
}
.menu9-toggle .bar.short {
  width: 18px;
  margin: 5px 0;
  background: linear-gradient(270deg, rgba(190, 150, 110, 0.95), rgba(210, 180, 150, 0.95));
}
.menu9-toggle .bar.long {
  width: 36px;
  margin: 5px 0;
  background: linear-gradient(270deg, rgba(190, 150, 110, 0.95), rgba(210, 180, 150, 0.95));
}
.menu9-toggle .bar.medium {
  width: 24px;
  margin: 5px 0;
  background: linear-gradient(270deg, rgba(190, 150, 110, 0.95), rgba(210, 180, 150, 0.95));
}
.menu9-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  width: 28px;
}
.menu9-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu9-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 28px;
}
.menu9-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 1000;
}
.menu9-overlay.active {
  opacity: 1;
  visibility: visible;
}
.menu9-side {
  position: fixed;
  top: 0;
  left: -100%;
  height: auto;
  background: linear-gradient(270deg, rgba(190, 150, 110, 0.95), rgba(210, 180, 150, 0.95)) !important;
  background-size: 200% 200%;
  animation: gradientShift 30s linear infinite;
  padding: 20px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: all 0.5s ease;
  transform: translateX(-30px);
  opacity: 0;
  z-index: 1001;
  /* Domyślnie wyłączamy przechwytywanie kliknięć */
  pointer-events: none;
  /* włączamy przewijanie wysuwanego menu */
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
.menu9-side.open {
  left: 0;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.menu9-side.open .menu9-logo-img {
  opacity: 1;
  animation: logoGlow 2.2s ease-in-out infinite;
}
.menu9-side.open .menu9-list li {
  opacity: 1;
  transform: translate(0, 0);
}
.menu9-side.open .menu9-list li:nth-child(1) {
  transition-delay: 0.15s;
}
.menu9-side.open .menu9-list li:nth-child(2) {
  transition-delay: 0.25s;
}
.menu9-side.open .menu9-list li:nth-child(3) {
  transition-delay: 0.35s;
}
.menu9-side.open .menu9-list li:nth-child(4) {
  transition-delay: 0.45s;
}
.menu9-side.open .menu9-list li:nth-child(5) {
  transition-delay: 0.55s;
}
.menu9-side.open .menu9-list li:nth-child(6) {
  transition-delay: 0.65s;
}
.menu9-side.open .menu9-list li:nth-child(7) {
  transition-delay: 0.75s;
}
.menu9-side.open .menu9-list li:nth-child(8) {
  transition-delay: 0.85s;
}
.menu9-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  /* KLUCZOWA ZMIANA: Lista zajmuje całą dostępną przestrzeń */
  flex-grow: 1; /* Wymusza rozciągnięcie na pozostałą przestrzeń */
}
.menu9-side-list a {
  text-decoration: none !important;
}
@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.32));
    transform: scale(1.02);
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    transform: scale(1);
  }
}
.menu9-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.menu9-list li {
  margin: 15px 0;
  opacity: 0;
  transform: translateX(-20px) translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.menu9-list a {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 1.18em;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.menu9-list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 36%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.menu9-list a:hover::after {
  left: 120%;
}
.menu9-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(2px);
  padding-left: 18px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
body.menu9-open {
  overflow: hidden;
}

.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background-color: #753e3e; /* ciemne, neutralne tło gdy brak obrazów */
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
  filter: brightness(0.6) contrast(1.3);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  /* zamiast czarnej półprzezroczystości – delikatny gradient */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 2;
}

.bg1 {
  opacity: 1;
  pointer-events: none;
}

.bg2 {
  opacity: 0;
  pointer-events: none;
}

.bg-fall-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.falling-img {
  position: absolute;
  will-change: transform, opacity;
  opacity: 0.7;
}

:root {
  /* === SPACING SCALE === */
  --spacing-xs: 0.625rem; /* 10px */
  --spacing-sm: 0.9375rem; /* 15px */
  --spacing-md: 1.25rem; /* 20px */
  --spacing-lg: 1.5625rem; /* 25px */
  --spacing-xl: 1.875rem; /* 30px */
  --spacing-xxl: 2.5rem; /* 40px */
  /* === BORDER RADIUS === */
  --border-radius-sm: 0.5rem; /* 8px */
  --border-radius-md: 1.25rem; /* 20px */
  --border-radius-lg: 1.5625rem; /* 25px */
  --border-radius: var(--border-radius-md);
  /* === TYPOGRAPHY === */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-xxl: 1.5rem;
  /* === SHADOWS === */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.45);
}

:root {
  --arti-generated-img-sizes:
      (max-width: 479px) 100vw,
      (max-width: 640px) 440px,
      (max-width: 896px) 600px,
      (max-width: 1200px) 864px,
      (max-width: 1535px) 1080px,
      1296px;
}

/* ===== GRADIENT BORDERS ===== */
/* ===== CARD COMPONENTS ===== */
/* ===== TYPOGRAPHY ===== */
/* ===== RESPONSIVE DESIGN ===== */
/* ===== LAYOUT HELPERS ===== */
/* ===== DESIGN TOKENS (bez scales) ===== */
:root {
  /* Kolory główne */
  --primary-color: #ffcc66;
  --secondary-color: #4ddbff;
  /* Kolory tekstu */
  --text-light: #f5f5f5;
  --text-muted: #e0e0e0;
  /* Tła i obramowania */
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --section-bg: rgba(255, 255, 255, 0.02);
  /* Efekty wizualne */
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  --h2-border-color: rgba(255, 255, 255, 0.2);
  --section-border-color: rgba(77, 219, 255, 0.5);
  /* Animacje */
  --transition: all 0.3s ease;
}

body.plecianki-pl.light-theme {
  --text-light: #1f2937;
  --text-muted: #6b7280;
  --border-color: rgba(0, 0, 0, 0.1);
  --card-bg: rgba(255, 255, 255, 0.95);
  --section-bg: rgba(0, 0, 0, 0.02);
}

/* ===== PROFESSIONAL THEME SYSTEM WITH MIXINS ===== */
body.plecianki-pl.light-theme {
  --primary-color: #e6a500;
  --secondary-color: #00a8d6;
  --text-light: #1a1a1a;
  --text-muted: #555;
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);
  --section-bg: rgba(0, 0, 0, 0.03);
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  --h2-border-color: rgba(0, 0, 0, 0.15);
  --section-border-color: rgba(0, 168, 214, 0.5);
}
body.plecianki-pl.light-theme .main-container {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
body.plecianki-pl.light-theme .section:hover {
  background: rgba(0, 0, 0, 0.05);
}
body.plecianki-pl.dark-theme {
  --primary-color: #ffcc66;
  --secondary-color: #4ddbff;
  --text-light: #f5f5f5;
  --text-muted: #e0e0e0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --section-bg: rgba(255, 255, 255, 0.02);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  --h2-border-color: rgba(255, 255, 255, 0.2);
  --section-border-color: rgba(77, 219, 255, 0.5);
}
body.plecianki-pl.dark-theme .section:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lit__container {
  position: relative;
  overflow: hidden;
  width: auto;
  height: 100%;
  min-height: 200px;
}
.lit {
  /* Wszystkie slajdy nakładamy jeden na drugi */
}
.lit__picture {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.lit {
  /* Aktywny slajd */
}
.lit__picture.lit-active {
  opacity: 1;
  pointer-events: auto;
}
.lit {
  /* Obrazy skalują się tak jak w sliderach */
}
.lit__image {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

lit-animated-picture {
  display: block;
  /* Ustaw wymiary kontenera! Np. height: 400px; */
  overflow: hidden;
}

.lit__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.lit__picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Domyślnie ukryty */
  transition: opacity 0.1s;
  z-index: 0;
}

.lit__picture.lit-active {
  opacity: 1;
  z-index: 1;
}

.lit__image,
.lit__picture picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================================================
   BASE VARIABLES (nadpisywane w motywach)
=========================================================== */
/* ===========================================================
   MIXINS
=========================================================== */
/* ===========================================================
   ANIMATIONS
=========================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===========================================================
   BASE BLOCK: .statistics
=========================================================== */
.statistics {
  font-family: system-ui, sans-serif;
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  --stat-bg: #fff;
  --stat-bg-secondary: #f7f7f7;
  --stat-border: #ddd;
  --stat-text: #111;
  --stat-green: #0a7a0a;
  --stat-green-rgb: 10, 122, 10;
  background: var(--stat-bg);
  color: var(--stat-text);
  border: 1px solid var(--stat-border);
  /* --- WIDOKI --- */
}
.statistics [data-view-desktop] {
  display: block;
}
.statistics [data-view-mobile] {
  display: none;
}
.statistics {
  /* --- Główne klasy użyte w szablonie --- */
}
.statistics__grid {
  display: grid;
}
.statistics__hidden {
  display: none !important;
}
.statistics__link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.statistics__link:hover {
  color: var(--stat-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.statistics__header {
  text-align: center;
  margin-bottom: 25px;
}
.statistics__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.statistics__subtitle {
  font-size: 1rem;
  opacity: 0.75;
}
.statistics__data-container {
  margin-bottom: 25px;
}
.statistics {
  /* =======================================================
     TABLE STYLES (WIDOK DESKTOPOWY)
  ======================================================= */
}
.statistics__table-wrapper {
  overflow-x: auto;
  margin-bottom: 25px;
  border-radius: 16px;
  padding: 8px;
  background: var(--stat-bg-secondary);
  border: 1px solid var(--stat-border);
  -webkit-overflow-scrolling: touch;
}
.statistics__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  min-width: 600px; /* Minimalna szerokość dla scrollowania */
}
.statistics__table-heading {
  padding: 12px 16px;
  border: 1px solid var(--stat-border);
  box-sizing: border-box;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 100px;
  font-weight: 600;
  background: var(--stat-bg-secondary);
  text-align: center;
  vertical-align: middle;
}
.statistics__table-heading--sticky {
  position: sticky;
  left: 0;
  z-index: 10;
  background: var(--stat-bg);
  min-width: 160px;
  max-width: 220px;
  white-space: normal;
  word-break: break-word;
  font-weight: 600;
}
.statistics__table-heading--highlight {
  font-weight: 800;
  color: var(--stat-green);
  border: 2px solid white;
}
.statistics__row td:nth-child(2) {
  color: var(--stat-green);
  border: 1px dotted white;
}
.statistics__row:nth-child(even) {
  background: var(--stat-bg-secondary);
}
.statistics__row:hover {
  background: rgba(var(--stat-green-rgb), 0.05);
}
.statistics__row:hover .statistics__cell--sticky {
  background: rgba(var(--stat-green-rgb), 0.05);
}
.statistics__cell {
  padding: 12px 16px;
  border: 1px solid var(--stat-border);
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: background-color 0.2s ease;
}
.statistics__cell--left {
  text-align: left;
}
.statistics__cell--center {
  text-align: center;
}
.statistics__cell--number {
  text-align: center;
  min-width: 70px;
  font-family: "Monaco", "Menlo", "Consolas", monospace;
}
.statistics__cell {
  /* Delta classes */
}
.statistics__cell--delta-positive {
  color: var(--stat-green);
  font-weight: 600;
}
.statistics__cell--delta-negative {
  color: #dc3545;
  font-weight: 600;
}
.statistics__cell--delta-neutral {
  opacity: 0.7;
}
.statistics__cell {
  /* Sticky cells */
}
.statistics__cell--sticky {
  position: sticky;
  left: 0;
  z-index: 9;
  background: var(--stat-bg);
  white-space: normal;
  word-break: break-word;
  min-width: 160px;
  max-width: 220px;
}
.statistics {
  /* =======================================================
     CARD STYLES (WIDOK MOBILNY)
  ======================================================= */
}
.statistics__view-cards {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.statistics__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 0;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.statistics__card {
  background: var(--stat-bg);
  border: 1px solid var(--stat-border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 0;
  overflow: visible;
  animation: fadeIn 0.4s ease-out forwards;
}
.statistics__card:nth-child(1) {
  animation-delay: 0.05s;
}
.statistics__card:nth-child(2) {
  animation-delay: 0.1s;
}
.statistics__card:nth-child(3) {
  animation-delay: 0.15s;
}
.statistics__card:nth-child(4) {
  animation-delay: 0.2s;
}
.statistics__card:nth-child(5) {
  animation-delay: 0.25s;
}
.statistics__card:nth-child(6) {
  animation-delay: 0.3s;
}
.statistics__card:nth-child(7) {
  animation-delay: 0.35s;
}
.statistics__card:nth-child(8) {
  animation-delay: 0.4s;
}
.statistics__card:nth-child(9) {
  animation-delay: 0.45s;
}
.statistics__card:nth-child(10) {
  animation-delay: 0.5s;
}
.statistics__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--stat-green);
}
.statistics__card--summary {
  background: rgba(var(--stat-green-rgb), 0.08);
  border: 2px solid var(--stat-green);
  box-shadow: 0 4px 12px rgba(var(--stat-green-rgb), 0.15);
}
.statistics__card--summary .statistics__card-title {
  color: var(--stat-green);
  font-weight: 700;
}
.statistics__card--summary:hover {
  box-shadow: 0 8px 32px rgba(var(--stat-green-rgb), 0.2);
}
.statistics__card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stat-border);
}
.statistics__card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--stat-text);
}
.statistics__card-title a {
  color: inherit;
  text-decoration: none;
}
.statistics__card-title a:hover {
  color: var(--stat-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.statistics__card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.statistics__card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.statistics__card-row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.statistics--dark .statistics__card-row:not(:last-child), .statistics--dark-clean .statistics__card-row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.statistics__card-label {
  font-size: 0.95rem;
  color: var(--stat-text);
  opacity: 0.8;
  flex: 1;
  padding-right: 12px;
  font-weight: 500;
}
.statistics__card-value {
  font-weight: 600;
  font-size: 1.15rem;
  text-align: right;
  min-width: 70px;
  white-space: nowrap;
}
.statistics__card-value.statistics__cell--delta-positive {
  color: var(--stat-green);
}
.statistics__card-value.statistics__cell--delta-negative {
  color: #dc3545;
}
.statistics__card-value.statistics__cell--delta-neutral {
  opacity: 0.7;
}
.statistics {
  /* =======================================================
     VERSIONS
  ======================================================= */
}
.statistics__versions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  padding: 16px;
  font-size: 0.9rem;
  background: var(--stat-bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--stat-border);
}
.statistics__version-item {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--stat-bg);
  border: 1px solid var(--stat-border);
  transition: all 0.2s ease;
}
.statistics__version-item:hover {
  background: rgba(var(--stat-green-rgb), 0.1);
  border-color: var(--stat-green);
  transform: translateY(-2px);
}
.statistics__version-item span {
  font-weight: 600;
  color: var(--stat-green);
}
.statistics .icon--white {
  filter: invert(1) hue-rotate(180deg);
  margin-right: 5px;
}
.statistics {
  /* =======================================================
     THEMES (MODYFIKATORY BLOKU)
  =========================================================== */
}
.statistics--light {
  --stat-bg: #ffffff;
  --stat-bg-secondary: #f8f9fa;
  --stat-border: #e9ecef;
  --stat-text: #212529;
  --stat-green: #0a7a0a;
  --stat-green-rgb: 10, 122, 10;
}
.statistics--dark {
  --stat-bg: #1a1a1f;
  --stat-bg-secondary: #2b2b33;
  --stat-border: #3b3b42;
  --stat-text: #e6e6e6;
  --stat-green: #32d96c;
  --stat-green-rgb: 50, 217, 108;
}
.statistics--dark .statistics__card {
  background: #2b2b33;
  border-color: #3b3b42;
}
.statistics--dark .statistics__card--summary {
  background: rgba(50, 217, 108, 0.15);
  border-color: var(--stat-green);
}
.statistics--dark .statistics__versions {
  background: #2b2b33;
  border-color: #3b3b42;
}
.statistics--dark .statistics__version-item {
  background: #1a1a1f;
  border-color: #3b3b42;
}
.statistics--dark .statistics__version-item:hover {
  background: rgba(50, 217, 108, 0.2);
}
.statistics--dark-clean {
  --stat-bg: transparent;
  --stat-bg-secondary: transparent;
  --stat-border: rgba(255, 255, 255, 0.15);
  --stat-text: white;
  --stat-green: #2fe279;
  --stat-green-rgb: 47, 226, 121;
  backdrop-filter: blur(10px);
}
.statistics--dark-clean .statistics__table-wrapper {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.statistics--dark-clean .statistics__card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}
.statistics--dark-clean .statistics__card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(47, 226, 121, 0.4);
}
.statistics--dark-clean .statistics__card--summary {
  background: rgba(47, 226, 121, 0.18);
  border-color: rgba(47, 226, 121, 0.4);
  backdrop-filter: blur(8px);
}
.statistics--dark-clean .statistics__card--summary:hover {
  background: rgba(47, 226, 121, 0.22);
}
.statistics--dark-clean .statistics__card-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.statistics--dark-clean .statistics__versions {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.statistics--dark-clean .statistics__version-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.statistics--dark-clean .statistics__version-item:hover {
  background: rgba(47, 226, 121, 0.25);
  border-color: rgba(47, 226, 121, 0.4);
}
.statistics {
  /* =======================================================
     RESPONSIVE BREAKPOINTS (ZAGNIEŻDŻONE W BLOKU)
  ======================================================= */
}
@media (max-width: 1024px) {
  .statistics {
    padding: 16px;
  }
  .statistics__table-heading--sticky {
    min-width: 140px;
  }
  .statistics__cell--number {
    min-width: 65px;
  }
}
.statistics {
  /* Przełączanie na cards */
}
@media (max-width: 904px) {
  .statistics [data-view-desktop] {
    display: none;
  }
  .statistics [data-view-mobile] {
    display: block;
  }
  .statistics__cards {
    gap: 14px;
  }
  .statistics__card {
    padding: 18px;
  }
  .statistics__card-title {
    font-size: 1.15rem;
  }
}
@media (max-width: 650px) {
  .statistics {
    padding: 14px;
  }
  .statistics__cards {
    gap: 12px;
  }
  .statistics__card {
    padding: 16px;
  }
  .statistics__card-title {
    font-size: 1.1rem;
  }
  .statistics__card-label {
    font-size: 0.9rem;
  }
  .statistics__card-value {
    font-size: 1.05rem;
  }
  .statistics__versions {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
  }
}
@media (max-width: 480px) {
  .statistics {
    padding: 12px;
    border-radius: 16px;
  }
  .statistics__cards {
    gap: 10px;
  }
  .statistics__card {
    padding: 14px;
    border-radius: 10px;
  }
  .statistics__card-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  .statistics__card-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .statistics__card-content {
    gap: 10px;
  }
  .statistics__card-row {
    padding: 6px 0;
  }
  .statistics__card-label {
    font-size: 0.85rem;
    padding-right: 8px;
  }
  .statistics__card-value {
    font-size: 1rem;
    min-width: 60px;
  }
  .statistics__versions {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
}
@media (max-width: 275px) {
  .statistics {
    padding: 5px;
  }
  .statistics__card {
    padding: 12px;
  }
  .statistics__card-title {
    font-size: 1rem;
  }
  .statistics__card-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0;
  }
  .statistics__card-label, .statistics__card-value {
    width: 100%;
    text-align: left;
  }
  .statistics__card-value {
    padding-left: 8px;
    font-size: 1.1rem;
    min-width: auto;
  }
  .statistics__card--summary .statistics__card-title {
    font-size: 1.1rem;
  }
}

.privacy-policy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
  line-height: 1.7;
}
.privacy-policy--with-statistic {
  position: relative;
}
.privacy-policy__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: left;
}
@media (min-width: 768px) {
  .privacy-policy__title {
    margin-bottom: 2rem;
  }
}
.privacy-policy__content {
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
  font-size: 1rem;
}
.privacy-policy__content p {
  margin: 0 0 1.2rem 0;
}
.privacy-policy__content h2,
.privacy-policy__content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.privacy-policy__content h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}
.privacy-policy__content h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}
.privacy-policy__content ul,
.privacy-policy__content ol {
  margin: 1rem 0 1.5rem 1.2rem;
  padding-left: 1rem;
}
.privacy-policy__content ul li,
.privacy-policy__content ol li {
  margin-bottom: 0.5rem;
}

.theme-light .privacy-policy {
  color: #222;
}
.theme-light .privacy-policy__title {
  color: #222;
}
.theme-light .privacy-policy__content {
  background: #ffffff;
  color: #222;
}

.theme-dark .privacy-policy {
  color: #ffffff;
}
.theme-dark .privacy-policy__title {
  color: #ffffff;
}
.theme-dark .privacy-policy__content {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.theme-dark-clean .privacy-policy {
  color: #ffffff;
}
.theme-dark-clean .privacy-policy__title {
  color: #ffffff;
}
.theme-dark-clean .privacy-policy__content {
  background: none;
  box-shadow: none;
  color: #ffffff;
}

.grid {
  display: grid;
  gap: var(--spacing-md);
  grid-template-columns: 1fr;
}

@media (min-width: 40.0625rem) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 56.0625rem) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 75.0625rem) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ========================================================= */
/* ===== 3. BASE STYLES ===== */
body.plecianki-pl {
  font-family: "Georgia", serif;
  line-height: 1.6;
  margin: 0;
  padding: var(--spacing-md);
  color: var(--text-light);
  min-height: 100vh;
  background: transparent;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05), transparent 70%);
  overflow-x: hidden;
}

body.plecianki-pl.light-theme {
  background: #fafafa;
  --text-muted: #444;
  --section-bg: rgba(255, 255, 255, 0.85);
  --section-border-color: rgba(0, 0, 0, 0.1);
}

/* ========================================================= */
/* ===== 4. LAYOUT & CONTAINERS ===== */
.plecianki-pl .main-container,
.plecianki-pl .container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 30rem) {
  .plecianki-pl .main-container,
  .plecianki-pl .container {
    max-width: 37.5rem;
  }
}
@media (min-width: 40.0625rem) {
  .plecianki-pl .main-container,
  .plecianki-pl .container {
    max-width: 54rem;
  }
}
@media (min-width: 56.0625rem) {
  .plecianki-pl .main-container,
  .plecianki-pl .container {
    max-width: 67.5rem;
  }
}
@media (min-width: 75.0625rem) {
  .plecianki-pl .main-container,
  .plecianki-pl .container {
    max-width: 81rem;
  }
}
.plecianki-pl .main-container,
.plecianki-pl .container {
  padding: var(--spacing-xxl) var(--spacing-xl);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 70%);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}
.plecianki-pl .main-container::before,
.plecianki-pl .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 1;
}

body.plecianki-pl.light-theme .main-container {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

/* ========================================================= */
/* ===== 5. GRID SYSTEM ===== */
.plecianki-pl .alpacas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}
@media (min-width: 40.0625rem) {
  .plecianki-pl .alpacas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 56.0625rem) {
  .plecianki-pl .alpacas-grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}
.plecianki-pl .alpacas-grid {
  margin-top: var(--spacing-xxl);
  padding-top: var(--spacing-xl);
}

/* ========================================================= */
/* ===== 6. TYPOGRAPHY ===== */
.plecianki-pl h1 {
  font-size: clamp(2.5em, 5vw, 4em);
  font-family: "Arial Black", sans-serif;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: var(--spacing-md);
  margin-bottom: var(--spacing-xxl);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  transition: all 0.3s ease;
}
.plecianki-pl h1:hover {
  animation: gradient-shine 3s ease-in-out infinite;
}

body.plecianki-pl.light-theme h1 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.plecianki-pl h2 {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: var(--text-light);
  margin-top: var(--spacing-xxl);
  margin-bottom: var(--spacing-lg);
  border-bottom: 2px dashed var(--h2-border-color);
  padding-bottom: var(--spacing-sm);
  position: relative;
}
.plecianki-pl h2::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 3px;
  background: var(--secondary-color);
  margin-right: 0.75rem;
  border-radius: 999px;
}
.plecianki-pl h2:hover {
  animation: gradient-shine 3s ease-in-out infinite;
}

.plecianki-pl h3 {
  font-size: clamp(1.4em, 3vw, 1.8em);
  color: var(--primary-color);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.plecianki-pl p {
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

/* ========================================================= */
/* ===== 7. SECTIONS ===== */
.plecianki-pl .section {
  margin-bottom: var(--spacing-xxl);
  padding: var(--spacing-lg);
  border-left: 4px solid var(--section-border-color);
  background: var(--section-bg);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  transition: var(--transition);
}
.plecianki-pl .section:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--secondary-color);
  transform: translateY(-2px);
}

body.plecianki-pl.light-theme .section:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ========================================================= */
/* ===== 8. CARDS ===== */
/* (puste — zostawione do przyszłej rozbudowy) */
/* ========================================================= */
/* ===== 9. HIGHLIGHT STYLES ===== */
.plecianki-pl .highlight {
  background: linear-gradient(120deg, rgba(255, 223, 150, 0.2), rgba(255, 255, 255, 0));
  padding: 0 0.3em;
  border-radius: 6px;
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================================= */
/* ===== 10. ANIMATIONS ===== */
@keyframes gradient-shine {
  0% {
    color: var(--primary-color);
  }
  50% {
    color: var(--secondary-color);
  }
  100% {
    color: var(--primary-color);
  }
}
@keyframes float-leaves {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0);
    opacity: 0.8;
  }
}
/* ========================================================= */
/* ===== 11. RESPONSIVE ===== */
@media (max-width: calc(30rem - 1px)) {
  body.plecianki-pl {
    padding: var(--spacing-sm);
  }
  .plecianki-pl .main-container {
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }
  .plecianki-pl .section {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
  .plecianki-pl h1 {
    font-size: 2em;
  }
  .plecianki-pl h2 {
    font-size: 1.4em;
  }
}
#pleciankaKontakt {
  max-width: 500px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-xl);
  background: var(--section-bg);
  border-radius: var(--border-radius);
  border: 1px solid var(--section-border-color);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 70%);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}
body.plecianki-pl.light-theme #pleciankaKontakt {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#pleciankaKontakt h2 {
  color: var(--primary-color);
  text-align: center;
  font-family: "Georgia", serif;
  font-size: 1.8em;
  margin-bottom: var(--spacing-lg);
  border-bottom: 2px dashed var(--h2-border-color);
  padding-bottom: var(--spacing-md);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
#pleciankaKontakt h2:hover {
  animation: gradient-shine 3s ease-in-out infinite;
}
#pleciankaKontakt form {
  margin-top: var(--spacing-lg);
}
#pleciankaKontakt form input,
#pleciankaKontakt form textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--section-border-color);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  font-family: "Georgia", serif;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  transition: var(--transition);
}
#pleciankaKontakt form input::placeholder,
#pleciankaKontakt form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
#pleciankaKontakt form input:focus,
#pleciankaKontakt form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(45, 122, 111, 0.2);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
body.plecianki-pl.light-theme #pleciankaKontakt form input,
body.plecianki-pl.light-theme #pleciankaKontakt form textarea {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-light);
}
body.plecianki-pl.light-theme #pleciankaKontakt form input::placeholder,
body.plecianki-pl.light-theme #pleciankaKontakt form textarea::placeholder {
  color: var(--text-muted);
}
body.plecianki-pl.light-theme #pleciankaKontakt form input:focus,
body.plecianki-pl.light-theme #pleciankaKontakt form textarea:focus {
  background: rgb(255, 255, 255);
}
#pleciankaKontakt form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
#pleciankaKontakt form button {
  width: 100%;
  background: var(--primary-color);
  color: var(--text-light);
  border: 0;
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1.1em;
  font-family: "Georgia", serif;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: var(--spacing-sm);
}
#pleciankaKontakt form button:hover {
  background: rgb(31.2574850299, 84.7425149701, 77.1017964072);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#pleciankaKontakt form button:active {
  transform: translateY(0);
}
body.plecianki-pl.light-theme #pleciankaKontakt form button {
  color: #fff;
}
body.plecianki-pl.light-theme #pleciankaKontakt form button:hover {
  background: rgb(24.3862275449, 66.1137724551, 60.1526946108);
}

.book-section {
  text-align: center;
  margin-top: 40px;
  color: #fff;
}
.book-section .book-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}
.book-section .book-card:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.2);
}
.book-section .book-cover {
  width: 120px;
  border-radius: 10px;
}
.book-section .book-info {
  text-align: left;
}
.book-section .book-info h3 {
  margin: 0;
  color: #ffea9c;
}
.book-section .book-info .btn {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 10px;
  background: #f8b400;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
}

.book-feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8f0, #fde8e8);
  border-radius: 20px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #4b3b3b;
  text-align: left;
}
.book-feature .book-cover {
  width: 200px;
  max-width: 40%;
  border-radius: 15px;
  margin-right: 30px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.book-feature .book-cover:hover {
  transform: scale(1.05);
}
.book-feature .book-content {
  max-width: 500px;
}
.book-feature .book-content h2 {
  font-family: "Playfair Display", serif;
  color: #a03b3b;
  margin-top: 0;
}
.book-feature .book-content p {
  line-height: 1.6;
  font-size: 1.05rem;
}
.book-feature .book-content .book-link {
  display: inline-block;
  margin-top: 10px;
  background: #ffb347;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.book-feature .book-content .book-link:hover {
  background: #ff9a2e;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .book-feature {
    flex-direction: column;
  }
  .book-feature .book-cover {
    margin-right: 0;
    margin-bottom: 20px;
    width: 70%;
  }
  .book-feature .book-content {
    text-align: center;
  }
}

.book-section {
  text-align: center;
  color: #fff;
  margin: 40px auto;
  max-width: 800px;
}
.book-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffe8b0;
}
.book-section .book-card {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}
.book-section .book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}
.book-section .book-cover {
  width: 160px;
  border-radius: 10px;
  flex-shrink: 0;
}
.book-section .book-info {
  text-align: left;
  max-width: 500px;
}
.book-section .book-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  color: #ffe8b0;
}
.book-section .book-info p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 12px;
}
.book-section .book-info .btn {
  display: inline-block;
  background: #ffb347;
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.book-section .book-info .btn:hover {
  background: #ff9a2e;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .book-section .book-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .book-section .book-cover {
    width: 70%;
    margin-bottom: 15px;
  }
  .book-section .book-info {
    text-align: center;
  }
}

.bottom-navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bottom-navbar__link {
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.bottom-navbar__link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}
.bottom-navbar__separator {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.footer-section {
  max-width: 84rem;
  margin: 60px auto 0 auto;
  padding: 60px 1rem 40px;
  position: relative;
  border-radius: 1rem;
  color: rgb(209, 213, 219);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(44, 62, 80, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: inherit;
  z-index: -1;
}
.footer-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, burlywood, transparent);
}
.footer-section .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .footer-section .flex {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }
}
.footer-section {
  /* --- LOGO --- */
}
.footer-section .footer-logo-link {
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-section .footer-logo-link:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.footer-section .footer-logo-img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}
.footer-section .footer-logo-img:hover {
  transform: scale(1.05);
}
.footer-section {
  /* --- NAWIGACJA --- */
}
.footer-section .footer-nav {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  width: 12rem;
}
.footer-section .footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.footer-section .footer-nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.125rem;
  padding: 0.5rem;
  display: block;
  transition: all 0.3s ease;
}
.footer-section .footer-nav-link:hover {
  color: burlywood;
  padding-left: 0.625rem;
}
.footer-section {
  /* --- MAPA --- */
}
.footer-section .footer-map-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-section .footer-map-iframe {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border: 0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.85;
  filter: brightness(0.9) saturate(1.1);
  transition: all 0.3s ease;
}
.footer-section .footer-map-iframe:hover {
  opacity: 1;
  filter: brightness(1) saturate(1);
}
@media (max-width: 768px) {
  .footer-section .footer-map-iframe {
    max-width: 380px;
  }
}
.footer-section {
  /* --- KONTAKT --- */
}
.footer-section .footer-contact {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-section .footer-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.footer-section .footer-contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}
.footer-section .footer-contact-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-section .footer-contact-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}
.footer-section .footer-contact-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0.5rem 0;
}
.footer-section .footer-contact-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: burlywood;
  color: white;
  text-decoration: none;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}
.footer-section .footer-contact-btn:hover {
  background: brown;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}
.footer-section .footer-contact-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.footer-section .footer-contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.2rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}
.footer-section .footer-contact-social-link:hover {
  background: burlywood;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.privacy-policy-container {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
  background: transparent;
}
@media (min-width: 640px) {
  .privacy-policy-container {
    padding: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .privacy-policy-container {
    padding: 2rem;
  }
}
.privacy-policy-container .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.privacy-policy-container .content-wrapper .policy-column {
  flex: 1 1 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .privacy-policy-container .content-wrapper .policy-column {
    flex: 1 1 40%;
    text-align: left;
    align-items: stretch;
  }
}
.privacy-policy-container .content-wrapper .policy-column .policy-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.privacy-policy-container .content-wrapper .policy-column .policy-body {
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.7;
  text-align: justify;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.privacy-policy-container .content-wrapper .policy-column .policy-body:hover {
  background: rgba(255, 255, 255, 0.15);
}
.privacy-policy-container .content-wrapper .stats-column {
  flex: 1 1 100%;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  max-width: 52rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.privacy-policy-container .content-wrapper .stats-column:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
@media (min-width: 1024px) {
  .privacy-policy-container .content-wrapper .stats-column {
    flex: 1 1 50%;
  }
}

/* --- Styl tabeli statystyk --- */
.statistic-table {
  width: 100%;
  color: #fff;
  padding: 0.5rem 0;
}
.statistic-table .table-header {
  text-align: center;
  margin-bottom: 2rem;
}
.statistic-table .table-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}
.statistic-table .table-header h2 {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.85;
}
.statistic-table .table-header h2 b {
  font-weight: 700;
}
.statistic-table .table-wrapper {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.statistic-table .table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  overflow: hidden;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.statistic-table .table-wrapper table th,
.statistic-table .table-wrapper table td {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  vertical-align: middle;
}
.statistic-table .table-wrapper table thead {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.statistic-table .table-wrapper table tbody tr {
  transition: background 0.3s ease;
}
.statistic-table .table-wrapper table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}
.statistic-table .table-wrapper table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.07);
}
.statistic-table .table-wrapper table tbody tr:hover {
  background: rgba(255, 255, 255, 0.12);
}
.statistic-table .table-wrapper table tbody tr td a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.statistic-table .table-wrapper table tbody tr td a:hover {
  color: #86efac;
  text-decoration: underline;
}
.statistic-table .table-wrapper table tbody tr .positive {
  font-weight: 600;
  color: #22c55e;
}
.statistic-table .table-wrapper table tfoot {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}
.statistic-table .table-wrapper table tfoot .positive {
  color: #86efac;
}
.statistic-table .version-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 0.875rem;
  color: #ccc;
}
@media (min-width: 768px) {
  .statistic-table .version-info {
    grid-template-columns: repeat(2, 1fr);
  }
}
.statistic-table .version-info div {
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.statistic-table .google-stats table {
  background: rgba(255, 255, 255, 0.08);
}
.statistic-table .google-stats th {
  font-weight: 600;
}
.statistic-table .google-stats .positive {
  color: #16a34a;
  font-weight: 600;
}

/* ===== CARDS ===== */
.plecianki-pl .alpaca-card {
  /* Base Styles */
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius);
  padding: var(--spacing-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.plecianki-pl .alpaca-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.7;
}
.plecianki-pl .alpaca-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}
.plecianki-pl .alpaca-card:hover::before {
  opacity: 1;
}
.plecianki-pl .alpaca-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: var(--spacing-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* Top Gradient Border */
}
.plecianki-pl .alpaca-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.7;
}
.plecianki-pl .alpaca-card {
  /* Hover Effects */
}
.plecianki-pl .alpaca-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(77, 219, 255, 0.25), 0 0 25px rgba(255, 255, 255, 0.08), 0 0 10px rgba(255, 255, 255, 0.05) inset;
  border-color: rgba(77, 219, 255, 0.3);
}

/* Pozostałe elementy karty */
.plecianki-pl .alpaca-card {
  /* Typography */
}
.plecianki-pl .alpaca-card h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(77, 219, 255, 0.4);
  padding-bottom: 15px;
  text-align: center;
}
.plecianki-pl .alpaca-card p,
.plecianki-pl .alpaca-card li {
  font-size: 1.1em;
  color: var(--text-muted);
  line-height: 1.7;
}
.plecianki-pl .alpaca-card {
  /* Lists */
}
.plecianki-pl .alpaca-card ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.plecianki-pl .alpaca-card li {
  position: relative;
  padding: 8px 0 8px 25px;
  margin-bottom: 8px;
}
.plecianki-pl .alpaca-card li::before {
  content: "🦙";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
  width: 25px;
  text-align: center;
}
.plecianki-pl .alpaca-card {
  /* Card Image */
}
.plecianki-pl .alpaca-card__image {
  position: relative;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-xl);
}
.plecianki-pl .alpaca-card__image img {
  display: block;
  width: 100%;
  border-radius: calc(var(--border-radius) - 4px);
}
.plecianki-pl .alpaca-card {
  /* Card Content */
}
.plecianki-pl .alpaca-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: var(--text-light);
  padding: var(--spacing-xl);
}
.plecianki-pl .alpaca-card__header {
  margin-bottom: var(--spacing-lg);
}
.plecianki-pl .alpaca-card__title {
  font-size: clamp(1.5em, 3vw, 1.875em);
  font-weight: bold;
  font-family: "Georgia", serif;
  color: var(--primary-color);
  line-height: 1.2;
  margin: 0;
}
.plecianki-pl .alpaca-card {
  /* Card Body */
}
.plecianki-pl .alpaca-card__body {
  flex-grow: 1;
}
.plecianki-pl .alpaca-card__body p {
  line-height: 1.625;
  margin-bottom: var(--spacing-md);
  color: var(--text-muted);
  font-size: 1.1em;
}
.plecianki-pl .alpaca-card__body .no-description {
  font-style: italic;
  opacity: 0.7;
}
.plecianki-pl .alpaca-card {
  /* Traits */
}
.plecianki-pl .alpaca-card__traits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border-color);
}
.plecianki-pl .alpaca-card__traits .trait {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: 9999px;
  font-size: 0.875em;
  font-weight: 500;
  border: 1px solid var(--border-color);
}
body.plecianki-pl.light-theme .plecianki-pl .alpaca-card__traits .trait {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-light);
}

.book-section {
  text-align: center;
  margin-top: 40px;
}
.book-section .book-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.book-section .book-card {
  display: flex;
  flex-direction: column;
  width: 320px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
}
.book-section .book-card:hover {
  transform: scale(1.02);
  transition: 0.25s;
}
.book-section .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #ffc664;
  border-radius: 8px;
}

.book-single-card {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}
.book-single-card .book-cover {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.book-single-card .book-info h3 {
  margin-bottom: 10px;
}
.book-single-card .book-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}
.book-single-card .btn {
  padding: 8px 14px;
  background: #ffc664;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.alpaca-picture {
  display: block;
  position: relative;
  overflow: hidden;
  /* STAŁA WYSOKOŚĆ, ELASTYCZNA SZEROKOŚĆ */
  height: 500px; /* Stała wysokość */
  max-height: 80vh; /* Maksymalnie 70% wysokości okna */
  width: auto; /* Szerokość dostosowuje się do proporcji */
  max-width: 100%; /* Maksymalnie 90% szerokości rodzica */
  margin: 0 auto; /* Wyśrodkowanie */
  /* Dla bardzo małych ekranów */
}
@media (max-width: 30rem) {
  .alpaca-picture {
    height: 300px;
    max-height: 80vh;
  }
}
.alpaca-picture {
  /* Dla małych ekranów */
}
@media (max-width: 40.0625rem) {
  .alpaca-picture {
    height: 400px;
    max-height: 60vh;
    max-width: 95%;
  }
}
.alpaca-picture {
  /* Kontener dostosowuje się do rodzica */
}
.alpaca-picture .lit__container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto; /* Wyśrodkowanie w rodzicu */
  display: inline-block; /* Kontener dopasowuje się do zawartości */
}
.alpaca-picture {
  /* Obrazek wypełnia kontener zachowując proporcje */
}
.alpaca-picture .lit__image {
  width: 100%; /* Pełna szerokość kontenera */
  height: 100%; /* Pełna wysokość kontenera */
  object-fit: contain; /* Cały obrazek widoczny, zachowuje proporcje */
  display: block;
}
.alpaca-picture {
  /* Hover effects - TERAZ DZIAŁA NA OBRAZEK */
}
.alpaca-picture:hover .lit__image {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5), 0 0 40px rgba(78, 205, 196, 0.3), 0 0 60px rgba(69, 183, 209, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.alpacas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Karta alpaki */
.alpaca-card {
  color: white;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* efekt podobny do book-spine */
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15), inset 2px 0 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.alpaca-card:hover {
  transform: translateY(-4px);
  box-shadow: 5px 8px 25px rgba(0, 0, 0, 0.25), inset 2px 0 0 rgba(255, 255, 255, 0.12);
}
.alpaca-card lit-alpaca-animated-picture {
  width: 100%;
  height: auto;
  min-height: 300px;
  display: block;
}
.alpaca-card {
  /* kontener wewnętrzny */
}
.alpaca-card__content {
  padding: 1.5rem;
  padding-left: 1.5rem; /* odpowiednik pl-6 */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.alpaca-card__header {
  margin-bottom: 1rem; /* mb-4 */
}
.alpaca-card__title {
  font-size: 2rem; /* text-2xl */
  font-family: serif; /* font-serif */
  font-weight: 700; /* font-bold */
}
.alpaca-card__detail {
  line-height: 1.6; /* leading-relaxed */
  margin-bottom: 0.75rem; /* mb-3 */
}
.alpaca-card__no-description {
  font-style: italic;
}
.alpaca-card {
  /* cechy alpaki */
}
.alpaca-card__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; /* gap-2 */
  margin-top: 1rem; /* mt-4 */
  padding-top: 1rem; /* pt-4 */
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.alpaca-card__trait {
  background: rgba(255, 255, 255, 0.2); /* bg-white/20 */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.25rem 0.75rem; /* px-3 py-1 */
  border-radius: 999px; /* rounded-full */
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
}

.crochet-item {
  list-style: none;
  margin: 0.5rem 0;
}
.crochet-item .crochet-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  text-decoration: none;
  font-weight: 600;
  color: #333;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.crochet-item .crochet-toggle:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.crochet-item .crochet-toggle .crochet-arrow {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.crochet-toggle:hover .crochet-item .crochet-toggle .crochet-arrow {
  opacity: 1;
}

.topbar svg {
  pointer-events: none;
}
.topbar a {
  display: inline-flex;
  align-items: center;
}
.topbar a span {
  transition: color 0.3s ease;
}
.topbar .social-links a {
  transition: color 0.3s ease;
}

.christmas-song-section {
  background: var(--christmas-bg);
  border-radius: 18px;
  padding: 30px 20px;
  margin: 40px 0;
  box-shadow: var(--christmas-shadow);
}

.christmas-song-section h3,
.christmas-song-section .christmas-subtitle {
  color: var(--christmas-brown);
}

.christmas-song-section p {
  color: var(--christmas-text);
}

/* Karta audio — inna wizualnie niż piosenka */
.audio-card {
  display: flex;
  gap: 20px;
  background: var(--audio-bg);
  border: 2px solid var(--audio-border);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(120, 90, 50, 0.1);
  align-items: center;
  margin-top: 20px;
}

.audio-title {
  font-weight: 600;
  color: var(--audio-brown);
}

.audio-button button {
  background: var(--audio-button);
  color: var(--audio-brown);
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}
.audio-button button:hover {
  background: var(--audio-button-hover);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--video-bg);
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* --- BANNER INTERAKTYWNY (Zoptymalizowany) --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.plecianki-banner-mini {
  margin: var(--spacing-xl) 0;
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.banner-link-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  z-index: 1;
}

/* Stylizacja komponentu animacji i wymuszenie dopasowania obrazu */
.banner-animation {
  width: auto;
  height: 100%;
  object-fit: initial;
  display: block;
  overflow: hidden;
}

/* Głębokie wymuszenie dla obrazków generowanych przez komponent lit */
.banner-animation img,
.banner-animation picture {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Badge (odznaka) w rogu */
.banner-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: linear-gradient(270deg, rgba(190, 150, 110, 0.95), rgba(210, 180, 150, 0.95));
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

/* Overlay z wezwaniem do działania */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  z-index: 5;
  pointer-events: none;
}

.banner-cta {
  color: var(--primary-color);
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Stan Hover */
.banner-link-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.banner-link-wrapper:hover .banner-overlay {
  opacity: 1;
}

.banner-link-wrapper:hover .banner-cta {
  animation: logoGlow 2s ease-in-out infinite;
}

/* Optymalizacja dla urządzeń mobilnych */
@media (max-width: 768px) {
  .banner-link-wrapper {
    height: 250px;
  }
}
.single-offer h1 {
  font-size: 1.17em !important;
  font-weight: bold;
  margin: 1em 0;
}

.single-offer h2 {
  font-size: 1em !important;
  font-weight: bold;
  margin: 1.33em 0;
}

.winter-intro {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 3rem;
  color: #fff;
  padding: 2rem 1rem;
}
.winter-intro span {
  display: inline-block;
  font-weight: 500;
  color: #e6f3ff;
}
.winter-intro::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0.6;
}
.winter-intro::before {
  content: "❄️ 🌿";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  font-size: 1.2rem;
  opacity: 0.8;
}

.menu9-side {
  background-size: 200% 200% !important;
  animation: gradientShift 30s linear infinite !important;
}