/* ============================================
   BEAUTY ARTLINGO₂ - Nowy motyw
   Białe/czarne tła, akcent #DD8E9B
   Przyciski: outline (border+tekst), hover biały/czarny
   ============================================ */

:root {
  --pink: #DD8E9B;
  --pink-hover: #e09da9;
  --blue: #64A8FF;
  --blue-hover: #7ab5ff;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray: #666;
  --gray-light: #f5f5f5;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--black);
  margin: 0;
  padding: 0;
}
/* Pricing page i inne sekcje mają białe tło */
body.pricing-page {
  background: var(--white);
}
/* Wszystkie sekcje oprócz hero mają własne tła */
section {
  background: var(--white);
}
section.hero-area {
  background: var(--black) !important;
}

/* Nagłówki – różowe z dekoracyjną kreską po środku */
.heading-pink {
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.heading-pink::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: var(--pink);
}

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

a { text-decoration: none; color: inherit; }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border: 2px solid;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-outline-pink {
  color: var(--pink);
  border-color: var(--pink);
  background: transparent;
}
/* Domyślnie na ciemnym tle: hover biały */
.btn-outline-pink:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}
/* Na jasnym tle: hover czarny */
.btn-outline-pink.btn-on-light:hover {
  color: var(--black);
  border-color: var(--black);
}

/* Hero CTA „Umów wizytę” – hover: różowy border, różowe tło, biały tekst */
.btn-hero-cta {
  color: var(--pink);
  border-color: var(--pink);
  background: transparent;
}
.btn-hero-cta:hover {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink);
}

.btn-outline-white {
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-black {
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-black:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-blue {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}
.btn-outline-blue:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.btn-sm { padding: 8px 18px; font-size: 14px; }
.ml-2 { margin-left: 12px; }

/* ========== Header ========== */
.beauty-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
/* Header po przewinięciu (lub od razu na cenniku): tło różowe, tekst czarny, hover biały */
.beauty-header.scrolled {
  background: var(--pink);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.beauty-header.scrolled .logo-link,
.beauty-header.scrolled .nav-link { color: var(--black); }
.beauty-header.scrolled .logo-link:hover,
.beauty-header.scrolled .nav-link:hover { color: var(--white); }
.beauty-header.scrolled .nav-link:hover::after { background: var(--white); }
.beauty-header.scrolled .nav-link-back { color: var(--black); opacity: 0.85; }
.beauty-header.scrolled .nav-link-back:hover { color: var(--white); }
.beauty-header.scrolled .toggler-icon { background: var(--black); }

.logo-link:hover { color: var(--pink); }
.beauty-header.scrolled .logo-link:hover { color: var(--white); }

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-inner {
    grid-template-columns: minmax(0, auto) 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-left .logo-link { font-size: 20px; }
  .navbar-nav { gap: 20px; }
  .nav-link { font-size: 16px; padding: 10px 16px; }
}
.header-left { justify-self: start; }
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  position: relative;
  flex-shrink: 0;
}
.header-right .navbar-nav { justify-content: flex-end; flex-shrink: 0; }

/* Strona główna – menu jak na podstronach (Bootstrap może kompresować) */
body.index-page .header-inner { grid-template-columns: minmax(0, auto) 1fr; }
body.index-page .navbar-nav { gap: 20px; }
body.index-page .nav-link { font-size: 16px; padding: 10px 16px; white-space: nowrap; }

.logo-link {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.beauty-header.scrolled .logo-link,
body.contact-page .logo-link,
body.pricing-page .logo-link { color: var(--black); }

/* Menu poziome na desktop – bez zawijania (Strefa Dotlenienia w jednej linii) */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-direction: row;
  }
  .navbar-nav {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-link {
  color: var(--white);
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: calc(100% - 20px); }
.nav-link:hover { color: var(--pink); }
.nav-link-back { font-size: 14px; opacity: 0.9; }

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.3s;
}
.beauty-header.scrolled .toggler-icon { background: var(--black); }

@media (max-width: 991px) {
  .navbar-toggler { display: flex; }
  .nav-link::after { display: none; }
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 0;
    z-index: 1001;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    max-height: 400px;
  }
  .navbar-nav {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  .nav-link {
    color: var(--black);
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    white-space: normal;
  }
  .nav-link:last-child { border-bottom: none; }
  .navbar-toggler.active .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar-toggler.active .toggler-icon:nth-child(2) { opacity: 0; }
  .navbar-toggler.active .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  body.o2-page .navbar-collapse .nav-link {
    color: var(--black) !important;
  }
}

/* ========== Hero ========== */
.hero-area {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  min-height: 100vh;
}
.hero-top {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 80px);
  flex: 1;
}
.hero-content {
  flex: 0 0 50%;
  padding: 60px 48px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-logo {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  order: 2;
}
.hero-logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
}
.hero-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  order: 1;
}
.hero-title span, .hero-content .accent { color: var(--pink); }
.hero-text {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 480px;
  order: 3;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  order: 4;
}
.hero-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  order: 5;
}
.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 22px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.hero-social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-features {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--pink);
  margin-bottom: 8px;
}
.hero-features li i {
  font-size: 18px;
  flex-shrink: 0;
}
.hero-image-wrap {
  flex: 1;
  min-width: 50%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.12);
}

@media (max-width: 991px) {
  .header-inner { grid-template-columns: 1fr; }
  .header-right { justify-self: stretch; justify-content: flex-end; }
  .hero-top { flex-direction: column; min-height: auto; }
  .hero-content, .hero-image-wrap { max-width: 100%; }
  .hero-content { padding: 80px 24px 40px; text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-logo { margin: 20px 0; }
  .hero-logo img { height: 150px; }
  .hero-features { align-items: center; }
  .hero-image-wrap { min-height: 320px; }
}

@media (max-width: 767px) {
  .btn { min-width: 0; width: 100%; max-width: 280px; }
  .btn-sm { min-width: 0; }
  .chamber-banner .btn { margin-bottom: 12px; }
  .chamber-banner-content .btn { width: 100%; max-width: none; margin: 0 0 12px 0 !important; }
  .ml-2 { margin-left: 0 !important; }
}

/* ========== About (Jolanta) – czarne tło ========== */
.about-area {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.about-main-title { margin-bottom: 40px; }

/* Kafelki O nas (ex-hero features): różowe ikonki, border i tekst, lekki lift na hover */
.about-features-tiles {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-feature-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border: 2px solid var(--pink);
  color: var(--pink);
  background: rgba(221, 142, 155, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(221, 142, 155, 0.2);
}
.about-feature-tile-icon {
  font-size: 36px;
  margin-bottom: 14px;
  color: var(--pink);
}
.about-feature-tile-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
}
/* Kafelka komory – niebieskie motywy */
.about-feature-tile--blue {
  border-color: var(--blue);
  background: rgba(100, 168, 255, 0.08);
}
.about-feature-tile--blue:hover {
  box-shadow: 0 12px 28px rgba(100, 168, 255, 0.25);
}
.about-feature-tile--blue .about-feature-tile-icon {
  color: var(--blue);
}
@media (min-width: 992px) {
  .about-features-tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {
  .about-features-tiles { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .about-feature-tile { padding: 22px 16px; }
}

/* Rozgałęźnik pod kafelkami (ten sam co po opisie Jolanty) */
.about-tiles-divider {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 48px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-grid-photo {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: start;
  display: flex;
  justify-content: center;
}
.about-grid-photo .about-image img {
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  display: block;
}
.about-grid-lead { grid-column: 2; grid-row: 1; }
.about-grid-lead .section-title-dark {
  font-size: 32px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 16px;
}
.about-grid-lead .lead {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin: 0;
}
.about-grid-text {
  grid-column: 2;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.about-grid-text p { margin: 0; }
.about-grid-cta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-grid-cta p {
  flex: 1;
  min-width: 280px;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}
.about-grid-cta .btn { flex-shrink: 0; }
.about-grid-cta .btn-outline-pink { color: var(--pink); border-color: var(--pink); }
.about-grid-cta .btn-outline-pink:hover { color: var(--white); border-color: var(--white); }
@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-grid-photo { grid-column: 1; grid-row: auto; }
  .about-grid-photo .about-image img { max-width: 100%; }
  .about-grid-lead, .about-grid-text, .about-grid-cta { grid-column: 1; grid-row: auto; }
}
.about-image img { border-radius: 8px; }
.about-area .section-title-dark {
  font-size: 36px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 24px;
}
.about-content .lead { font-size: 18px; margin-bottom: 16px; color: var(--white); }
.about-content p { margin-bottom: 14px; color: rgba(255,255,255,0.9); }
.about-content .btn { margin-top: 20px; }
.about-content .btn-outline-pink { color: var(--pink); border-color: var(--pink); }
.about-content .btn-outline-pink:hover { color: var(--white); border-color: var(--white); }
.section-title-dark { font-size: 36px; font-weight: 700; margin-bottom: 24px; }

/* ========== Offer ========== */
.offer-area {
  padding: 80px 0 100px;
  background: var(--gray-light);
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--pink);
  text-align: center;
  margin-bottom: 50px;
}
.offer-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.offer-card-image {
  height: 220px;
  overflow: hidden;
}
.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.offer-card:hover .offer-card-image img { transform: scale(1.05); }
.offer-card-content {
  padding: 24px;
}
.offer-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
}
.offer-card-content p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 16px;
}
.mt-5 { margin-top: 40px; }

/* Oferta: „Pokaż więcej” – karty ukryte domyślnie, dwa przyciski obok */
.offer-card-more {
  display: none;
}
.offer-card-more.visible {
  display: block;
}
.offer-buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.offer-more-lead {
  font-size: 1.1rem;
  color: var(--gray);
  margin: 0 0 8px 0;
  font-style: italic;
}
.offer-buttons .btn,
.offer-buttons .btn {
  min-width: 200px;
}
.offer-buttons .btn-offer-cta {
  min-width: 220px;
  padding: 12px 24px;
  font-size: 1rem;
}
/* Pełna oferta i cennik – czarny, hover różowy */
.offer-buttons .btn-offer-full {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.offer-buttons .btn-offer-full:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.offer-buttons { gap: 12px; }
.offer-buttons button.btn { margin: 0; font-family: inherit; }
.offer-buttons #offerShowMore.expanded { display: none; }

/* ========== Testimonials (ukryte na razie) ========== */
.testimonials-area {
  padding: 140px 0 100px;
  background: var(--black);
  color: var(--white);
}
.testimonials-area--hidden {
  display: none !important;
}
.testimonials-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 48px 56px;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-item blockquote {
  position: relative;
  padding-top: 24px;
}
.testimonial-item blockquote::before {
  content: '"';
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  font-size: 56px;
  line-height: 1;
  color: var(--pink);
  opacity: 0.6;
  font-family: Georgia, serif;
}
.section-title-light {
  font-size: 36px;
  font-weight: 700;
  color: var(--pink);
  text-align: center;
  margin-bottom: 48px;
}
.section-title-light span, .section-title-light .accent { color: var(--pink); }

.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  min-height: 180px;
  position: relative;
}
.testimonial-item {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease;
}
.testimonial-item.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.testimonial-item blockquote {
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-item cite {
  font-size: 15px;
  font-style: normal;
  color: var(--pink);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.testimonials-dots .dot.active {
  background: var(--pink);
  transform: scale(1.2);
}

/* ========== Chamber Banner ========== */
.chamber-banner-area {
  padding: 100px 0;
  background: var(--white);
}
.chamber-banner {
  background: var(--white);
  color: var(--black);
  border-radius: 12px;
  overflow: hidden;
  padding: 60px;
  border: 1px solid rgba(0,0,0,0.08);
}
.chamber-banner .chamber-title { color: var(--pink); }
.chamber-banner .chamber-text { color: var(--black); }
.chamber-banner .chamber-desc { color: var(--gray); opacity: 1; }
.chamber-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.chamber-text {
  font-size: 20px;
  margin-bottom: 12px;
}
.chamber-desc {
  opacity: 0.9;
  margin-bottom: 24px;
}
.chamber-banner-image img {
  border-radius: 8px;
}
.chamber-title--blue {
  color: var(--blue) !important;
}
.chamber-title--blue::after { background: var(--blue); }
.chamber-banner .btn-outline-blue.btn-on-light:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.chamber-banner--pink { border-color: rgba(201, 123, 138, 0.2); background: linear-gradient(135deg, rgba(201, 123, 138, 0.06) 0%, var(--white) 50%); }
.chamber-banner--pink .chamber-title { color: var(--pink); }

@media (max-width: 991px) {
  .chamber-banner { padding: 40px 24px; }
  .chamber-banner-image { margin-top: 30px; }
  .chamber-banner .row.flex-md-row-reverse .chamber-banner-image { order: -1; }
}

/* ========== Vouchery ========== */
.vouchers-area {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}
.vouchers-area .section-title,
.vouchers-area .heading-pink { color: var(--pink); }
.vouchers-lead {
  text-align: left;
  max-width: 100%;
  margin: 0 0 40px;
  color: var(--white);
  font-size: 17px;
  opacity: 0.95;
}
.vouchers-content { color: var(--white); }
.vouchers-text .vouchers-label,
.vouchers-text p { color: var(--white); opacity: 0.95; }
.vouchers-text .btn { border-color: var(--pink); color: var(--pink); }
.vouchers-text .btn:hover { background: transparent; color: var(--white); border-color: var(--white); }
.vouchers-collage {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.vouchers-collage .voucher-lightbox-item {
  flex: 0 0 auto;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s, opacity 0.3s;
  color: inherit;
  text-decoration: none;
}
.vouchers-collage .voucher-lightbox-item:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
.vouchers-collage .voucher-lightbox-item img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Bony: jeden blok tekstu z wplecionymi miniaturami (kolaż + lightbox) */
.vouchers-inline { color: var(--white); }
.vouchers-text-block .vouchers-label,
.vouchers-text-block p { color: var(--white); opacity: 0.95; }
.vouchers-text-block .vouchers-label { font-weight: 600; margin-bottom: 12px; }
.vouchers-text-block .vouchers-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.vouchers-text-block .vouchers-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.vouchers-text-block .vouchers-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
}
.vouchers-thumbs-intro {
  font-size: 14px;
  opacity: 0.9;
  margin: 20px 0 12px;
}
.vouchers-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.vouchers-thumbs .voucher-lightbox-item {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s, transform 0.3s;
}
.vouchers-thumbs .voucher-lightbox-item:hover {
  border-color: var(--pink);
  transform: scale(1.05);
}
.vouchers-thumbs .voucher-lightbox-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vouchers-text-block .btn { margin-top: 8px; }
.vouchers-text-block .btn-outline-pink { color: var(--pink); border-color: var(--pink); }
.vouchers-text-block .btn-outline-pink:hover { color: var(--white); border-color: var(--white); }
.vouchers-text .vouchers-label { font-weight: 600; margin-bottom: 12px; }
.vouchers-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--white);
}
.vouchers-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.vouchers-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink);
}
.vouchers-text p { margin-bottom: 16px; }
.vouchers-text .btn { margin-top: 8px; }

/* Lightbox voucherów */
.voucher-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.voucher-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.voucher-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.voucher-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.8;
}
.voucher-lightbox-close:hover { opacity: 1; }

/* ========== Nasze oceny Google ========== */
/* W sekcji O nas (ciemne tło) */
.about-google-reviews {
  margin-top: 56px;
  text-align: center;
}
.about-area .about-google-reviews-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}
.about-area .about-google-reviews-title::after {
  background: var(--pink);
}
.about-area .about-google-reviews-lead {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 24px;
}
.google-reviews-area {
  padding: 80px 0;
  background: var(--gray-light);
}
.google-reviews-area .section-title {
  text-align: center;
  margin-bottom: 12px;
}
.google-reviews-lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--black);
  font-size: 17px;
  opacity: 0.9;
}
/* Przyciski pod napisem (Nasze oceny / Zaufanie klientów) */
.about-google-reviews .google-reviews-buttons--above-gallery {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.about-google-reviews .google-reviews-buttons--above-gallery .btn {
  min-width: 220px;
  text-align: center;
  padding: 14px 24px;
}

/* Slider opinii z Google – stała wielkość, przyciski na zewnątrz */
.google-reviews-slider {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  /* Miejsce na przyciski po bokach – nie nachodzą na slajdy */
  padding: 0 56px;
}
/* Okno slajdów: stała szerokość i wysokość – tylko jeden slajd w widoku */
.google-reviews-slider-track-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  height: 340px;
  background: #f8f8f8;
  position: relative;
}
/* Track ma sztywno 400% szerokości wrapa – nie może się kurczyć */
.google-reviews-slider-track {
  display: flex;
  width: 400%;
  min-width: 400%;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}
/* Jeden slajd = 25% tracku = 100% szerokości okienka */
.google-reviews-slide {
  flex: 0 0 25%;
  width: 25%;
  min-width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}
.google-reviews-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* Przyciski wizualnie poza obszarem slajdów (w paddingu) */
.google-reviews-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.google-reviews-slider-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}
.google-reviews-slider-btn--prev { left: 8px; }
.google-reviews-slider-btn--next { right: 8px; }
.google-reviews-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.google-reviews-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.google-reviews-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.google-reviews-slider-dots .dot.active {
  background: var(--pink);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .google-reviews-slider {
    max-width: 100%;
    padding: 0 52px;
  }
  .google-reviews-slider-track-wrap {
    height: 300px;
  }
  .google-reviews-slider-btn--prev { left: 4px; }
  .google-reviews-slider-btn--next { right: 4px; }
  .about-google-reviews .google-reviews-buttons--above-gallery {
    flex-direction: column;
  }
  .about-google-reviews .google-reviews-buttons--above-gallery .btn {
    width: 100%;
  }
}

/* Wersja bez glass (np. na jasnym tle) */
.google-reviews-box {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  text-align: center;
}
.google-reviews-stars {
  color: #e6b800;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.google-reviews-stars .bi-star-fill {
  color: #e6b800;
}
.google-reviews-value {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 4px;
}
.google-reviews-value strong { color: var(--pink); }
.google-reviews-note {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}
.google-reviews-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.google-reviews-buttons .btn { white-space: nowrap; }
@media (max-width: 576px) {
  .google-reviews-buttons { flex-direction: column; }
  .google-reviews-buttons .btn { width: 100%; }
}

/* ========== Contact ========== */
.contact-area {
  padding: 100px 0;
  background: var(--gray-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-grid-item {
  background: var(--white);
  padding: 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.contact-grid-item i {
  font-size: 32px;
  color: var(--pink);
  margin-bottom: 12px;
}
.contact-grid-item h4 {
  font-size: 16px;
  color: var(--pink);
  margin-bottom: 8px;
}
.contact-grid-item p { margin: 0; font-size: 15px; }
.contact-grid-item a { color: var(--black); }
.contact-grid-item a:hover { color: var(--pink); }
.contact-form-row { margin-top: 0; }
.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form-card h3 {
  margin-bottom: 24px;
  font-size: 22px;
}
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
}
.contact-form-card textarea { resize: vertical; min-height: 100px; }

/* ========== CTA + Booking ========== */
.cta-booking-area {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--pink) 0%, #c97a8a 100%);
  color: var(--white);
  text-align: center;
}
.cta-booking-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-lead {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
}
.booking-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}
.booking-option {
  flex: 1;
  min-width: 260px;
  max-width: 340px;
  background: rgba(255,255,255,0.15);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  text-align: center;
}
.booking-option-icon {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
}
.booking-option h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.booking-option p {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 18px;
}
.booking-note {
  font-size: 14px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cta-booking-content h2 { font-size: 28px; }
  .booking-instruction { padding: 24px; }
}

/* ========== Footer ========== */
.beauty-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h3 {
  font-size: 18px;
  color: var(--pink);
  margin-bottom: 16px;
}
.footer-section p, .footer-section li {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.footer-section a:hover { color: var(--pink); }
.footer-section ul { list-style: none; }

.beauty-footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.beauty-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 20px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.beauty-footer-social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.beauty-footer-bottom,
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  opacity: 0.8;
}
.footer-bottom .footer-credits,
.beauty-footer-bottom .footer-credits {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.75;
}
.footer-bottom .footer-credits a,
.beauty-footer-bottom .footer-credits a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom .footer-credits a:hover,
.beauty-footer-bottom .footer-credits a:hover {
  color: var(--white);
}

/* Stopka na stronie cennika: różowe tło, czarne nagłówki, szare teksty i odnośniki */
/* ========== Back to top ========== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--black);
  color: var(--white);
}

/* ========== Contact page ========== */
body.contact-page .beauty-header { background: var(--black); }
body.contact-page .beauty-header.scrolled { background: var(--white); }
body.contact-page .nav-link { color: var(--white); }
body.contact-page .beauty-header.scrolled .nav-link { color: var(--black); }

.contact-section {
  padding: 120px 0 100px;
  background: var(--black);
  color: var(--white);
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-section .contact-info-card h2,
.contact-section .contact-form-card h2 {
  font-size: 28px;
  color: var(--pink);
  margin-bottom: 28px;
}
.contact-section .contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-section .contact-icon { font-size: 1.5rem; }
.contact-section .contact-item h3 {
  font-size: 14px;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-section .contact-item p { margin: 0; opacity: 0.95; }
.contact-section a { color: var(--pink); }
.contact-section .contact-form-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-section .form-group { margin-bottom: 20px; }
.contact-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.2);
  color: var(--white);
  border-radius: 4px;
  font-family: inherit;
}
.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder { color: #999; }
.contact-section .btn-outline-pink {
  color: var(--pink);
  border-color: var(--pink);
}
.contact-section .btn-outline-pink:hover {
  color: var(--white);
  border-color: var(--white);
}

.booking-on-contact-section {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
}
.booking-on-contact-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.booking-on-contact-title {
  font-size: 32px;
  color: var(--pink);
  margin-bottom: 16px;
}
.booking-on-contact-lead { font-size: 1.1rem; margin-bottom: 12px; opacity: 0.95; }
.booking-on-contact-text { opacity: 0.85; }
.booking-on-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 28px;
}
.booking-on-contact-card {
  background: rgba(255,255,255,0.05);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.booking-on-contact-icon { font-size: 2.25rem; margin-bottom: 14px; }
.booking-on-contact-card h3 { font-size: 1.2rem; color: var(--pink); margin-bottom: 12px; }
.booking-on-contact-card p { margin-bottom: 20px; font-size: 0.95rem; opacity: 0.9; }
.booking-on-contact-card .btn {
  color: var(--pink);
  border-color: var(--pink);
}
.booking-on-contact-card .btn:hover {
  color: var(--white);
  border-color: var(--white);
}
.booking-on-contact-note {
  max-width: 640px;
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 4px solid var(--pink);
}
.booking-on-contact-note p { margin-bottom: 16px; }
.booking-on-contact-note .btn {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.booking-on-contact-note .btn:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
}

.map-section {
  padding: 60px 0;
  background: var(--gray-light);
}
.map-section .section-title { color: var(--black); }
.map-container { border-radius: 8px; overflow: hidden; }
.map-container iframe { display: block; }

@media (max-width: 768px) {
  .contact-section .contact-content,
  .booking-on-contact-grid { grid-template-columns: 1fr; }
}

/* ========== Pricing page (ciemne tło z ramkami) ========== */
.pricing-page-section {
  padding: 120px 0 80px;
  background: var(--black);
  color: var(--white);
}
.pricing-page-title {
  margin-bottom: 12px;
}
.pricing-page-lead {
  text-align: left;
  margin: 0 0 40px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}
.pricing-filters { padding: 30px 0; margin-bottom: 40px; }
.pricing-search { margin-bottom: 25px; }
.pricing-search-input {
  width: 100%;
  max-width: 400px;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.pricing-search-input::placeholder { color: #999; }
.pricing-search-input:focus {
  outline: none;
  border-color: var(--pink);
}
.pricing-category-filters { display: flex; flex-wrap: wrap; gap: 12px; }
.pricing-filter-btn {
  padding: 12px 24px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}
.pricing-filter-btn:hover,
.pricing-filter-btn.active {
  color: var(--pink);
  border-color: var(--pink);
}
.pricing-category-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-category-title {
  font-size: 28px;
  color: var(--pink);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.pricing-category-note {
  background: rgba(255,255,255,0.05);
  padding: 15px 20px;
  border-left: 4px solid var(--pink);
  margin-bottom: 25px;
  font-size: 15px;
}
.pricing-table { margin-top: 20px; }
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing-row.odd { background: rgba(255,255,255,0.02); }
.pricing-row.even { background: transparent; }
.pricing-row:hover { background: rgba(255,255,255,0.08); }
.pricing-service { font-size: 16px; }
.pricing-service-note { display: block; font-size: 13px; opacity: 0.85; margin-top: 4px; }
.pricing-price { font-size: 18px; color: var(--pink); font-weight: 700; text-align: right; }
.pricing-subcategory { margin-top: 30px; padding-top: 30px; border-top: 2px solid rgba(255,255,255,0.1); }
.pricing-subcategory h3 { font-size: 22px; margin-bottom: 20px; }
.no-results { text-align: center; padding: 40px; color: rgba(255,255,255,0.8); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title.text-center { text-align: center; }

/* ========== STREFA DOTLENIENIA - O2 THEME ========== */
body.o2-page {
  --o2-primary: #64a8ff;
  --o2-primary-light: #8bc5ff;
  --o2-primary-dark: #4a8fff;
  --o2-bg: #f8fafd;
  --o2-dark: #2C2C2C;
  --o2-card: #3A3A3A;
}

body.o2-page { background: var(--o2-bg); }

/* O2 Scroll reveal animations */
.o2-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.o2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.o2-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.o2-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.o2-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.o2-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.o2-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.o2-reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
/* Stagger delays for grid items */
.o2-reveal-group .o2-reveal:nth-child(1) { transition-delay: 0.05s; }
.o2-reveal-group .o2-reveal:nth-child(2) { transition-delay: 0.1s; }
.o2-reveal-group .o2-reveal:nth-child(3) { transition-delay: 0.15s; }
.o2-reveal-group .o2-reveal:nth-child(4) { transition-delay: 0.2s; }
.o2-reveal-group .o2-reveal:nth-child(5) { transition-delay: 0.25s; }
.o2-reveal-group .o2-reveal:nth-child(6) { transition-delay: 0.3s; }
.o2-reveal-group .o2-reveal:nth-child(7) { transition-delay: 0.35s; }
.o2-reveal-group .o2-reveal:nth-child(8) { transition-delay: 0.4s; }

/* O2 Header Override */
body.o2-page .beauty-header { background: var(--o2-primary); z-index: 9999; }
body.o2-page .beauty-header .nav-link { color: var(--white); }
body.o2-page .beauty-header .logo-link { color: var(--white); }
body.o2-page .beauty-header.scrolled { background: var(--o2-primary); }
body.o2-page .beauty-header.scrolled .nav-link { color: var(--white); }
body.o2-page .beauty-header.scrolled .logo-link { color: var(--white); }

/* O2 Hero Section */
.o2-hero {
  background: var(--o2-primary);
  padding: 120px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.o2-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.o2-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.o2-hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.o2-hero-image--float {
  animation: heroImageFloat 4s ease-in-out infinite;
}
@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.o2-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* O2 Hero Text & Buttons */
.o2-hero-text h1 {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.btn-o2-alt {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-o2-alt:hover {
  background: rgba(255,255,255,0.25);
}

.o2-hero-quote {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 28px;
  margin-bottom: 0;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .o2-hero-quote { font-size: 1.1rem; letter-spacing: 0.15em; }
}

/* O2 Features Grid (kafelki + 1,5 ATA) */
.o2-features {
  padding: 80px 0;
  background: var(--o2-dark);
}
.o2-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.o2-feature-card {
  background: var(--o2-card);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.o2-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--o2-primary);
  box-shadow: 0 15px 40px rgba(100, 168, 255, 0.25);
}
.o2-feature-card--regular {
  /* Regularny kafelek jak inne - ze zdjęciem */
}
.o2-feature-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.o2-feature-content {
  padding: 30px;
}
.o2-feature-content h3 {
  color: var(--o2-primary);
  font-size: 22px;
  margin-bottom: 12px;
}
.o2-feature-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
}

/* O2 Section Title */
body.o2-page .section-title {
  color: var(--o2-dark);
}
body.o2-page .section-title::after {
  background: var(--o2-primary);
}
.o2-section-title {
  color: var(--o2-primary) !important;
  text-align: center;
  margin-bottom: 50px;
}

/* O2 Indications */
.o2-indications {
  padding: 80px 0;
  background: var(--o2-dark);
}
.o2-indications-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.o2-indications-intro h2 {
  color: var(--o2-primary);
  font-size: 36px;
  margin-bottom: 15px;
}
.o2-indications-intro p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}
.o2-indications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.o2-indication-item {
  background: var(--o2-card);
  padding: 40px 30px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.o2-indication-item:hover {
  transform: translateY(-5px);
  border-color: var(--o2-primary);
  box-shadow: 0 10px 30px rgba(100, 168, 255, 0.25);
}
.o2-indication-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}
.o2-indication-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(58%) sepia(95%) saturate(800%) hue-rotate(190deg) brightness(1.1);
}
.o2-indication-item h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

/* O2 How It Works - Steps */
.o2-how-it-works {
  padding: 80px 0;
  background: var(--o2-bg);
}
.o2-intro-banner {
  background: #E6F7FF;
  padding: 30px 40px;
  border-radius: 12px;
  border-left: 5px solid var(--o2-primary);
  max-width: 900px;
  margin: 0 auto 50px;
  box-shadow: 0 5px 20px rgba(100, 168, 255, 0.1);
}
.o2-intro-banner p {
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}
.o2-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.o2-step {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.o2-step:hover {
  border-color: var(--o2-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(100, 168, 255, 0.15);
}
.o2-step-icon {
  width: 100px;
  height: 100px;
  background: var(--o2-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 50px;
}
.o2-step h3 {
  color: var(--o2-dark);
  font-size: 22px;
  margin-bottom: 15px;
}
.o2-step p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* Sekcja: Dlaczego 1,5 ATA? */
.o2-ata-section {
  padding: 80px 0;
  background: var(--o2-bg);
}
.o2-ata-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--o2-dark);
}
.o2-ata-content p {
  margin: 0 0 1.25em;
}
.o2-ata-content p:last-child {
  margin-bottom: 0;
}
.o2-ata-lead {
  font-size: 18px;
  color: var(--o2-dark);
  margin-bottom: 1.5em !important;
}
.o2-ata-highlight {
  background: #E6F7FF;
  padding: 24px 28px;
  border-radius: 12px;
  border-left: 5px solid var(--o2-primary);
  margin: 1.75em 0;
}
.o2-ata-highlight p {
  margin: 0 0 14px !important;
}
.o2-ata-highlight p:last-of-type {
  margin-bottom: 0 !important;
}
.o2-ata-list {
  margin: 12px 0 0;
  padding-left: 1.4em;
  list-style: none;
}
.o2-ata-list li {
  position: relative;
  margin-bottom: 8px;
}
.o2-ata-list li::before {
  content: "→";
  position: absolute;
  left: -1.4em;
  color: var(--o2-primary);
  font-weight: 700;
}
.o2-ata-compare {
  background: rgba(100, 168, 255, 0.08);
  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid rgba(100, 168, 255, 0.25);
  margin: 1.5em 0 !important;
}
.o2-ata-close {
  font-weight: 500;
  margin-top: 1.5em !important;
}

/* O2 Benefits Timeline (jak w pierwowzorze – pionowa linia, okrągłe ikony) */
.o2-benefits {
  padding: 80px 0;
  background: var(--o2-dark);
}
.o2-benefits-toggle-wrap {
  text-align: center;
  margin-bottom: 40px;
}
.o2-benefits-toggle-wrap.hidden {
  display: none;
}
.btn-o2-outline {
  background: transparent;
  border: 2px solid var(--o2-primary);
  color: var(--o2-primary);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
}
.btn-o2-outline:hover {
  background: var(--o2-primary);
  color: var(--white);
}
.o2-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.o2-timeline.is-expanded {
  max-height: 5000px;
  opacity: 1;
}
.o2-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--o2-primary);
  transform: translateX(-50%);
}
.o2-timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.o2-timeline-icon {
  position: relative;
  width: 100px;
  height: 100px;
  min-width: 100px;
  background: var(--o2-card);
  border: 3px solid var(--o2-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o2-primary);
  z-index: 2;
  box-shadow: 0 4px 20px rgba(100, 168, 255, 0.3);
  overflow: hidden;
}
.o2-timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.o2-timeline-item:hover .o2-timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(100, 168, 255, 0.5);
}
.o2-timeline-content {
  flex: 1;
  background: var(--o2-card);
  padding: 30px;
  border-radius: 0;
  border-left: 4px solid var(--o2-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.o2-timeline-item:hover .o2-timeline-content {
  box-shadow: 0 6px 30px rgba(100, 168, 255, 0.3);
  transform: translateX(5px);
}
.o2-timeline-content h3 {
  color: var(--o2-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.o2-timeline-content p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
.o2-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.o2-timeline-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.o2-timeline-list li:last-child {
  border-bottom: none;
}
.o2-timeline-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--o2-primary);
  font-weight: bold;
  font-size: 18px;
}

/* O2 Price Tiles (tekstowe kafelki) */
.o2-pricing {
  padding: 80px 0;
  background: var(--o2-bg);
}
.o2-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.o2-price-card {
  background: var(--o2-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(100, 168, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: priceCardFloat 3s ease-in-out infinite;
}
.o2-price-card:nth-child(1) { animation-delay: 0s; }
.o2-price-card:nth-child(2) { animation-delay: 0.3s; }
.o2-price-card:nth-child(3) { animation-delay: 0.6s; }
.o2-price-card:nth-child(4) { animation-delay: 0.9s; }
@keyframes priceCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.o2-price-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 40px rgba(100, 168, 255, 0.4);
  z-index: 10;
}
.o2-price-card-inner {
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.o2-price-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  padding: 25px 25px 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.o2-price-per-session-wrap {
  flex: 1;
  min-height: 80px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.o2-price-per-session {
  font-size: 36px;
  font-weight: 700;
  color: var(--o2-primary);
}
.o2-price-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  padding: 10px 25px;
}
.o2-price-total {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  padding: 15px 25px 25px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* O2 Flip Cards – jasne tło sekcji, różne kolory kafelków */
.o2-flip-cards-section {
  padding: 80px 0;
  background: var(--o2-dark);
}
.o2-flip-cards-section--light {
  background: var(--o2-bg);
}
.o2-flip-cards-section--light .o2-section-title--dark {
  color: var(--o2-dark) !important;
}
.o2-flip-cards-lead {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}
.o2-flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.o2-flip-card {
  height: 300px;
  perspective: 1000px;
  cursor: pointer;
}
.o2-flip-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.o2-flip-card:hover .o2-flip-card-inner {
  transform: rotateY(180deg);
}
.o2-flip-card-front, .o2-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}
.o2-flip-card-front h3 {
  color: var(--white);
  font-size: 22px;
  text-align: center;
  font-weight: 600;
}
.o2-flip-card--blue .o2-flip-card-front { background: #64a8ff; }
.o2-flip-card--teal .o2-flip-card-front { background: #2d9d8a; }
.o2-flip-card--navy .o2-flip-card-front { background: #3d5a80; }
.o2-flip-card--slate .o2-flip-card-front { background: #4a5568; }
.o2-flip-card--sky .o2-flip-card-front { background: #0ea5e9; }
.o2-flip-card--indigo .o2-flip-card-front { background: #6366f1; }
.o2-flip-card--cobalt .o2-flip-card-front { background: #2563eb; }
.o2-flip-card-back {
  background: var(--o2-card);
  transform: rotateY(180deg);
}
.o2-flip-cards-section--light .o2-flip-card-back {
  background: #374151;
}
.o2-flip-card-back p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

/* O2 Accordion */
.o2-accordion-section {
  padding: 80px 0;
  background: var(--o2-bg);
}
.o2-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.o2-accordion details {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.o2-accordion details:hover {
  border-color: var(--o2-primary);
}
.o2-accordion summary {
  padding: 22px 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--o2-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  list-style: none;
  background: #e8f2fc;
}
.o2-accordion summary::-webkit-details-marker {
  display: none;
}
.o2-accordion summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  color: var(--o2-primary);
  transition: transform 0.3s;
}
.o2-accordion details[open] summary::after {
  transform: rotate(45deg);
}
.o2-accordion summary:hover {
  background: #d4e8f9;
}
.o2-accordion details[open] summary {
  background: var(--o2-primary);
  color: var(--white);
}
.o2-accordion details[open] summary::after {
  color: var(--white);
}
.o2-accordion .o2-acc-body {
  padding: 25px 30px;
  color: #555;
  line-height: 1.8;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.o2-accordion .o2-acc-body ul, .o2-accordion .o2-acc-body ol {
  padding-left: 25px;
  margin: 15px 0;
}
.o2-accordion .o2-acc-body li {
  margin-bottom: 10px;
}
.o2-accordion .o2-acc-body h4 {
  color: var(--o2-dark);
  margin: 20px 0 10px;
  font-size: 18px;
}

/* O2 CTA Booking */
.o2-booking {
  padding: 80px 0;
  background: var(--o2-primary);
  text-align: center;
}
.o2-booking h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 15px;
}
.o2-booking p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: 30px;
}
.o2-booking-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.o2-booking .btn-white {
  background: var(--white);
  color: var(--o2-primary);
  border: 2px solid var(--white);
}
.o2-booking .btn-white:hover {
  background: transparent;
  color: var(--white);
}
.o2-booking .btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.o2-booking .btn-outline-white:hover {
  background: var(--white);
  color: var(--o2-primary);
}

/* O2 Note */
.o2-note {
  text-align: center;
  font-style: italic;
  color: #888;
  padding: 30px;
  font-size: 14px;
  background: var(--o2-bg);
}

/* O2 Responsive */
@media (max-width: 991px) {
  .o2-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .o2-hero-text h1 { font-size: 36px; }
  .o2-timeline::before { left: 30px; }
  .o2-timeline-item { flex-direction: column; gap: 20px; margin-bottom: 40px; }
  .o2-timeline-icon { width: 60px; height: 60px; min-width: 60px; align-self: flex-start; }
  .o2-steps { grid-template-columns: 1fr; }
  .o2-indications-grid { grid-template-columns: repeat(2, 1fr); }
  .o2-price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .o2-hero { padding: 140px 0 60px; }
  .o2-hero-text h1 { font-size: 28px; }
  .o2-indications-grid { grid-template-columns: 1fr; }
  .o2-price-grid { grid-template-columns: 1fr; }
  .o2-flip-cards-grid { grid-template-columns: 1fr; }
  .o2-features-grid { grid-template-columns: 1fr; }
  .o2-feature-card-ata-inner { padding: 25px; }
}
