* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
}

body {
  position: relative;
  background: #000; /* fallback pod zdjęcie */
  /* na ekranie sklepowym możesz ukryć kursor:
  cursor: none;
  */
}

/* TŁO – PEŁNOEKRANOWE ZDJĘCIE */
.page-bg {
  position: fixed;
  inset: 0;
  background-image: url("src/bg_IC_9-16.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* CAŁA STRONA NA WIERZCHU TŁA */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* TEKST NAD SLIDEREM */
.page-header {
  padding: 16px 24px 8px;
  text-align: center;
}

.page-header p {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 150px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 800;
  color: #ffffff;
  font-family: "neulis-neue", system-ui, -apple-system, sans-serif;
}

/* SLIDER – ZAJMUJE CAŁĄ DOSTĘPNĄ PRZESTRZEŃ MIĘDZY HEADEREM A STOPKĄ */
.mySwiper {
  flex: 1;
  display: flex;
}

.swiper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper {
  align-items: center;
}

/* ============================
   KARTA PLAKATU – BAZA
   ============================ */

.swiper-slide {
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

/* PIONOWE 9:16 – węższe, wyższe */
.swiper-slide.poster-vertical {
  height: min(600px, 70vh);
  width: min(440px, 60vw) !important;
}

/* POZIOME 16:9 – ta sama wysokość, ale szersze */
.swiper-slide.poster-horizontal {
  height: min(600px, 70vh);
  width: min(660px, 90vw) !important;
}

.swiper-slide-active {
  transform: translateZ(0) scale(1.02);
}

/* WNĘTRZE SLAJDU */
.slide-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* PLAKAT – DOPASOWANY DO KSZTAŁTU KARTY
   (tu zakładamy, że plik ma tę samą proporcję co karta) */
.slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* NUMER SLAJDU (PLAKATU) */
.slide-number {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(100, 68, 188, 0.75);
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* NAKLEJKA Z NAZWĄ I CENĄ */
.slide-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.slide-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.slide-price {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* STOPKA Z LOGO POD SLIDEREM */
.page-footer {
  padding: 10px 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-footer-logo-wrap {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.2));
}
