/* ============ GLOBALNE - ROSE GOLD / WEDDING PREMIUM ============ */
:root{
  /* ROSE GOLD PALETTE */
  --rose-primary: #B76E79;
  --rose-hover: #E6A4B4;
  --rose-dark: #1C1C1C;
  --rose-light: #F9F6F7;
  --rose-border: #EADADD;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  
  /* Legacy support - mapowanie na Rose Gold */
  --pink: var(--rose-primary);
  --text: var(--text-dark);

  /* GLASS EFFECTS */
  --glass-white: rgba(249, 246, 247, 0.88);
  --glass-pink: rgba(234, 218, 221, 0.92);
  --shadow: 0 18px 50px rgba(0,0,0,0.18);
  --radius: 16px;

  /* HERO / DARK GLASS */
  --hero-glass-1: rgba(0,0,0,0.62);
  --hero-glass-2: rgba(0,0,0,0.42);
  --hero-border: rgba(255,255,255,0.16);
  --hero-shadow: 0 18px 55px rgba(0,0,0,0.28);
  --hero-text: rgba(255,255,255,0.92);
  --hero-text-soft: rgba(255,255,255,0.82);

  /* MENU - ROSE GOLD / WEDDING PREMIUM */
  --menu-bg: var(--rose-dark);
  --menu-text: var(--text-light);
  --menu-accent: var(--rose-primary);
  --menu-hover: var(--rose-hover);
  --menu-divider: #2A2A2A;
  --menu-cta-start: var(--rose-primary);
  --menu-cta-end: var(--rose-hover);
  --menu-focus: rgba(183, 110, 121, 0.4);
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

/* Tło na html i body – pełny URL, działa na wszystkich podstronach */
html {
  background-image: url("https://magnetycznafabryka.pl/zdjecietlo.jpeg?v=5");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #2a2a2a;
}

body {
  display: flex;
  flex-direction: column;
  background-image: url("https://magnetycznafabryka.pl/zdjecietlo.jpeg?v=5");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: transparent;
  position: relative;
}

@media (max-width: 900px) {
  html, body {
    background-attachment: fixed;
    background-size: 150% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 0;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 99999;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid var(--rose-primary);
  color: #000;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { left: 10px; }

/* WRAPPER */
.wrapper {
  display: flex;
  flex: 1;
  min-height: 100vh;
  position: relative;
  /* z-index usunięty - nie tworzy stacking context dla fixed sidebar na mobile */
}

/* MENU BOCZNE */
.sidebar {
  width: 220px;
  padding: 18px 12px;
  box-sizing: border-box;

  background: var(--menu-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border-right: 1px solid var(--menu-divider);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  position: sticky;
  top: 0;
  height: fit-content;
  min-height: 100vh;
  max-height: none;
  overflow: visible;
  align-self: flex-start;
  display: flex !important;
  flex-direction: column !important;
}

/* LOGO */
.logo-container {
  margin: 0 auto 20px auto;
  padding: 0;
  border: none !important;
  border-bottom: none !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  height: auto;
  min-height: 140px;
  max-height: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.logo-container * {
  border-bottom: none !important;
}

.logo-container:hover,
.logo-container:focus,
.logo-container:active,
.logo-container:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  width: 100%;
  height: auto;
  max-height: none;
  overflow: visible;
  border: none !important;
  border-bottom: none !important;
  padding: 0;
  margin: 0 auto;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.logo-link:hover {
  opacity: 0.85;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.logo-link:focus,
.logo-link:active,
.logo-link:visited,
.logo-link:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.site-logo {
  width: auto;
  height: 120px;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.site-logo:focus,
.site-logo:active,
.site-logo:focus-visible,
.site-logo:hover {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.site-logo:focus,
.site-logo:active,
.site-logo:focus-visible,
.site-logo:hover {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.sidebar nav { 
  display: block !important; 
  flex: 0 0 auto;
  min-height: 0;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  position: relative;
  width: 100%;
  flex-direction: column !important;
}

.sidebar a {
  display: block !important;
  padding: 14px 16px;
  margin: 6px 0;
  visibility: visible !important;
  opacity: 1 !important;
  cursor: pointer;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: var(--menu-text);
  font-weight: 900;
  border-radius: 12px;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
  user-select: none;
  outline: none; /* Usuń outline dla kliknięć/tapów */
  -webkit-tap-highlight-color: transparent; /* Usuń podświetlenie na iOS */
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Linki w menu bocznym – ujednolicona wielkość i odstępy na wszystkich podstronach */
.sidebar nav a {
  font-size: 15px;
  line-height: 1.4;
  min-height: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.sidebar a:hover {
  background: var(--menu-hover);
  color: var(--menu-text);
  transform: translateY(-1px);
}

.sidebar a.active {
  background: var(--menu-accent);
  color: var(--menu-text);
  transform: translateY(-1px);
}

/* Logo-link NIGDY nie ma tła, nawet z klasą .active */
.sidebar a.logo-link,
.sidebar a.logo-link.active,
.sidebar a.logo-link:hover,
.sidebar a.logo-link:focus,
.sidebar a.logo-link:active,
.sidebar a.logo-link:visited,
.sidebar a.logo-link:focus-visible {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* CTA Button w sidebarze (jeśli jest) */
.sidebar button,
.sidebar .cta-button,
.sidebar [class*="cta"],
.sidebar [class*="button"] {
  background: linear-gradient(135deg, var(--menu-cta-start), var(--menu-cta-end));
  color: var(--menu-text);
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

.sidebar button:hover,
.sidebar .cta-button:hover,
.sidebar [class*="cta"]:hover,
.sidebar [class*="button"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(183, 110, 121, 0.4);
}

.sidebar button:active,
.sidebar .cta-button:active,
.sidebar [class*="cta"]:active,
.sidebar [class*="button"]:active {
  transform: translateY(0);
}

/* Usuń outline dla :focus (klik/tap) - zachowaj tylko dla klawiatury */
.sidebar a:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Przywróć widoczny focus TYLKO dla klawiatury (a11y) */
.sidebar a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Wyklucz logo-link z .sidebar a:focus-visible - logo NIGDY nie ma obramowania */
.sidebar a.logo-link:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Logo NIGDY nie ma obramowania - wyjątek od focus-visible */
.logo-container,
.logo-link,
.logo-link:focus,
.logo-link:active,
.logo-link:visited,
.logo-link:focus-visible,
.logo-link:hover,
.logo-link.active,
.site-logo,
.site-logo:focus,
.site-logo:active,
.site-logo:focus-visible,
.logo-container:focus,
.logo-container:active,
.logo-container:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(183, 110, 121, 0.35);
  outline-offset: 2px;
}

/* ===== USUŃ OUTLINE DLA SEKCJI I NAGŁÓWKÓW (focus ustawiany przez JS) ===== */
/* Usuń outline dla :target (hash navigation) */
:target {
  outline: none;
  box-shadow: none;
}

section:target,
h1:target,
h2:target,
h3:target,
h4:target,
h5:target,
h6:target {
  outline: none;
  box-shadow: none;
}

/* Usuń outline dla focus na sekcjach i nagłówkach (focus ustawiany przez JS po nawigacji) */
section:focus,
section:focus-visible,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
h1:focus-visible,
h2:focus-visible,
h3:focus-visible,
h4:focus-visible,
h5:focus-visible,
h6:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* ========= HAMBURGER MENU (MOBILE) ========= */
.menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: var(--menu-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--menu-divider);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
  touch-action: manipulation;
  outline: none; /* Usuń outline dla kliknięć/tapów */
  -webkit-tap-highlight-color: transparent; /* Usuń podświetlenie na iOS */
}

.menu-toggle:hover {
  background: var(--menu-hover);
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
}

/* Usuń outline dla :focus (klik/tap) - zachowaj tylko dla klawiatury */
.menu-toggle:focus:not(:focus-visible) {
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Przywróć widoczny focus TYLKO dla klawiatury (a11y) */
.menu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 5px;
}

.menu-toggle-icon span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--menu-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: all;
}

/* Na mobile: overlay nie blokuje kliknięć w sidebarze dzięki wyższemu z-index sidebaru */
@media (max-width: 900px) {
  /* Sidebar (z-index: 10001) jest wyżej niż overlay (z-index: 9999) */
  /* Overlay ma pointer-events: all, ale sidebar przechwytuje tapy dzięki wyższemu z-index */
  /* Dodatkowo: sidebar ma pointer-events: auto, więc linki są klikalne */
}

/* GŁÓWNA CZĘŚĆ */
.main {
  flex: 1;
  padding: 30px;
  box-sizing: border-box;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Upewnij się, że na stronach bloga main jest zawsze widoczny */
body:has(.blog-post) .main,
body:has(.blog-listing) .main {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* SEKCJE – domyślnie ukryte, pokazywane przez JS */
section[role="region"] {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  border-radius: var(--radius);
  padding: 34px;
  font-size: 18px;
  line-height: 1.75;
  box-sizing: border-box;

  background: linear-gradient(180deg, var(--hero-glass-1) 0%, var(--hero-glass-2) 100%);
  border: 1px solid var(--hero-border);
  box-shadow: var(--hero-shadow);
  color: var(--hero-text);

  animation: fadeIn 180ms ease-in-out;
}

/* Sekcje widoczne przez inline style ustawiony przez JavaScript */
section[role="region"][style*="display: flex"],
section[role="region"][style*="display:flex"],
section[role="region"][style*="display: block"],
section[role="region"][style*="display:block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

section[role="region"]#witamy[style*="display: flex"],
section[role="region"]#witamy[style*="display:flex"] {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Sekcja "Jak to działa" - pokazywana przez JavaScript inline style */
section[role="region"]#jakdziala[style*="display: block"],
section[role="region"]#jakdziala[style*="display:block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Sekcja "Kim jesteśmy" - pokazywana przez JavaScript inline style */
section[role="region"]#kimjestesmy[style*="display: block"],
section[role="region"]#kimjestesmy[style*="display:block"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

section h2 {
  text-align: center;
  color: var(--pink);
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

section h1 {
  text-align: center;
  color: var(--pink);
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Sekcja FAQ - wszystko wyrównane do lewej */
#faq {
  text-align: left !important;
}

#faq h2 {
  text-align: center;
}

#faq .section-lead {
  text-align: center;
}

#faq .faq-container {
  text-align: left !important;
}

#faq .faq-item {
  text-align: left !important;
}

#faq .faq-question {
  text-align: left !important;
}

#faq .faq-answer,
#faq .faq-answer * {
  text-align: left !important;
}

.section-lead{
  text-align: center;
  margin: 0 0 18px 0;
  color: var(--hero-text-soft);
  font-size: 18px;
}

/* HERO – WITAMY */
#witamy {
  /* Sekcja ciągłego przewijania - zawsze widoczna */
  justify-content: center;
  align-items: center; /* Wycentrowanie pionowe */
  padding-top: clamp(80px, 12vh, 120px); /* Safe area dla hamburgera (48px + 16px + margin) */
  padding-bottom: 60px;

  text-align: center;
  min-height: 100vh;
  min-height: 100svh; /* Safe viewport height dla mobile (iOS notch) */
  width: 100%;

  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  padding-left: 0;
  padding-right: 0;
  position: relative;
}

/* Overlay na hero dla lepszej czytelności tekstu na tle */
#witamy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* Ciemniejszy overlay dla lepszego kontrastu */
  z-index: 0;
  pointer-events: none; /* Nie blokuje kliknięć */
}

#witamy .text-container {
  position: relative;
  z-index: 1; /* Nad overlay */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Wycentrowanie pionowe contentu */

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.72) 0%, /* Ciemniejsze tło dla lepszego kontrastu */
    rgba(0,0,0,0.55) 100%
  );

  padding: 44px 40px;
  border-radius: 18px;

  width: min(920px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  margin: 0 auto;
  box-sizing: border-box;

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 55px rgba(0,0,0,0.25);
  
  /* Zapobieganie obcinaniu tekstu */
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Wrapper brandingu - domyślnie transparent dla desktop */
#witamy .hero-brand {
  display: block;
  width: 100%;
}

#witamy h1 {
  color: var(--pink);
  margin: 0 0 14px 0;
  text-shadow: 0 8px 22px rgba(0,0,0,0.35);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  outline: none; /* Usuwa obwódkę focus */
}

#witamy h1:focus {
  outline: none; /* Usuwa obwódkę focus */
}

#witamy h1:focus-visible {
  outline: none; /* Usuwa obwódkę focus nawet przy focus-visible */
}

#witamy h1 .h1-main {
  font-size: clamp(16px, 5vw, 60px);
  display: block;
  line-height: 1.1;
}

#witamy h1 .h1-main-logo {
  display: block;
  height: clamp(32px, 10vw, 120px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  line-height: 1.1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)); /* Drop shadow dla kontrastu na tle */
}

/* Tagline bezpośrednio pod logo */
#witamy h1 .h1-subtitle {
  font-size: clamp(12px, 3vw, 31px);
  display: block;
  color: #fff;
  opacity: 1;
  font-weight: 600;
  letter-spacing: clamp(0px, 0.14vw, 0.72px);
  line-height: 1.2;
  margin-top: 8px; /* Odstęp bezpośrednio pod logo */
}

#witamy p {
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;
  margin: 0 0 26px 0;
  opacity: 0.95;
  max-width: 780px;
}

/* CTA */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}

.cta-buttons button {
  padding: 16px 34px;
  font-size: 18px;
  border: none;
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  box-shadow: 0 14px 30px rgba(183, 110, 121, 0.25);
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
  /* Mobile: bezpieczna szerokość, nie wychodzi poza ekran */
  width: 100%;
  max-width: min(92vw, 380px);
  min-height: 48px; /* Min tap target dla mobile */
}

.cta-buttons button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(183, 110, 121, 0.30);
}

.cta-termin {
  display: inline-block;
  margin: 0 auto;
  padding: 16px 34px;
  font-size: 18px;
  border: 2px solid var(--rose-primary);
  border-radius: 16px;
  font-weight: 900;
  cursor: pointer;

  background: rgba(255,255,255,0.95);
  color: var(--pink);

  transition: transform 140ms ease, box-shadow 140ms ease;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
  /* Mobile: bezpieczna szerokość, nie wychodzi poza ekran */
  width: 100%;
  max-width: min(92vw, 380px);
  min-height: 48px; /* Min tap target dla mobile */
}

.cta-termin:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

#witamy .cta-buttons{ margin-top: 16px; margin-bottom: 16px; }
#witamy .cta-termin{ display: block; margin-top: 0; }

/* LISTY – kafelki */
section[role="region"]:not(#witamy) ul{
  padding-left: 0;
  list-style: none;
  margin: 16px 0 0 0;
}
section[role="region"]:not(#witamy) li{
  padding: 12px 14px;
  margin: 10px 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Paragrafy w sekcjach */
section[role="region"]:not(#witamy):not(#jakdziala):not(#kimjestesmy):not(#faq) p {
  text-align: center !important;
  color: var(--hero-text-soft);
  line-height: 1.75;
  margin: 0 auto 18px auto !important;
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* FAQ - paragrafy wyrównane do lewej */
#faq p {
  text-align: left !important;
  margin: 0 0 12px 0 !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: auto !important;
}

#faq .section-lead {
  text-align: center !important;
  margin: 0 auto 18px auto !important;
}

/* Specjalny styl dla sekcji "Kim jesteśmy" - wszystko wyśrodkowane */
#kimjestesmy {
  text-align: center !important;
}

#kimjestesmy > * {
  text-align: center !important;
}

#kimjestesmy p {
  text-align: center !important;
  margin: 0 auto 22px auto !important;
  max-width: 950px;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
  display: block;
  padding: 0 12px;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.75;
  font-size: 17px;
}

#kimjestesmy p:last-of-type {
  margin-bottom: 0;
}

#kimjestesmy h2 {
  text-align: center !important;
  margin: 0 auto 20px auto !important;
  width: 100%;
}

#kimjestesmy h3 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  width: 100%;
}


#kimjestesmy .cta-buttons {
  justify-content: center !important;
  margin-left: auto;
  margin-right: auto;
}

/* Lista "Co nas wyróżnia?" - zawsze wyśrodkowana */
.why-us-list {
  max-width: 600px;
  min-width: 500px;
  width: auto;
  margin: 28px auto !important;
  text-align: center !important;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

.why-us-list li {
  padding: 14px 24px;
  margin: 12px auto;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--hero-text-soft);
  line-height: 1.7;
  font-size: 17px;
  transition: background 0.15s ease, border-color 0.15s ease;
  text-align: center !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 700px) {
  .why-us-list {
    min-width: auto !important;
    width: calc(100% - 40px) !important;
    max-width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .why-us-list li {
    width: 100%;
    max-width: 100%;
  }
}

.why-us-list li:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.20);
}

.why-us-conclusion {
  font-weight: 700 !important;
  color: var(--hero-text) !important;
  margin-top: 28px !important;
  margin-bottom: 18px !important;
  font-size: 19px;
  text-align: center !important;
}

/* PAKIETY */
/* ===== PRICING CARDS (KARTY OFERT) ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.32);
}

.pricing-card-featured {
  transform: scale(1.02);
  border: 2px solid var(--rose-primary);
  box-shadow: 0 20px 50px rgba(183, 110, 121, 0.2), 0 18px 45px rgba(0,0,0,0.25);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 26px 60px rgba(183, 110, 121, 0.25), 0 24px 55px rgba(0,0,0,0.32);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(183, 110, 121, 0.4);
  z-index: 1;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pricing-card-header h3 {
  color: var(--pink);
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.pricing-card-magnets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.pricing-magnets-number {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pricing-magnets-label {
  font-size: 19px;
  color: var(--hero-text-soft);
  font-weight: 700;
  text-transform: lowercase;
}

.pricing-card-time {
  font-size: 15px;
  color: var(--hero-text-soft);
  font-weight: 700;
  margin-top: 8px;
}

.pricing-card-price {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.pricing-price-label {
  flex-basis: 100%;
  font-size: 0.9rem;
  color: var(--hero-text-soft);
  font-weight: 600;
  margin-bottom: 2px;
}

.pricing-price-amount {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pricing-price-currency {
  font-size: 20px;
  color: var(--hero-text-soft);
  font-weight: 700;
}

.pricing-card-addon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  text-align: center;
}

.pricing-addon-label {
  font-size: 13px;
  color: var(--hero-text-soft);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pricing-addon-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.pricing-addon-quantity {
  font-size: 15px;
  color: var(--hero-text);
  font-weight: 800;
}

.pricing-addon-price {
  font-size: 18px;
  color: #fff;
  font-weight: 900;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex: 1;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--hero-text);
  font-size: 15px;
  line-height: 1.5;
}

.pricing-card-features li:last-child {
  margin-bottom: 0;
}

.pricing-feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(183, 110, 121, 0.3);
}

.pricing-card-cta {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
  margin-top: auto;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
}

.pricing-card-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
  transform: translateY(-2px);
}

.pricing-card-cta:focus-visible {
  outline: 3px solid rgba(183, 110, 121, 0.5);
  outline-offset: 2px;
}

.pricing-microcopy {
  text-align: center;
  color: var(--hero-text-soft);
  font-size: 15px;
  margin-top: 32px;
  font-weight: 700;
  font-style: italic;
}

/* Tablet */
@media (max-width: 980px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .pricing-card-featured {
    transform: scale(1);
  }
  
  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }
}

/* Mobile */
@media (max-width: 700px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }
  
  .pricing-card {
    padding: 28px 20px;
  }
  
  .pricing-card-header h3 {
    font-size: 24px;
  }
  
  .pricing-magnets-number {
    font-size: 42px;
  }
  
  .pricing-price-amount {
    font-size: 38px;
  }
  
  .pricing-card-features li {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .pricing-feature-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  .pricing-card-cta {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .pricing-microcopy {
    font-size: 14px;
    margin-top: 24px;
  }
}

/* Stare klasy - zachowane dla kompatybilności (jeśli są używane gdzie indziej) */
.pakiety-wrap{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 980px){
  .pakiety-wrap{ grid-template-columns: 1fr; }
}

.pakiet {
  background: rgba(255,255,255,0.10);
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.pakiet h3 {
  color: var(--pink);
  margin: 0 0 6px 0;
  letter-spacing: 0.2px;
}
.pakiet p {
  margin: 0;
  color: var(--hero-text-soft);
  font-weight: 800;
}

.dodatek {
  background: rgba(255,255,255,0.10);
  border-left: 6px solid var(--rose-primary);
  padding: 18px 18px;
  margin-top: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.14);
}
.dodatek h3{ margin: 0 0 8px 0; color: var(--pink); }
.dodatek p{ margin: 6px 0; color: var(--hero-text-soft); font-weight: 700; }

/* ===== JAK TO DZIAŁA ===== */
#jakdziala {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 30%,
    rgba(0,0,0,0.5) 100%
  );
  padding: 80px 20px 100px 20px;
  margin-top: 0;
  position: relative;
  transition: all 0.5s ease;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

#jakdziala::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(183, 110, 121, 0.4) 20%,
    rgba(255,255,255,0.3) 50%,
    rgba(183, 110, 121, 0.4) 80%,
    transparent 100%
  );
  box-shadow: 0 2px 8px rgba(183, 110, 121, 0.2);
}

#jakdziala h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.how-it-works {
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  align-items: stretch;
}

.how-it-works-step {
  display: flex;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px 24px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  min-height: 100px;
  width: 100%;
}

.how-it-works-step:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(183, 110, 121, 0.4);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(183, 110, 121, 0.15);
}

.step-number {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  border-radius: 50%;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  align-self: center;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-height: 60px;
}

.step-content h3 {
  color: var(--pink);
  margin: 0 0 12px 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.3;
  text-align: left;
}

.step-content p {
  margin: 0;
  padding: 0;
  color: var(--hero-text-soft);
  line-height: 1.75;
  font-size: 17px;
  text-align: left !important;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}



@media (max-width: 900px) {
  /* Sekcja centruje zawartość */
  #jakdziala {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* Heading alignment - unified width */
  #jakdziala h2 {
    text-align: center;
    width: 100%;
    max-width: min(92vw, 520px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    box-sizing: border-box;
  }

  /* Kontener kroków - unified width, bez dodatkowego paddingu */
  #jakdziala .how-it-works {
    max-width: min(92vw, 520px);
    width: 100%;
    margin: 0 auto 20px auto;
    padding: 0;
    align-items: stretch;
    box-sizing: border-box;
  }
  
  /* Kafelki - pełna szerokość kontenera, spójne paddingi */
  #jakdziala .how-it-works-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 18px 20px;
    align-items: center;
    min-height: auto;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  
  .how-it-works-step:hover {
    transform: translateX(8px);
  }
  
  .step-number {
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    font-size: 26px;
    align-self: center;
  }
  
  .step-content {
    min-height: auto;
    text-align: left;
  }
  
  .step-content h3 {
    font-size: 22px;
    text-align: left;
    margin: 0 0 10px 0;
  }
  
  .step-content p {
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
  }

  /* CTA container - aligned with steps, unified width */
  #jakdziala .cta-buttons {
    width: 100%;
    max-width: min(92vw, 520px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
    gap: 14px;
  }

  /* CTA buttons - pełna szerokość kontenera */
  #jakdziala .cta-buttons button {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
  
}

@media (max-width: 480px) {
  /* Zachowaj unified container width */
  #jakdziala {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Unified width dla wszystkich elementów */
  #jakdziala h2,
  #jakdziala .how-it-works,
  #jakdziala .cta-buttons {
    max-width: min(92vw, 520px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Kafelki - spójne paddingi */
  #jakdziala .how-it-works-step {
    padding: 16px 18px;
    gap: 14px;
    flex-direction: row;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    font-size: 24px;
    align-self: center;
  }
  
  .step-content {
    text-align: left;
  }
  
  .step-content h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
    text-align: left;
  }
  
  .step-content p {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
  }
  
}

/* ===== SKLEP (ZAMÓW) ===== */
.order-box{
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.order-summary{
  text-align: center;
  color: var(--hero-text-soft);
  font-weight: 900;
  margin-top: 4px;
}
.order-summary strong{ color: var(--pink); }

.min-warning{
  margin: 12px auto 0 auto;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(183, 110, 121, 0.18);
  border: 1px solid rgba(255,255,255,0.14);
  max-width: 820px;
  text-align: center;
}

.upload-row{
  display: grid;
  gap: 8px;
  width: min(820px, 100%);
  margin: 14px auto 0 auto;
  text-align: left;
}
.upload-row label{
  font-weight: 900;
  color: #fff;
  display: grid;
  gap: 6px;
  /* Zapobieganie double-tap zoom na mobile */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Input file w upload-row - zapobieganie zoom */
.upload-row input[type="file"] {
  font-size: 16px; /* >= 16px zapobiega auto-zoom na iOS Safari */
  touch-action: manipulation;
}

.crop-wrap{
  display: none;
  gap: 12px;
  width: min(920px, 100%);
  margin: 16px auto 0 auto;
}
.crop-stage{
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.14);
}
.crop-stage img{
  width: 100%;
  height: 520px;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

@media (max-width: 700px){
  .crop-stage img{
    height: 380px;
    max-height: 380px;
  }
}

.crop-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.crop-actions button{
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
}
.crop-actions button.primary{
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  border-color: rgba(183, 110, 121, 0.55);
}

.order-items{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.order-item{
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}
.order-thumb{
  width: 92px;
  height: 92px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.order-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.order-meta{ display: grid; gap: 8px; }

.order-line{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.qty-row{ display: flex; align-items: center; gap: 8px; }
.qty-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  line-height: 40px;
  text-align: center;
  padding: 0;
}
.qty-input{
  width: 86px;
  text-align: center;
  font-weight: 900;
  font-size: 16px; /* >= 16px zapobiega auto-zoom na iOS Safari */
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  touch-action: manipulation; /* Zapobieganie double-tap zoom */
}
.item-price{
  color: var(--hero-text-soft);
  font-weight: 900;
  white-space: nowrap;
}
.item-price strong{ color: var(--pink); }

.item-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.item-actions button{
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
}
.item-actions button.danger{
  background: rgba(183, 110, 121, 0.18);
  border-color: rgba(255,255,255,0.14);
}

.checkout-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 980px){
  .checkout-grid{ grid-template-columns: 1fr; }
}

.card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 16px;
}

.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px){
  .form-grid{ grid-template-columns: 1fr; }
}

.field{
  display: grid;
  gap: 6px;
}
.field label{
  font-weight: 900;
  color: #fff;
}
.field input, .field textarea, .field select{
  padding: 12px 12px;
  font-size: 16px; /* >= 16px zapobiega auto-zoom na iOS Safari przy focus */
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  border: 1px solid var(--rose-border);
  color: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  /* Zapobieganie double-tap zoom */
  touch-action: manipulation;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--rose-primary);
}
.field input::placeholder, .field textarea::placeholder{
  color: rgba(255,255,255,0.68);
}

/* Formularz kontaktowy - zapobieganie auto-zoom na iOS Safari */
#kontakt input[type="text"],
#kontakt input[type="email"],
#kontakt input[type="tel"],
#kontakt textarea {
  font-size: 16px !important; /* >= 16px zapobiega auto-zoom na iOS Safari przy focus */
  touch-action: manipulation; /* Zapobieganie double-tap zoom */
}

.summary-lines{
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
}
.summary-line{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.summary-line strong{ color: var(--pink); }
.summary-total{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(183, 110, 121, 0.18);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  font-weight: 1000;
  letter-spacing: 0.2px;
  color: #fff;
}

.buy-btn{
  margin-top: 12px;
  width: 100%;
  padding: 16px 16px;
  font-size: 18px;
  border: none;
  border-radius: 16px;
  font-weight: 1000;
  cursor: pointer;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  box-shadow: 0 14px 30px rgba(183, 110, 121, 0.22);
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
}
.buy-btn:hover{ 
  transform: translateY(-2px); 
  filter: brightness(1.05);
  box-shadow: 0 18px 36px rgba(183, 110, 121, 0.28); 
}
.buy-btn:disabled{ opacity: 0.55; cursor: not-allowed; transform: none !important; }

.status-box{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  display:none;
}

/* GALERIA */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  touch-action: manipulation;
}

.gallery-item:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 100%);
  background-size: 200% 100%;
  animation: gallery-shimmer 1.5s infinite;
  z-index: 1;
}

@keyframes gallery-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image-loaded {
  opacity: 1;
}

.gallery-image-error {
  opacity: 0.5;
}

.gallery-item-error {
  cursor: not-allowed;
}

.gallery-loading,
.gallery-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.gallery-error {
  color: rgba(255,100,100,0.9);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 9999;
  background: rgba(0,0,0,0.82);
}

.lightbox.open { display: flex; }

.lb-img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);
}

.lb-close,
.lb-prev,
.lb-next,
.lb-counter {
  position: absolute;
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 140ms ease, background 140ms ease;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}

.lb-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  padding: 0;
}

.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 40px;
  line-height: 52px;
  text-align: center;
  padding: 0;
}

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

.lb-counter {
  top: 18px;
  left: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  cursor: default;
}

footer {
  background: var(--rose-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  padding: 18px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--rose-border);
  color: var(--text-dark);
}

footer a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.15s ease;
  margin: 0 8px;
}

footer a:hover {
  color: var(--rose-hover);
  text-decoration: underline;
}

.footer-contact {
  margin-top: 12px;
  font-size: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-contact span {
  color: rgba(255,255,255,0.9);
}

/* ===== RODO SECTION ===== */
.rodo-section {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.75) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 40px 20px;
  margin-top: 0;
  text-align: left;
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  line-height: 1.7;
  display: none; /* Ukryte domyślnie */
}

.rodo-section.show {
  display: block; /* Pokazane po kliknięciu */
}

.rodo-section h3 {
  color: var(--pink);
  text-align: center;
  font-size: 28px;
  margin: 0 0 8px 0;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.rodo-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin: 0 0 8px 0;
  font-weight: 800;
}

.rodo-date {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin: 0 0 32px 0;
  font-weight: 600;
}

.rodo-content {
  max-width: 900px;
  margin: 0 auto;
}

.rodo-content h4 {
  color: var(--pink);
  font-size: 20px;
  margin: 28px 0 12px 0;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.rodo-content h5 {
  color: rgba(255,255,255,0.98);
  font-size: 17px;
  margin: 20px 0 8px 0;
  font-weight: 800;
  letter-spacing: 0.15px;
}

.rodo-content p {
  margin: 0 0 14px 0;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
}

.rodo-content ul {
  margin: 12px 0 18px 0;
  padding-left: 28px;
  list-style-type: disc;
  color: rgba(255,255,255,0.95);
}

.rodo-content ul li {
  margin: 8px 0;
  line-height: 1.7;
}

.rodo-content a {
  color: var(--pink);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.rodo-content a:hover {
  color: var(--rose-hover);
}

.rodo-content strong {
  color: rgba(255,255,255,1);
  font-weight: 900;
}

/* RODO Checkbox w formularzu */
label[for="contactRodo"],
label:has(#contactRodo) {
  user-select: none;
}

label:has(#contactRodo) input[type="checkbox"] {
  accent-color: var(--pink);
}

label:has(#contactRodo) a {
  transition: color 0.15s ease;
}

label:has(#contactRodo) a:hover {
  color: var(--rose-hover);
}

@media (max-width: 700px) {
  .rodo-section {
    padding: 28px 16px;
    font-size: 14px;
  }

  .rodo-section h3 {
    font-size: 24px;
  }

  .rodo-content h4 {
    font-size: 18px;
    margin: 24px 0 10px 0;
  }

  .rodo-content ul {
    padding-left: 24px;
  }
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.faq-item {
  margin-bottom: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.faq-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--hero-text);
  font-size: 18px;
  font-weight: 900;
  transition: color 0.15s ease;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
}

.faq-question:hover {
  color: var(--rose-primary);
}

.faq-question span:first-child {
  flex: 1;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--pink);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  text-align: left !important;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
  text-align: left !important;
}

.faq-answer p {
  color: var(--hero-text-soft);
  line-height: 1.7;
  margin: 0 0 12px 0;
  font-size: 16px;
  text-align: left !important;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  color: var(--hero-text-soft);
  line-height: 1.8;
  margin: 12px 0;
  padding-left: 24px;
  text-align: left !important;
}

.faq-answer li {
  margin-bottom: 8px;
  color: var(--hero-text-soft);
  text-align: left !important;
}

/* Tablet - logo 90px */
@media (max-width: 1024px) and (min-width: 769px) {
  .site-logo {
    height: 90px !important;
  }
  
  .logo-container {
    min-height: 110px !important;
  }
}

/* ===== MOBILE: POWIĘKSZENIE LOGO W SEKCJI HERO ===== */
@media (max-width: 768px) {
  /* KROK B: Zresetuj wrapper brandingu, żeby nie dziedziczył ograniczeń */
  #witamy .hero-brand {
    all: unset; /* Resetuje wszystkie ograniczenia z grid/flex/header */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: fit-content !important;
    box-sizing: border-box !important;
  }
  
  /* KROK C: Logo w hero – duży rozmiar na mobile (jak #heroLogo: 88vw) */
  #witamy .hero-brand img[src*="logotemat"],
  #witamy .hero-brand img[src*="logotemat.png"],
  #witamy .hero-brand .h1-main-logo {
    width: 88vw !important;
    max-width: min(420px, 92vw) !important;
    height: auto !important;
    min-width: unset !important;
    transform: none !important;
    display: block !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: auto !important;
    object-fit: contain !important;
  }
  
  /* h1 wewnątrz hero-brand - usuń ograniczenia, ten sam kolor co na desktop (różowy) */
  #witamy .hero-brand h1 {
    all: unset !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: fit-content !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    color: var(--pink) !important;
  }
  
  /* text-container - pozwól na większe logo */
  #witamy .text-container {
    overflow: visible !important;
  }
}

@media (max-width: 900px) {
  .wrapper {
    flex-direction: column;
  }

  /* === HAMBURGER BUTTON === */
  .menu-toggle {
    display: block;
  }

  /* === MENU MOBILE: OFF-CANVAS === */
  .sidebar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 280px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    z-index: 10001 !important; /* Wyżej niż overlay (9999) - oba fixed pod body, bez wrapper stacking context */
    box-sizing: border-box;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    padding: 18px 12px;
    margin: 0;
    background: var(--menu-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-right: 1px solid var(--menu-divider);
    box-shadow: 2px 0 20px rgba(0,0,0,0.4);
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    pointer-events: none; /* Zamknięty: nie przechwytuj klików – inaczej warstwa sidebara (z-index 10001, po przycisku w DOM) łapie tap zamiast .menu-toggle na mobile */
  }

  .sidebar.open {
    transform: translateX(0) !important;
    pointer-events: auto; /* Otwarty: linki i overlay muszą być klikalne */
  }

  /* Identyczna reguła po id – wyższa specyficzność, gwarancja że nic nie nadpisze */
  #sidebar.open {
    transform: translateX(0) !important;
  }

  body.menu-open {
    overflow: hidden;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    min-height: 90px;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .site-logo {
    height: 70px;
    width: auto;
    max-width: none;
    max-height: none;
    margin: 0 auto;
  }
    
    /* Scrollbar - widoczny dla użytkownika */
    scrollbar-width: thin;
    scrollbar-color: var(--menu-accent) var(--menu-divider);
  }
  
  .sidebar::-webkit-scrollbar {
    height: 6px;
    width: 6px;
  }
  
  .sidebar::-webkit-scrollbar-track {
    background: var(--menu-divider);
    border-radius: 999px;
  }
  
  .sidebar::-webkit-scrollbar-thumb {
    background: var(--menu-accent);
    border-radius: 999px;
  }
  
  .sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--menu-hover);
  }

  .sidebar nav {
    display: block !important;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .sidebar a {
    display: block !important;
    padding: 14px 16px;
    margin: 6px 0;
    white-space: normal;
    border-radius: 12px;
    font-weight: 900;
    background: transparent;
    color: var(--menu-text);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center;
  }
  
  .sidebar nav a {
    font-size: 14px;
    line-height: 1.4;
    min-height: 44px;
  }
  
  .sidebar a:hover {
    background: var(--menu-hover);
    color: var(--menu-text);
  }
  
  .sidebar a.active {
    background: var(--menu-accent);
    color: var(--menu-text);
  }


  .main{
    padding: 16px;
    overflow-x: hidden;  /* Zapobieganie przewijania w bok całego main */
    width: 100%;
    box-sizing: border-box;
  }

  #witamy {
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px); /* Safe area + hamburger (48px + 16px + margin) */
    padding-bottom: 50px;
    min-height: 100svh; /* Safe viewport height dla mobile */
    align-items: center; /* Wycentrowanie pionowe */
  }
  
  #witamy .text-container {
    padding: 32px 20px; /* Większy padding dla lepszego układu na mobile */
    width: min(calc(100vw - 40px), 100%);
    max-width: calc(100vw - 40px);
  }

  #witamy h1 {
    font-size: clamp(22px, 8vw, 44px);
    padding: 0 4px;
  }
  
  /* CTA buttons na mobile */
  .cta-buttons {
    gap: 12px;
    width: 100%;
  }
  
  .cta-buttons button,
  .cta-termin {
    width: 100%;
    max-width: min(92vw, 380px);
    min-height: 48px;
  }
  
  #witamy h1 .h1-main {
    font-size: clamp(28px, 10vw, 56px);
  }
  
  /* Logo w hero – ten sam rozmiar co na desktop */
  #witamy h1 .h1-main-logo {
    height: clamp(32px, 10vw, 120px);
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  }
  
  /* Tagline – ten sam kolor co na desktop */
  #witamy h1 .h1-subtitle {
    font-size: clamp(16px, 4.5vw, 20px);
    font-weight: 500;
    opacity: 1;
    margin-top: 8px;
    color: #fff;
  }
  
  #witamy p {
    font-size: clamp(16px, 2.2vw, 20px);
    color: #fff;
  }
}

/* Małe telefony - poprawki menu i nagłówka */
@media (max-width: 480px){
  .sidebar {
    padding: 12px;
  }
  
  .sidebar nav {
    gap: 6px;
  }
  
  .sidebar nav a {
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.4;
  }
  
  #witamy h1 {
    font-size: clamp(15px, 4.8vw, 24px);
    letter-spacing: 0px;
    line-height: 1.08;
    padding: 0;
    margin: 0 0 10px 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  
  #witamy h1 .h1-main {
    font-size: clamp(20px, 6.5vw, 32px);
  }
  
  /* Logo większe na małych telefonach */
  #witamy h1 .h1-main-logo {
    height: clamp(32px, 10vw, 120px);
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  }
  
  /* Tagline bezpośrednio pod logo */
  #witamy h1 .h1-subtitle {
    font-size: clamp(16px, 4.5vw, 20px);
    font-weight: 500;
    opacity: 1;
    margin-top: 8px;
    color: #fff;
  }
  
  #witamy {
    padding-top: calc(env(safe-area-inset-top, 0px) + 80px); /* Safe area + hamburger */
    padding-bottom: 40px;
    min-height: 100svh; /* Safe viewport height */
    align-items: center; /* Wycentrowanie pionowe */
  }
  
  #witamy .text-container {
    padding: 28px 16px; /* Większy padding dla lepszego układu */
    width: min(calc(100vw - 32px), 100%);
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  #witamy p {
    font-size: clamp(14px, 2vw, 18px);
    padding: 0 2px;
    box-sizing: border-box;
    color: #fff;
  }
  
  footer {
    padding: 14px 12px;
    font-size: 14px;
  }
  
  .footer-contact {
    font-size: 14px;
    gap: 12px;
    margin-top: 10px;
  }
  
  .faq-container {
    padding: 0 12px;
  }
  
  .faq-question {
    padding: 16px 18px;
    font-size: 16px;
  }
  
  .faq-answer {
    padding: 0 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
}

/* Bardzo małe telefony */
@media (max-width: 360px){
  .sidebar {
    padding: 12px 8px;
  }
  
  .sidebar nav {
    gap: 4px;
  }
  
  .sidebar nav a {
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.4;
    min-width: auto;
  }
  
  #witamy h1 {
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: -0.2px;
    line-height: 1.05;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0;
    margin: 0 0 8px 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  #witamy h1 .h1-main {
    font-size: clamp(18px, 5.5vw, 24px);
  }
  
  /* Logo większe na bardzo małych telefonach */
  #witamy h1 .h1-main-logo {
    height: clamp(32px, 10vw, 120px);
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  }
  
  /* Tagline bezpośrednio pod logo */
  #witamy h1 .h1-subtitle {
    font-size: clamp(16px, 4.5vw, 20px);
    font-weight: 500;
    opacity: 1;
    margin-top: 8px;
    color: #fff;
  }
  
  #witamy {
    padding-top: calc(env(safe-area-inset-top, 0px) + 72px); /* Safe area + hamburger */
    padding-bottom: 32px;
    min-height: 100svh; /* Safe viewport height */
    align-items: center; /* Wycentrowanie pionowe */
  }
  
  #witamy .text-container {
    padding: 24px 12px; /* Większy padding dla lepszego układu */
    width: min(calc(100vw - 24px), 100%);
    max-width: calc(100vw - 24px);
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  #witamy p {
    font-size: clamp(12px, 1.8vw, 15px);
    padding: 0 2px;
    color: #fff;
  }
  
  /* CTA buttons na bardzo małych ekranach */
  .cta-buttons {
    gap: 12px; /* Mniejszy gap na małych ekranach */
  }
  
  .cta-buttons button,
  .cta-termin {
    max-width: min(90vw, 360px); /* Bezpieczna szerokość */
    font-size: 16px; /* Nieco mniejszy font na małych ekranach */
    padding: 14px 24px; /* Mniejszy padding */
  }
  
  footer {
    padding: 12px 8px;
    font-size: 12px;
  }
  
  .footer-contact {
    font-size: 12px;
    gap: 8px;
    margin-top: 8px;
    flex-direction: column;
  }
  
  .footer-contact span:not(:first-child):not(:last-child) {
    display: none; /* Ukryj separator "|" na bardzo małych ekranach */
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 15px;
  }
  
  .faq-answer {
    padding: 0 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
}



@media (max-width: 700px) {
  .lb-prev, .lb-next {
    width: 48px;
    height: 48px;
    font-size: 34px;
    line-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  section[role="region"] { animation: none !important; }
  .sidebar a, button, .gallery img { transition: none !important; }
}

/* ===== KIM JESTEŚMY – KAFELKI ===== */
.team-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px auto 10px auto !important;
  max-width: 820px;
  width: fit-content;
  box-sizing: border-box;
}

#kimjestesmy .team-grid {
  margin: 22px auto 10px auto !important;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 700px){
  .team-grid{
    grid-template-columns: 1fr;
  }
}

.team-card{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.team-photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-info{
  padding: 14px 16px 16px 16px;
  text-align: center;
}

.team-info h3{
  margin: 0 0 4px 0;
  color: var(--pink);
  letter-spacing: 0.3px;
}

.team-info p{
  margin: 0;
  color: var(--hero-text-soft);
  font-weight: 800;
  font-size: 15px;
}

/* ===== BLOG ===== */
/* 
 * STANDARDOWA KOLORYSTYKA BLOGA - TRZYMAĆ SIĘ TEGO!
 * - Tło: gradient rgba(0,0,0,0.75) → rgba(0,0,0,0.65) z backdrop-filter blur(12px)
 * - Tekst główny: rgba(255,255,255,0.95-0.98)
 * - Tekst akcentowy: var(--rose-primary) #B76E79
 * - Ramki: rgba(255,255,255,0.25)
 * - Cienie: rgba(0,0,0,0.35)
 */
.blog-listing {
  display: block !important;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
}

.blog-listing h1 {
  text-align: center;
  color: var(--pink);
  margin: 0 0 14px 0;
  letter-spacing: 0.3px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.5);
}

.blog-listing .section-lead {
  color: rgba(255,255,255,0.95);
  text-align: center;
  margin: 0 0 18px 0;
  font-size: 18px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.65) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  transition: transform 140ms ease, box-shadow 140ms ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card-title {
  color: var(--pink);
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.blog-card-date {
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  font-size: 14px;
}

.blog-card-excerpt {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0;
  flex: 1;
}

.blog-card-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  box-shadow: 0 8px 20px rgba(183, 110, 121, 0.25);
  margin-top: 8px;
  align-self: flex-start;
}

.blog-card-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(183, 110, 121, 0.30);
}

/* Blog post (pojedynczy wpis) */
.blog-post {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.68) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  max-width: 920px;
  margin: 0 auto;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.blog-post-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.blog-post-header h1 {
  color: var(--pink);
  margin: 0 0 12px 0;
  font-size: 42px;
  letter-spacing: 0.3px;
  text-shadow: 0 8px 22px rgba(0,0,0,0.35);
  line-height: 1.2;
}

.blog-post-date {
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  font-size: 16px;
}

.blog-post-content {
  color: rgba(255,255,255,0.98);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.blog-post-content p {
  margin: 0 0 18px 0;
  color: rgba(255,255,255,0.95);
}

.blog-post-content a {
  color: var(--pink);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.blog-post-content a:hover {
  color: var(--rose-hover);
  text-decoration: underline;
}

.blog-post-content h2 {
  color: rgba(255,255,255,0.95);
  margin: 32px 0 16px 0;
  font-size: 32px;
  letter-spacing: 0.2px;
  line-height: 1.3;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Główne numerowane tematy (tylko te mają kolor różowy) */
.blog-post-content h2.main-topic {
  color: var(--pink);
}

.blog-post-content h3 {
  color: rgba(255,255,255,0.95);
  margin: 24px 0 12px 0;
  font-size: 24px;
  letter-spacing: 0.15px;
  line-height: 1.35;
  font-weight: 800;
  opacity: 0.95;
}

.blog-post-content ul {
  margin: 16px 0;
  padding-left: 28px;
  list-style-type: disc;
  color: rgba(255,255,255,0.95);
}

.blog-post-content ul li {
  margin: 10px 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.95);
}

.blog-post-content ul li strong {
  color: rgba(255,255,255,1);
  font-weight: 900;
}

.blog-post-content em {
  font-style: italic;
  color: rgba(255,255,255,0.95);
}

.blog-post-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.92) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
  padding: 24px 20px;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner[aria-hidden="false"] {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner-text {
  color: rgba(255,255,255,0.95);
}

.cookie-banner-text h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 12px 0;
  letter-spacing: 0.3px;
}

.cookie-banner-text p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.9);
}

.cookie-banner-text p:last-of-type {
  margin-bottom: 0;
}

.cookie-banner-links {
  margin-top: 12px;
}

.cookie-banner-links a {
  color: var(--pink);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s ease;
}

.cookie-banner-links a:hover {
  color: var(--rose-hover);
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
}

.cookie-btn-accept:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.cookie-btn-settings {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-settings:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-save {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
  color: #fff;
  box-shadow: 0 4px 16px rgba(183, 110, 121, 0.3);
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.cookie-btn-save:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
  transform: translateY(-2px);
}

.cookie-banner-settings {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.cookie-banner-settings h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 20px 0;
  text-align: center;
}

.cookie-settings-item {
  margin-bottom: 20px;
}

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 16px;
  touch-action: manipulation; /* Usuwa opóźnienie 300ms na mobile */
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s ease;
}

.cookie-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.cookie-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: relative;
  width: 50px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 28px;
  transition: background 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, var(--rose-primary), var(--rose-hover));
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider::before {
  transform: translateX(22px);
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-toggle-slider {
  background: rgba(255,255,255,0.15);
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-toggle-slider::before {
  background: rgba(255,255,255,0.8);
}

.cookie-toggle-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-toggle-label strong {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.cookie-toggle-label small {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 700px) {
  .cookie-banner {
    padding: 20px 16px;
  }
  
  .cookie-banner-text h3 {
    font-size: 20px;
  }
  
  .cookie-banner-text p {
    font-size: 14px;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    min-width: auto;
  }
  
  .cookie-toggle {
    padding: 14px;
    gap: 12px;
  }
  
  .cookie-toggle-slider {
    width: 44px;
    height: 24px;
  }
  
  .cookie-toggle-slider::before {
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
  }
  
  .cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider::before {
    transform: translateX(20px);
  }
  
  .cookie-toggle-label strong {
    font-size: 15px;
  }
  
  .cookie-toggle-label small {
    font-size: 12px;
  }
}

.button-back {
  display: inline-block;
  padding: 14px 28px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 140ms ease, background 140ms ease;
}

.button-back:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.18);
}

@media (max-width: 700px) {
  .blog-post-header h1 {
    font-size: 32px;
  }
  
  .blog-post-content h2 {
    font-size: 26px;
    margin: 28px 0 14px 0;
  }
  
  .blog-post-content h3 {
    font-size: 20px;
    margin: 20px 0 10px 0;
  }
  
  .blog-post {
    padding: 22px;
  }
  
  .blog-card {
    padding: 18px;
  }
}

/* Blog CTA section */
.blog-cta {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.65) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  padding: 30px 24px;
  margin-top: 40px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  text-align: center;
}

.blog-cta h2 {
  color: var(--pink);
  margin-bottom: 16px;
  font-size: 26px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.blog-cta p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
  font-size: 18px;
}

/* ===== MOBILE: POWIĘKSZENIE LOGO HERO (UNIKALNE ID) ===== */
@media (max-width: 768px) {
  /* KROK 2: Naprawa wrapperów - usuń wszystkie ograniczenia */
  
  /* text-container - usuń max-width ograniczający */
  #witamy .text-container {
    max-width: none !important;
    width: 100% !important;
    overflow: visible !important;
    padding: 32px 20px !important;
  }
  
  /* heroBrand wrapper - usuń ograniczenia */
  #witamy #heroBrand {
    width: 100% !important;
    max-width: none !important;
    min-width: fit-content !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: none !important;
    flex-basis: auto !important;
    flex-shrink: 0 !important;
  }
  
  /* h1 wewnątrz heroBrand - usuń ograniczenia */
  #witamy #heroBrand h1 {
    width: 100% !important;
    max-width: none !important;
    min-width: fit-content !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    flex: none !important;
    flex-basis: auto !important;
    flex-shrink: 0 !important;
  }

  /* KROK 1: Podniesienie skali logo do poziomu hero branding (70-85% szerokości ekranu) */
  #witamy #heroLogo,
  #witamy img[src$="logotemat.png"] {
    width: clamp(260px, 82vw, 380px) !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 260px !important;
    object-fit: contain !important;
    transform: none !important;
    display: block !important;
    flex: none !important;
    flex-basis: auto !important;
    flex-shrink: 0 !important;
  }
}

/* ===== MOBILE: TURBO HERO BRANDING - LOGO DOMINUJĄCE ===== */
@media (max-width: 768px) {
  /* Upewnij się, że wrapper nie ściska */
  #witamy .hero-brand,
  #witamy #heroBrand,
  #witamy .brand,
  #witamy .brand-wrap,
  #witamy .logo-wrap {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Turbo rozmiar logo w hero - 85-90% szerokości ekranu (strona główna #heroLogo + podstrony .hero-brand) */
  #witamy #heroLogo,
  #witamy img[src$="logotemat.png"],
  #witamy .hero-brand .h1-main-logo,
  #witamy .hero-brand img[src*="logotemat"] {
    width: 88vw !important;
    max-width: min(420px, 92vw) !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 8px auto !important;
    flex: none !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
  }

  /* Jeśli hero ma grid z małą kolumną - przełącz na jedną kolumnę */
  #witamy .text-container {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Uporządkowanie hierarchii tekstu - przyciski jako dopiski (mniejszy font) */
  #witamy .cta-buttons button,
  #witamy .cta-termin {
    font-size: 15px !important;
    padding: 14px 24px !important;
  }
}

/* ===== MOBILE: TYLKO PODSTRONY – logo i h1 w .hero-brand (hero-brand > img, hero-brand > h1; index ma .hero-brand > div > img) ===== */
@media (max-width: 768px) {
  /* Tylko podstrony: img jest bezpośrednim dzieckiem .hero-brand (na index jest .hero-brand > div > img, więc to się nie dopasuje) */
  #witamy .hero-brand > img.h1-main-logo,
  #witamy .hero-brand > img[src*="logotemat"] {
    width: 88vw !important;
    max-width: min(420px, 92vw) !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 8px auto !important;
    flex: none !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
  }
  /* Tylko podstrony: h1 między logiem a przyciskami – ten sam kolor co na desktop (różowy) */
  #witamy .hero-brand > h1 {
    color: var(--pink) !important;
  }
}

/* ===== Globalny floating WhatsApp (klasyczny zielony WhatsApp) ===== */
.wa-float {
  position: fixed;
  right: max(12px, env(safe-area-inset-right, 0px));
  bottom: max(20px, calc(12px + env(safe-area-inset-bottom, 0px)));
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  line-height: 1.2;
}
.wa-float:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 10px 26px rgba(30, 190, 93, 0.5);
}
.wa-float:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.55), 0 6px 20px rgba(37, 211, 102, 0.45);
}
.wa-float__icon {
  display: flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.wa-float__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.wa-float__text {
  white-space: nowrap;
}
/* Baner cookies widoczny — nie zasłaniaj go (cookie banner z-index: 10000) */
body:has(#cookieBanner[aria-hidden="false"]) .wa-float {
  bottom: max(24px, calc(108px + env(safe-area-inset-bottom, 0px)));
}
/* Popup promocji (z-index ~10002) — podnieś przycisk, żeby rzadziej nachodził na panel */
body:has(.promo-reservation-25.is-visible) .wa-float {
  bottom: max(24px, calc(200px + env(safe-area-inset-bottom, 0px)));
}
@media (max-width: 768px) {
  body:has(.promo-reservation-25.is-visible) .wa-float {
    bottom: max(24px, calc(38vh + env(safe-area-inset-bottom, 0px)));
  }
}
/* Cookies + promocja jednocześnie — większy margines od dołu */
body:has(#cookieBanner[aria-hidden="false"]):has(.promo-reservation-25.is-visible) .wa-float {
  bottom: max(24px, calc(220px + env(safe-area-inset-bottom, 0px)));
}
@media (max-width: 768px) {
  body:has(#cookieBanner[aria-hidden="false"]):has(.promo-reservation-25.is-visible) .wa-float {
    bottom: max(24px, calc(42vh + env(safe-area-inset-bottom, 0px)));
  }
}
@media (max-width: 768px) {
  .wa-float {
    min-width: 52px;
    min-height: 52px;
    padding: 12px;
  }
  .wa-float__text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}
@media (min-width: 769px) {
  .wa-float {
    padding: 12px 18px;
    min-height: 48px;
  }
}