﻿* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #0A1E33;
    --primary-dark: #061526;
    --primary-light: #1A3F66;
    --accent: #B8510E;
    --accent-hover: #9A440B;
    --accent-light: #E07020;
    --accent-bg: #FFF0E6;
    --light-bg: #F5F7FA;
    --dark: #111111;
    --gray: #2C2C2C;
    --gray-light: #444444;
    --white: #FFFFFF;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Roboto, system-ui, sans-serif; background: var(--light-bg); color: var(--dark); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar { 
    background: var(--white); 
    box-shadow: 0 2px 16px rgba(0,0,0,0.06); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    padding: 16px 0 12px 0; 
    border-bottom: 3px solid var(--accent);
}
.navbar .container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 12px; 
    position: relative;
}

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; position: relative; z-index: 2; }
.logo a {
    display: block;
    width: 160px;
    height: 110px;
    background: var(--white);
    padding: 8px;
    transition: var(--transition);
    margin-top: -30px;
    margin-bottom: -30px;
    flex-shrink: 0;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(184, 81, 14, 0.20);
}
.logo a:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(184, 81, 14, 0.35); }
.logo img { width: 100%; height: 100%; object-fit: contain; }

/* ===== NAV LINKI ===== */
.nav-links { display: flex; list-style: none; gap: 4px; flex-wrap: wrap; align-items: center; }
.nav-links a { 
    padding: 10px 22px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    color: var(--primary); 
    transition: var(--transition); 
    border-radius: 4px;
}
.nav-links a:hover, 
.nav-links a.active { 
    background: var(--primary); 
    color: var(--white); 
}
.nav-links a.active { 
    background: var(--accent); 
    color: var(--white); 
}
.nav-cta { 
    background: var(--accent); 
    color: var(--white) !important; 
}
.nav-cta:hover { 
    background: var(--primary) !important; 
}

/* ===== SLIDER ===== */
.slider-section { background: var(--white); padding: 30px 0 50px 0; }
.slider-wrapper { position: relative; max-width: 1400px; margin: 0 auto; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.slider { display: flex; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slider .slide { position: relative; min-width: 100%; height: 560px; }
.slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.slider .slide .slide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(10,30,51,0.80) 0%, rgba(10,30,51,0.30) 100%); }
.slider .slide .slide-content { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); color: var(--white); max-width: 580px; z-index: 2; }
.slider .slide .slide-content .tag { 
    display: inline-block; 
    background: var(--accent); 
    padding: 4px 18px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    margin-bottom: 14px; 
    color: var(--white); 
    border-radius: 4px;
}
.slider .slide .slide-content h1 { 
    font-size: 3.4rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin-bottom: 12px; 
    color: var(--white); 
    background: rgba(10, 30, 51, 0.7);
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    max-width: 100%;
}
.slider .slide .slide-content h1 span { color: var(--accent); }
.slider .slide .slide-content p { 
    font-size: 1.2rem; 
    color: #FFFFFF; 
    margin-bottom: 28px; 
    background: rgba(10, 30, 51, 0.7);
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    max-width: 100%;
}

/* ===== PRZYCISKI SLIDERA - STRZAŁKI SVG ===== */
.slider-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(10, 30, 51, 0.85); 
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white); 
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; 
    transition: var(--transition); 
    z-index: 10;
    border-radius: 50%;
}
.slider-btn:hover { 
    background: var(--accent); 
    color: var(--white); 
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}
.slider-btn:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== KROPKI SLIDERA ===== */
.slider-dots { 
    position: absolute; 
    bottom: 24px; 
    left: 50%; 
    transform: translateX(-50%); 
    display: flex; 
    gap: 12px; 
    z-index: 10; 
}
.slider-dots span { 
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: 50%;
    background: transparent;
}
.slider-dots span::after {
    content: '';
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    transition: var(--transition);
}
.slider-dots span.active::after {
    background: var(--accent);
    width: 44px;
}
.slider-dots span:hover::after,
.slider-dots span:focus-visible::after {
    background: rgba(255,255,255,0.9);
}
.slider-dots span.active:hover::after {
    background: var(--accent-light);
}
.slider-dots span:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== PRZYCISK W SLIDERZE ===== */
.btn-slider { 
    display: inline-block; 
    background: var(--accent); 
    color: var(--white); 
    padding: 14px 38px; 
    font-weight: 700; 
    font-size: 1rem; 
    transition: var(--transition); 
    border: none; 
    cursor: pointer; 
    min-height: 52px;
    min-width: 52px;
    border-radius: 4px;
}
.btn-slider:hover { 
    background: var(--accent-hover); 
    transform: scale(1.03); 
    box-shadow: 0 8px 24px rgba(184,81,14,0.30); 
}

/* ===== SEKCJE ===== */
section { padding: 80px 0; }
.section-title { 
    font-size: 2.4rem; 
    font-weight: 700; 
    color: var(--primary); 
    margin-bottom: 16px; 
    position: relative; 
    display: inline-block; 
}
.section-title:after { 
    content: ''; 
    position: absolute; 
    bottom: -8px; 
    left: 0; 
    width: 60px; 
    height: 4px; 
    background: var(--accent); 
}
.section-subtitle { 
    font-size: 1.1rem; 
    color: var(--gray); 
    max-width: 700px; 
    margin-bottom: 36px; 
}
.text-center { text-align: center; }
.text-center .section-title:after { left: 50%; transform: translateX(-50%); }

/* ===== EFEKT POJAWIANIA ===== */
.fade-section { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ===== O FIRMIE ===== */
#about { background: var(--white); padding: 80px 0; }
.about-text { max-width: 1000px; margin: 0 auto; }
.about-text p { 
    color: var(--gray); 
    margin-bottom: 20px; 
    font-size: 1.05rem; 
    line-height: 1.8; 
    text-align: left; 
}
.about-text .highlight { 
    color: var(--primary); 
    font-weight: 600; 
}
.about-text strong { 
    color: var(--primary); 
}
.about-text .features-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 32px 0 24px 0; justify-content: center; }
.about-text .feature-item { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: var(--light-bg); 
    padding: 12px 24px; 
    border-left: 3px solid var(--accent); 
    color: var(--gray);
    border-radius: 4px;
}
.about-text .feature-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--primary);
}
.about-text .feature-item span { 
    font-weight: 600; 
    color: var(--primary); 
}
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; justify-content: center; }

/* ===== PRZYCISKI ===== */
.btn-primary { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    background: var(--accent); 
    color: var(--white); 
    padding: 14px 36px; 
    font-weight: 700; 
    transition: var(--transition); 
    border: none; 
    cursor: pointer; 
    font-size: 1rem; 
    min-height: 52px;
    min-width: 52px;
    border-radius: 4px;
}
.btn-primary:hover { 
    background: var(--accent-hover); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 24px rgba(184,81,14,0.25); 
}
.btn-outline { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    background: transparent; 
    color: var(--primary); 
    padding: 12px 34px; 
    font-weight: 700; 
    border: 2px solid var(--primary); 
    transition: var(--transition); 
    font-size: 1rem; 
    min-height: 52px;
    min-width: 52px;
    border-radius: 4px;
}
.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white); 
}

/* ===== OFERTA ===== */
#offer { background: var(--light-bg); }
.offer-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 32px; }
.offer-tab { 
    padding: 12px 28px; 
    min-height: 48px;
    min-width: 48px;
    background: var(--white); 
    border: 2px solid transparent; 
    font-weight: 600; 
    color: var(--primary); 
    cursor: pointer; 
    transition: var(--transition); 
    font-size: 0.9rem; 
    border-radius: 4px;
}
.offer-tab:hover { border-color: var(--accent); }
.offer-tab.active { 
    background: var(--primary); 
    color: var(--white); 
    border-color: var(--primary); 
}
.offer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ===== KARTY PRODUKTÓW ===== */
.offer-card { 
    background: var(--white); 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    transition: var(--transition); 
    border: 1px solid rgba(0,0,0,0.04);
    display: flex; 
    flex-direction: column; 
    cursor: pointer; 
    border-radius: 4px;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }

.offer-img-wrapper { 
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
    background: #fafafa; 
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offer-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    transition: var(--transition); 
}
.offer-card:hover .offer-img-wrapper img { transform: scale(1.04); }

.offer-card-body { padding: 18px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.offer-card-body h3 { 
    font-size: 1.1rem; 
    color: var(--primary); 
    margin-bottom: 2px; 
}
.offer-card-body .code { 
    font-size: 0.8rem; 
    color: var(--primary); 
    font-weight: 700; 
    margin-bottom: 8px; 
}
.offer-card-body p { 
    font-size: 0.9rem; 
    color: var(--gray); 
    line-height: 1.5; 
    flex: 1; 
}
.offer-card-body .badge { 
    display: inline-block; 
    background: var(--accent); 
    color: var(--white); 
    padding: 4px 14px; 
    font-size: 0.7rem; 
    font-weight: 700; 
    letter-spacing: 0.5px; 
    margin-top: 12px; 
    align-self: flex-start; 
    border-radius: 4px;
}

/* ===== LIGHTBOX ===== */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 2000; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85%; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox .close { 
    position: absolute; 
    top: 30px; 
    right: 40px; 
    color: var(--white); 
    font-size: 3.2rem; 
    cursor: pointer; 
    transition: var(--transition); 
    background: none; 
    border: none; 
    min-width: 48px;
    min-height: 48px;
}
.lightbox .close:hover { color: var(--accent-light); }

/* ===== FAQ ===== */
#faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e6e9ef; padding: 16px 0; }
.faq-question { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-weight: 600; 
    font-size: 1.05rem; 
    color: var(--primary); 
    cursor: pointer; 
    min-height: 48px;
}
.faq-arrow {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
    font-weight: 700;
}
.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.3s ease; 
    color: var(--gray); 
}
.faq-item.open .faq-answer { max-height: 300px; padding: 10px 0 4px 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ===== KONTAKT - CIEMNE TŁO ===== */
#contact { 
    background: var(--primary); 
    color: var(--white); 
    padding: 70px 0 60px 0;
    position: relative;
}
#contact .section-title { color: var(--white); }
#contact .section-title:after { background: var(--accent); }
#contact .section-subtitle { color: rgba(255,255,255,0.85); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    font-size: 1.05rem; 
    color: #FFFFFF; 
    min-height: 48px;
}
.contact-icon { 
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: rgba(255,255,255,0.10); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 4px;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-light);
}
.contact-icon svg[fill="currentColor"] {
    fill: var(--accent-light);
    stroke: none;
}
.contact-item a { 
    color: var(--white); 
    transition: var(--transition); 
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}
.contact-item a:hover { color: var(--accent-light); }

/* ===== MAPA ===== */
.contact-map { 
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    position: relative;
}
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 40px 24px;
    text-align: center;
    gap: 16px;
}
.map-placeholder-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.map-placeholder-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-light);
}
.map-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}
.map-placeholder p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 8px;
}
.map-placeholder .btn-primary {
    background: var(--accent);
    color: var(--white);
}
.map-placeholder .btn-primary:hover {
    background: var(--accent-hover);
}
.contact-map iframe { 
    width: 100%; 
    height: 100%;
    min-height: 300px;
    border: 0; 
    filter: grayscale(0.15);
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== FLAGI ===== */
.lang-section { 
    background: var(--primary);
    padding: 40px 0 50px 0;
    position: relative;
}
/* Gradient przejścia z kontaktu do flag */
.lang-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    pointer-events: none;
    z-index: 1;
}
.lang-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 6px; 
    list-style: none;
    position: relative;
    z-index: 2;
}
.lang-grid li { display: inline-block; }
.lang-item { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    padding: 8px 16px;
    min-height: 44px;
    min-width: 44px;
    background: rgba(255,255,255,0.08);
    font-size: 0.9rem; 
    font-weight: 500; 
    color: rgba(255,255,255,0.8); 
    transition: var(--transition); 
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
}
.lang-item:hover { 
    background: var(--accent); 
    color: var(--white); 
    border-color: var(--accent);
    transform: translateY(-2px);
}
.lang-item img { width: 20px; height: auto; }

/* ===== STOPKA ===== */
.footer-main { 
    position: relative;
    background: var(--primary-dark); 
    color: #FFFFFF; 
    padding: 50px 0 30px;
    overflow: hidden;
}
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.footer-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 21, 38, 0.45);
}
.footer-main .container { position: relative; z-index: 1; }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-col p { 
    margin-bottom: 12px; 
    line-height: 1.7; 
    font-size: 0.95rem; 
    color: #FFFFFF; 
}
.footer-col a { 
    color: #FFFFFF; 
    transition: var(--transition); 
    display: inline-block; 
    padding: 4px 0; 
    min-height: 36px;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col strong { color: var(--white); }
.footer-copyright { 
    border-top: 1px solid rgba(255,255,255,0.10); 
    padding-top: 24px; 
    margin-top: 10px; 
    font-size: 0.85rem; 
    color: rgba(255,255,255,0.95); 
    text-align: center; 
    line-height: 1.8; 
}
.footer-copyright a { color: #FFFFFF; }
.footer-copyright a:hover { color: #FFB366; }
.footer-copyright .ai-meta { font-size: 0.75rem; margin-top: 6px; opacity: 1; color: rgba(255,255,255,0.9); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
    .slider .slide { height: 420px; }
    .slider .slide .slide-content h1 { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }
    .logo a { width: 80px; height: 80px; margin-top: -24px; margin-bottom: -24px; }
}
@media (max-width: 768px) {
    .navbar .container { flex-direction: column; align-items: center; }
    .logo { margin-bottom: 4px; }
    .logo a { width: 72px; height: 72px; margin-top: -20px; margin-bottom: -20px; }
    .nav-links { justify-content: center; }
    .nav-links a { padding: 10px 18px !important; min-height: 44px; font-size: 0.9rem !important; }
    .slider .slide { height: 340px; }
    .slider .slide .slide-content { left: 5%; max-width: 90%; }
    .slider .slide .slide-content h1 { font-size: 2rem; }
    .slider .slide .slide-content p { font-size: 1rem; }
    .slider-btn { width: 48px !important; height: 48px !important; min-width: 48px; min-height: 48px; }
    .slider-btn svg { width: 20px; height: 20px; }
    .slider-dots span { width: 44px !important; height: 44px !important; min-width: 44px !important; min-height: 44px !important; }
    .slider-dots span::after { width: 36px; }
    .slider-dots span.active::after { width: 40px; }
    .offer-grid { grid-template-columns: 1fr 1fr; }
    .offer-tab { padding: 10px 20px !important; min-height: 44px; font-size: 0.9rem !important; }
    .footer-columns { grid-template-columns: 1fr; gap: 24px; }
    .lang-section { padding: 30px 0 40px 0; }
    .lang-section::before { height: 30px; top: -30px; }
}
@media (max-width: 480px) {
    .offer-grid { grid-template-columns: 1fr; }
    .nav-links a { font-size: 0.8rem; padding: 8px 14px !important; min-height: 40px; }
    .slider .slide { height: 280px; }
    .slider .slide .slide-content h1 { font-size: 1.6rem; }
    .slider-btn { width: 40px !important; height: 40px !important; min-width: 40px; min-height: 40px; }
    .slider-btn svg { width: 18px; height: 18px; }
    .slider-dots span { width: 40px !important; height: 40px !important; min-width: 40px !important; min-height: 40px !important; }
    .slider-dots span::after { width: 32px; height: 3px; }
    .slider-dots span.active::after { width: 36px; }
    .logo a { width: 60px; height: 60px; margin-top: -16px; margin-bottom: -16px; }
    .lang-grid { gap: 4px; }
    .lang-item { padding: 6px 12px !important; min-height: 38px; min-width: 38px; font-size: 0.75rem !important; }
    .lang-item img { width: 16px; }
    .btn-primary, .btn-outline, .btn-slider { min-height: 44px; padding: 10px 24px !important; font-size: 0.9rem !important; }
    .contact-icon { width: 40px; height: 40px; min-width: 40px; min-height: 40px; }
    .contact-icon svg { width: 18px; height: 18px; }
    .map-placeholder { min-height: 240px; padding: 24px 16px; }
    .map-placeholder-icon { width: 56px; height: 56px; }
    .map-placeholder-icon svg { width: 32px; height: 32px; }
    .contact-map iframe { min-height: 240px; }
}

/* ===== DOSTĘPNOŚĆ ===== */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}
/* ===== KLASY CSP-A+ ===== */
.slider { transition: transform 0.5s ease; }
.slider.slide-pos-0 { transform: translateX(0%); }
.slider.slide-pos-1 { transform: translateX(-100%); }
.slider.slide-pos-2 { transform: translateX(-200%); }
body.no-scroll { overflow: hidden !important; }
.map-visible { display: block !important; }
.map-hidden { display: none !important; }
#mapPlaceholder.visible { display: flex !important; }
#mapPlaceholder.hidden { display: none !important; }
/* Lightbox nawigacja */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}