/* ============================================
   KWIACIARNIA IRENA STEFANIUK-WIERZBICKA
   Style główne
   ============================================ */

/* --- RESET & BAZA --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- ZMIENNE --- */
:root {
  --rose:        #c07077;
  --rose-light:  #f5e6e8;
  --rose-dark:   #9d555c;
  --sage:        #7a9e87;
  --sage-light:  #e8f0ea;
  --cream:       #fdf8f3;
  --dark:        #1e1e1e;
  --text:        #4a4a4a;
  --text-light:  #7a7a7a;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.3s ease;
  --max-width:   1160px;
}

/* --- KONTENERY --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAFIA --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
p  { color: var(--text); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
strong { color: var(--dark); font-weight: 700; }

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 8px !important;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 48px !important;
}

/* --- PRZYCISKI --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,112,119,0.35);
}
.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: #fff;
}
.btn-full { width: 100%; margin-top: 24px; }
.btn-small { padding: 10px 22px; font-size: 0.85rem; }

/* --- ANIMACJE SCROLL --- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-left.visible {
  opacity: 1;
  transform: none;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}
/* stagger dla dzieci siatek */
.fade-in:nth-child(2), .fade-in-left:nth-child(2) { transition-delay: 0.12s; }
.fade-in:nth-child(3), .fade-in-left:nth-child(3) { transition-delay: 0.22s; }
.fade-in:nth-child(4), .fade-in-left:nth-child(4) { transition-delay: 0.32s; }
.fade-in:nth-child(5) { transition-delay: 0.40s; }
.fade-in:nth-child(6) { transition-delay: 0.48s; }

/* ============================================
   NAWIGACJA
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  padding: 12px 0;
}
#navbar.scrolled .logo-text,
#navbar.scrolled .nav-links a {
  color: var(--dark);
}
#navbar.scrolled .logo-icon {
  color: var(--rose);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo-icon {
  font-size: 1.8rem;
  color: #fff;
  transition: color var(--transition);
  line-height: 1;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  transition: color var(--transition);
}
.logo-text small {
  font-size: 0.72rem;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  opacity: 0.8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.92);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }
#navbar.scrolled .nav-cta { background: var(--rose) !important; color: #fff !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  transition: background var(--transition);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .burger { background: rgba(0,0,0,0.08); }
#navbar.scrolled .burger span { background: var(--dark); }
#navbar.menu-open { background: rgba(22,10,8,1) !important; box-shadow: none !important; }
#navbar.menu-open .burger { background: rgba(255,255,255,0.12); }
#navbar.menu-open .burger span { background: #fff; }
.nav-links.open a { color: #fff !important; }
.nav-close-wrap { flex: none !important; position: absolute; top: 20px; right: 20px; }
.nav-close-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-close-btn:hover { background: rgba(255,255,255,0.2); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 1;
  transform-origin: center center;
  animation: kenBurns 18s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,5,5,0.55) 0%, rgba(10,5,5,0.35) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  text-align: center;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-content h1 em {
  font-style: italic;
  color: #f5c6cc;
  display: inline;
}
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  right: 40px;
  z-index: 2;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.85rem;
}
.hero-badge span:first-child {
  font-size: 1.4rem;
  color: #f5c6cc;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
  margin-top: -8px;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--dark);
  padding: 20px 24px;
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  color: #fff;
}
.trust-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #f5c6cc;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   O NAS
   ============================================ */
#o-nas {
  padding: 100px 0;
  background: var(--cream);
}
.o-nas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.o-nas-text h2 { margin-bottom: 24px; }
.credentials-full {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid var(--rose-light);
}
.cred-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.cred-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: none;
}
.cred-item img {
  max-height: 200px;
  max-width: 220px;
  width: auto;
  border-radius: 6px;
}
.cred-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--rose-light);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center bottom;
  padding: 0;
}
.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--sage-light);
  z-index: -1;
}
.highlight-box {
  margin-top: 20px;
  background: var(--rose-light);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  position: relative;
}
.highlight-box::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0;
  color: var(--rose);
  opacity: 0.3;
  position: absolute;
  top: 32px;
  left: 24px;
}
.hb-icon { display: none; }
.hb-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   OFERTA
   ============================================ */
#oferta {
  padding: 100px 0;
  background: #fff;
}
.oferta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.oferta-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oferta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}
.oferta-card--featured {
  background: linear-gradient(135deg, var(--rose-light), #fdeaec);
  border-color: var(--rose-light);
}
.oferta-card--featured:hover { border-color: var(--rose); }
.oferta-card--cta {
  background: var(--dark);
  color: #fff;
}
.oferta-card--cta h3, .oferta-card--cta p { color: rgba(255,255,255,0.9); }
.oferta-card--cta strong { color: #f5c6cc; }
.oferta-icon { line-height: 1; }
.oferta-icon svg { width: 38px; height: 38px; stroke: var(--rose); }
.oferta-card--featured .oferta-icon svg { stroke: var(--rose-dark); }
.oferta-card--cta .oferta-icon svg { stroke: rgba(255,255,255,0.85); }
.oferta-card h3 { font-size: 1.3rem; margin-bottom: 0; }
.oferta-card ul { margin: 0; }
.oferta-card ul li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.oferta-card ul li::before { content: '✓'; color: var(--sage); font-weight: 700; font-size: 0.75rem; }
.card-link {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 700;
  margin-top: auto;
  letter-spacing: 0.02em;
}
.oferta-card:hover .card-link { text-decoration: underline; }

/* ============================================
   GALERIA
   ============================================ */
#galeria {
  padding: 100px 0;
  background: var(--cream);
}
#galeria .container { margin-bottom: 24px; }

/* Filtry */
.gal-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gal-filter {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--rose-light);
  background: transparent;
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.gal-filter:hover,
.gal-filter.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

/* Grid */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--rose-light);
  aspect-ratio: 1/1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gal-item.hidden {
  display: none;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================
   DLACZEGO MY
   ============================================ */
#dlaczego {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sage-light) 0%, #f0f7f2 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.why-item:hover { transform: translateY(-4px); }
.why-icon {
  margin-bottom: 16px;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-item p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================
   KONTAKT
   ============================================ */
#kontakt {
  padding: 100px 0;
  background: #fff;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kontakt-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform var(--transition);
}
.kontakt-block:hover { transform: translateX(4px); }
.k-icon {
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-icon svg { width: 44px; height: 44px; stroke: var(--rose); }
.k-icon svg { width: 26px; height: 26px; stroke: var(--rose); }
.kontakt-block h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}
.kontakt-block p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--text);
}
.kontakt-block a {
  color: var(--dark);
  font-weight: 600;
}
.kontakt-block a:hover { color: var(--rose); }
.kontakt-mapa iframe { width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--dark);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.footer-brand .logo-icon { font-size: 1.6rem; color: #f5c6cc; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================
   RESPONSYWNOŚĆ
   ============================================ */
@media (max-width: 1024px) {
  .oferta-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .o-nas-grid { grid-template-columns: 1fr; gap: 40px; }
  .o-nas-image { order: -1; }
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(22,10,8,1);
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 0;
    z-index: 999;
    padding: 80px 0 48px;
    animation: none;
  }
  .nav-links.open {
    display: flex;
    animation: menuIn 0.2s ease;
  }
  @keyframes menuIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .nav-links a {
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    padding: 0;
    width: 100%;
    text-align: center;
    border-bottom: none;
    letter-spacing: 0.04em;
    border-radius: 0;
    transition: color 0.2s;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }
  .nav-links a:hover { color: var(--rose-light); background: none; }
  .nav-links .nav-cta {
    background: var(--rose) !important;
    color: #fff !important;
    border-radius: 50px !important;
    flex: none !important;
    padding: 14px 44px !important;
    width: auto !important;
    margin-top: 8px;
  }
  .hero-badge { display: none; }
  .hero-buttons { flex-direction: row; gap: 12px; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .trust-inner { gap: 0; }
  .trust-divider { display: none; }
  .trust-item { padding: 8px 20px; width: 50%; }
  .oferta-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { width: 100%; }
  .trust-divider { display: block; width: 60px; height: 1px; }
}

/* ============================================
   BANER COOKIES RODO
   ============================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1a1a1a;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
#cookie-banner.cb-visible { transform: translateY(0); }
.cb-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 280px; }
.cb-text strong { color: #fff; font-size: 15px; display: block; margin-bottom: 4px; }
.cb-text p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; margin: 0; }
.cb-text a { color: var(--rose); text-decoration: none; }
.cb-text a:hover { text-decoration: underline; }
.cb-buttons {
  display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0;
}
.cb-btn {
  padding: 10px 18px; border-radius: 6px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cb-btn:hover { transform: translateY(-1px); }
.cb-btn-accept { background: var(--rose); color: #fff; }
.cb-btn-accept:hover { background: var(--rose-dark); }
.cb-btn-necessary { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }
.cb-btn-necessary:hover { background: rgba(255,255,255,0.18); }
.cb-btn-settings { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.15); }
.cb-btn-settings:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }
.cb-panel-inner { max-width: 1080px; margin: 0 auto; padding: 20px 0 8px; }
.cb-panel-inner h3 { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 700; }
.cb-option { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cb-option:last-of-type { border-bottom: none; }
.cb-option-info { flex: 1; }
.cb-option-info strong { color: #fff; font-size: 14px; display: block; margin-bottom: 2px; }
.cb-option-info span { color: rgba(255,255,255,0.4); font-size: 12px; line-height: 1.4; }
.cb-toggle-locked .cb-toggle-on { color: #6FCF97; font-size: 12px; font-weight: 600; }
.cb-toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cb-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cb-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.15); border-radius: 24px; transition: background 0.2s; }
.cb-slider:before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform 0.2s; }
.cb-toggle-switch input:checked + .cb-slider { background: var(--rose); }
.cb-toggle-switch input:checked + .cb-slider:before { transform: translateX(20px); }
.cb-panel-actions { padding-top: 16px; }
@media (max-width: 600px) {
  #cookie-banner { padding: 16px; }
  .cb-buttons { width: 100%; flex-direction: column; gap: 8px; }
  .cb-btn { width: 100%; min-width: 0; padding: 10px 12px; }
}
