body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  padding-top: 70px;
  transition: transform 0.3s ease-in-out;
}

/* Efekt przesuwania strony */
body.shifted {
  transform: translateX(250px); /* szerokość menu */
  overflow-x: hidden;
}

/* Gradient */
.gradient-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Efekty hover kart */
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* CTA */
.price-highlight {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
}
.promotion-badge {
  background: linear-gradient(45deg, #ff9a9e, #fecfef);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 0.75rem;
}

/* Linki desktop */
.nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #0073e6;
}

/* Mobilne menu */
.mobile-drawer {
  transition: transform 0.3s ease-in-out;
}
.mobile-link {
  font-weight: 500;
  padding: 0.5rem 0;
  color: #333;
}
.mobile-link:hover {
  color: #0073e6;
}


/* === LIGHTBOX === */







/* === LIGHTBOX === */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.25s ease;
}
#lightbox.show {
  display: flex;
  opacity: 1;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
#lightbox.show img {
  transform: scale(1);
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  user-select: none;
}



/* === MOBILE DRAWER FINAL FIX === */
body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 99990;
}

#mobile-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* Drawer */
.mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  width: 280px !important;
  max-width: 85% !important;
  background: #fff !important;
  transform: translateX(-100%) !important;
  transition: transform 0.28s ease !important;
  z-index: 99995 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding: 80px 20px 20px !important; /* leave space for fixed header */
  box-shadow: 2px 0 12px rgba(0,0,0,0.12) !important;
}

/* Make sure drawer content flows top-to-bottom */
.mobile-drawer.open {
  transform: translateX(0) !important;
}

/* Mobile nav inside drawer */
.mobile-drawer .mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-drawer .mobile-nav li {
  margin: 12px 0;
}
.mobile-drawer .mobile-nav a {
  color: #222;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 8px 4px;
}

/* In case body.shifted exists elsewhere, neutralize its transform */
body.shifted {
  transform: none !important;
}

/* Ensure header remains above overlay only if needed (header z-index small), but drawer stays above header */
header, .site-header {
  z-index: 1000;
}
