/* ==========================================
   PG MUSIC – DJ Paweł Ganczarski
   ========================================== */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #111111;
  --nav-bg: #1a1a1a;
  --white: #ffffff;
  --text: #222222;
  --gray: #f5f5f5;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

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

html {
  scroll-behavior: smooth; /* overflow-x: clip; jest już na body, więc wystarczy raz */
  overflow-x: clip;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}

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

/* ---- NAV ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul li a:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO SLIDER ---- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 540px;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77,0,0.18,1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* zdjęcie w pełni widoczne */
  object-position: center;
  background: var(--dark);
}

/* kinowe rozmycie na bokach (letterbox blur) */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: 0;
}

/* rozmyta warstwa tła za zdjęciem */
.slide {
  overflow: hidden;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('') center/cover no-repeat;
  filter: blur(18px) brightness(0.35);
  z-index: 0;
  transform: scale(1.1);
}

/* JS ustawia --bg-url na każdym slide */
.slide[data-bg]::after {
  background-image: var(--bg-url);
}

.slide img { position: relative; z-index: 1; }

/* gradient overlay */
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content { display: none; }

.btn-gold {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.slider-controls {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow {
  background: rgba(0,0,0,0.45);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.slider-arrow:hover { background: var(--gold); }

.slider-slogan {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 10px 20px;
}

.slider-slogan span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  color: var(--white);
  letter-spacing: 0.18em;
}

.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---- SEKCJE OGÓLNE ---- */
.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- O MNIE ---- */
.about { }

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-row.reverse { }
.about-row.reverse .about-img { order: 2; }
.about-row.reverse .about-text { order: 1; }

.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  box-shadow: var(--card-shadow);
}

.about-img img.pos-top {
  object-position: center top;
}

.about-img img.pos-top-20 {
  object-position: center -20px;
}

.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.about-text h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-top: 8px;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* ---- REELS ---- */
.reels-section {
  background: var(--white);
  padding-bottom: 90px;
  overflow: hidden;
}

.reels-stage {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels-viewport {
  width: 100%;
  height: 800px; /* Zwiększona wysokość dla potężnego odtwarzacza */
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.reels-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.reel-item {
  /* Usunięto flex-basis, szerokość i wysokość będą definiowane przez klasy .center, .side, .far */
  aspect-ratio: 9 / 16;
  background: var(--dark);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  /* Domyślne rozmiary, które zostaną nadpisane */
  width: 200px;
  height: 355px;
}

.reel-item.center {
  width: 420px; /* Jeszcze większa szerokość dla efektu WOW */
  height: 746px; /* Proporcjonalna wysokość 9:16 */
  z-index: 10;
  opacity: 1;
  margin: 0 30px; /* Margines, aby powiększony film miał miejsce */
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(1); /* Resetujemy scale, bo rozmiar jest już jawny */
}

.reel-item.side {
  width: 280px; /* Lekka korekta boków */
  height: 497px; 
  z-index: 5;
  opacity: 0.6;
  filter: grayscale(0.5) blur(1px);
  margin: 0 -80px; /* Ujemny margines, aby schować pod środek */
  transform: scale(1); /* Resetujemy scale */
}

.reel-item.far {
  width: 180px; /* Jeszcze mniejsza szerokość */
  height: 320px; /* Proporcjonalna wysokość */
  z-index: 1;
  opacity: 0.25;
  filter: grayscale(1) blur(2px);
  margin: 0 -100px; /* Większy ujemny margines */
  display: flex;
  transform: scale(1); /* Resetujemy scale */
}

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  opacity: 0.8;
}

.reels-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: var(--dark);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.reels-arrow:hover { background: var(--gold); }
.reels-prev { left: 20px; }
.reels-next { right: 20px; }

/* ---- GALERIA ---- */
.gallery-section {
  background: var(--gray);
  max-width: 100%;
  padding: 90px 0;
}

.gallery-section .section-title { padding: 0 24px; }

.gallery-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
}

.gallery-viewport {
  width: 100%;
  max-width: 1100px;
  overflow: visible;
  padding: 30px 0;
}

.gallery-track {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.gallery-item {
  flex: 0 0 auto;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

/* Stany: prev2, prev, center, next, next2 */
.gallery-item.center {
  width: 480px;
  height: 320px;
  z-index: 3;
  transform: scale(1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.gallery-item.side {
  width: 340px;
  height: 230px;
  z-index: 2;
  opacity: 0.75;
  transform: scale(0.92);
}

.gallery-item.far {
  width: 220px;
  height: 155px;
  z-index: 1;
  opacity: 0.45;
  transform: scale(0.82);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--white);
  font-size: 3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.gallery-arrow:hover { background: var(--gold); color: var(--dark); }
.gallery-stage .gallery-prev,
.gallery-stage .gallery-next { display: none; }

.gallery-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #666;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.gallery-info .gallery-arrow {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  background: var(--dark);
  color: var(--white);
}

/* ---- OPINIE ---- */
.reviews-section { background: var(--white); }

.reviews-group { margin-bottom: 72px; }

.reviews-source {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
}

.reviews-source i { color: var(--gold); font-size: 1.5rem; }

.rev-stage {
  position: relative;
}

.rev-viewport {
  overflow: visible;
  padding: 20px 0;
}

.rev-3d-track {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.review-card {
  flex: 0 0 auto;
  background: var(--gray);
  border-radius: 4px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s, opacity 0.4s, box-shadow 0.4s;
}

.review-card.rc-center {
  width: 480px;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 3;
}

.review-card.rc-side {
  width: 320px;
  opacity: 0.6;
  transform: scale(0.92);
  z-index: 2;
}

.review-card.rc-far {
  width: 200px;
  opacity: 0.35;
  transform: scale(0.82);
  z-index: 1;
}

.review-card .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }

.review-card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.review-card.rc-center p {
  -webkit-line-clamp: unset;
}

.review-card span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-top: auto;
}

.rev-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #666;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.rev-arrow {
  background: var(--dark);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.rev-arrow:hover { background: var(--gold); color: var(--dark); }

/* ---- KONTAKT ---- */
.contact-section {
  background: var(--gray);
  max-width: 100%;
  padding: 90px 24px;
}

.contact-section > * { max-width: 900px; margin-left: auto; margin-right: auto; }
.contact-section > .contact-img { max-width: 100%; margin-left: 0; margin-right: 0; }

.contact-img {
  margin-bottom: 48px;
  position: relative;
  max-width: 100%;
}

.contact-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.contact-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 30, 80, 0.55) 70%, rgba(5, 15, 50, 0.88) 100%);
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { width: 100%; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 2px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; }

.contact-form .btn-gold { align-self: center; font-size: 1rem; }

.company-info {
  margin-top: 56px;
  text-align: center;
  color: #555;
  line-height: 1.9;
}

.company-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,0.65); /* Zwiększony kontrast dla lepszej dostępności */
  text-align: center;
  padding: 24px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.footer-credit {
  margin-top: 8px;
  font-size: 0.8rem;
}

/* ---- PŁYWAJĄCE IKONY ---- */
.floating-icons {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.float-icon:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.12);
}

/* ---- WRÓĆ NA GÓRĘ ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 900;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); }

/* ---- FAQ ---- */
.faq-section { background: var(--gray); max-width: 100%; padding: 90px 24px; }
.faq-section .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-question { color: var(--gold); }
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #444;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* ---- ANIMACJE SCROLL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
  transform: translateX(-50px);
}

.reveal.from-right {
  transform: translateX(50px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

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

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 3rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-arrow:hover { background: var(--gold); color: var(--dark); }
.lightbox-arrow.lb-prev { left: 20px; }
.lightbox-arrow.lb-next { right: 20px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-row { grid-template-columns: 1fr; gap: 32px; }
  .about-row.reverse .about-img { order: 0; }
  .about-row.reverse .about-text { order: 0; }

  .form-row { grid-template-columns: 1fr; }

  .review-card { flex: 0 0 calc(100% - 12px); }

  .gallery-item.center { width: 320px; height: 215px; }
  .gallery-item.side { width: 200px; height: 140px; }
  .gallery-item.far { display: none; }

  nav { width: 0; min-width: 0; overflow: visible; padding: 0; margin: 0; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--nav-bg); padding: 20px 24px; gap: 20px; z-index: 9999; align-items: flex-end; }
  body.nav-open .hero { margin-top: 196px; transition: margin-top 0.3s ease; }
  .hero { transition: margin-top 0.3s ease; }
  .hamburger { display: flex; }

  /* slider: cover na mobile żeby nie było czarnych pasów */
  .hero { height: 55vh; min-height: 300px; }
  .slide img { object-fit: cover; }
}

@media (max-width: 600px) {
  .floating-icons { right: 6px; bottom: 70px; gap: 8px; }
  .float-icon { width: 36px; height: 36px; font-size: 0.85rem; }
  .back-to-top { right: 6px; bottom: 14px; width: 36px; height: 36px; font-size: 1rem; }
  .about-img img { height: 250px; }

  .section { padding-right: 58px; }
  .contact-section { padding-right: 58px; }
  .faq-section { padding-right: 58px; }
  .faq-answer p { padding-right: 8px; }
  .faq-question { padding-right: 8px; }

  /* opinie: tylko karta centralna widoczna */
  .review-card.rc-side,
  .review-card.rc-far { display: none; }
  .review-card.rc-center { width: 100%; text-align: center; }
  .review-card.rc-center .stars { text-align: center; }
  .review-card.rc-center p { text-align: center; }
  .review-card.rc-center span { text-align: center; }
  .reviews-source { justify-content: center; }

  /* galeria: tylko centralne */
  .gallery-item.side { display: none; }
  .gallery-item.center { width: 100%; max-width: 340px; height: 230px; }

  /* Reels na mobile: tylko środkowy */
  .reel-item.side,
  .reel-item.far { display: none; }
  .reel-item.center { margin: 0; transform: scale(1); width: 280px; height: 498px; }
  .reels-viewport { height: 550px; } /* Dostosowanie wysokości viewportu na mobile */
}
