/* ================= ZÁKLADNÍ RESET ================= */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 120px; }
body { background-color: #ffffff; overflow-x: hidden; width: 100%; max-width: 100vw; padding-top: 110px; }
img, video { max-width: 100%; height: auto; display: block; }

/* ================= HLAVIČKA ================= */
.main-header { width: 100%; background-color: #ffffff; border-bottom: 1px solid #e0e0e0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); position: fixed; top: 0; left: 0; z-index: 5000; padding-top: 25px; }
.header-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 21px 20px; }
.logo-container { display: flex; align-items: center; }
.logo { height: 60px; }
.main-nav { display: flex; order: 1; gap: 35px; }
.nav-item { font-size: 13px; font-weight: 500; color: #555555; padding: 5px 0; transition: color 0.3s, border-bottom 0.3s; letter-spacing: 3px; text-decoration: none; }
.nav-item.active, .nav-item:hover { color: #e89547; }
.nav-item.active { border-bottom: 2px solid #e89547; }
.menu-icons { order: 2; display: flex; align-items: center; gap: 20px; }
.burger-menu { display: none; }
.admin-icon { font-size: 20px; color: #000000; cursor: pointer; }

/* ================= HOME SLIDER ================= */
.slider-container { width: 100%; padding-top: 37.5%; position: relative; overflow: hidden; background-color: #000; }
.slider-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; transition: transform 0.3s ease-in-out; }
.slide { width: 100%; height: 100%; flex-shrink: 0; position: relative; }
.desktop-img { display: block; width: 100%; height: 100%; object-fit: cover; vertical-align: bottom; }
.mobile-img { display: none; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: #000; color: #fff; border: none; padding: 15px; cursor: pointer; z-index: 50; font-size: 20px; border-radius: 5px; opacity: 0.5; transition: opacity 0.3s, background 0.3s; }
.slider-nav:hover { opacity: 0.8; background: #111; }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* ================= HOME PORTFOLIO & SECTIONS ================= */
.portfolio-section { background-color: #111111; color: #ffffff; padding: 80px 0; text-align: center; margin-top: -10px; position: relative; z-index: 10; }
.portfolio-container, .studio-container, .team-container, .clients-container, .contact-container, .footer-container, .reviews-container, .wedding-container, .social-container { max-width: 100%; margin: 0 auto; }
.studio-container, .team-container, .contact-container, .footer-container, .reviews-container, .wedding-container, .social-container { max-width: 1200px; padding: 0 20px; }
.section-subtitle { color: #e89547; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; font-weight: bold; }
.section-title { font-family: 'Times New Roman', Times, serif; font-size: 40px; font-style: italic; margin-bottom: 50px; font-weight: normal; }
.section-title.center { text-align: center; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.portfolio-item { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer; background-color: #000; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; vertical-align: bottom; }
.portfolio-item:hover img { transform: scale(1.05); }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; opacity: 0; transition: opacity 0.3s ease; }
.portfolio-item:hover .overlay { opacity: 1; }
.play-icon { font-size: 60px; color: #fff; margin-bottom: 15px; border: none; border-radius: 0; padding: 0; width: auto; height: auto; text-shadow: 0 2px 10px rgba(0,0,0,0.5); opacity: 0.4; transition: opacity 0.3s ease, transform 0.3s ease; }
.play-icon:hover { opacity: 1; transform: scale(1.1); }
.item-title { font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.item-category { font-size: 10px; font-style: italic; color: #ccc; }

/* ================= HOME STUDIO ================= */
.studio-section { background-color: #111111; color: #ffffff; padding: 80px 0; text-align: center; }
.studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; padding: 0 20px; }
.studio-img { width: 100%; padding-bottom: 56.25%; height: 0; position: relative; overflow: hidden; background-color: #000; margin-bottom: 30px; }
.studio-img img, .studio-img video { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; object-fit: cover; transition: transform 0.5s ease; }
.studio-img:hover img, .studio-img:hover video { transform: scale(1.05); }
.studio-col-title { font-family: 'Times New Roman', Times, serif; font-size: 22px; margin-bottom: 20px; font-weight: normal; letter-spacing: 1px; }
.studio-list { list-style: none; padding: 0; margin: 0; }
.studio-list li { color: #999; font-size: 11px; letter-spacing: 1px; line-height: 2.2; text-transform: uppercase; transition: color 0.3s; cursor: default; font-weight: 500; }
.studio-list li:hover { color: #fff; }

/* ================= TEAM, CLIENTS, REVIEWS ================= */
.team-section { background-color: #ffffff; color: #333333; padding: 100px 0; text-align: center; }
.team-grid { display: flex; justify-content: center; align-items: flex-end; gap: 30px; margin-top: 50px; padding: 0 20px; }
.team-member { text-align: center; width: 30%; }
.team-member.highlight { width: 36%; transform: scale(1.05); }
.member-photo { width: 100%; margin-bottom: 20px; overflow: hidden; }
.member-photo img { width: 100%; height: auto; display: block; filter: grayscale(100%); transition: filter 0.5s ease; }
.member-photo:hover img { filter: grayscale(0%); }
.member-name { font-family: 'Times New Roman', Times, serif; font-size: 20px; font-weight: bold; font-style: normal; margin-bottom: 5px; color: #000; }
.member-role { font-size: 12px; font-style: italic; color: #777; }

.clients-section { background-color: #111111; padding: 80px 0; text-align: center; color: #fff; }
.clients-slider { width: 100%; overflow: hidden; position: relative; margin-top: 40px; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.clients-track { display: flex; width: max-content; gap: 60px; animation: scroll 30s linear infinite; }
.client-logo img { height: 60px; width: auto; filter: grayscale(100%) opacity(0.6); transition: filter 0.3s; }
.client-logo img:hover { filter: grayscale(0%) opacity(1); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reviews-section { background-color: #111111; color: #ffffff; padding: 100px 0; text-align: center; border-bottom: 1px solid #222; }
.google-badge { display: flex; flex-direction: column; align-items: center; margin-bottom: 30px; }
.g-icon { font-size: 40px; margin-bottom: 10px; color: #fff; }
.g-info { display: flex; flex-direction: column; align-items: center; }
.g-rating { font-size: 24px; font-weight: bold; }
.g-stars { color: #e89547; font-size: 18px; margin: 5px 0; }
.g-text { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #999; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.review-card { background-color: #1a1a1a; padding: 40px; border-radius: 8px; text-align: left; transition: transform 0.3s ease; }
.review-card:hover { transform: translateY(-10px); }
.review-stars { color: #e89547; font-size: 14px; margin-bottom: 20px; }
.review-text { font-size: 15px; line-height: 1.6; color: #ccc; margin-bottom: 30px; font-style: italic; }
.review-author h4 { color: #fff; font-size: 16px; font-weight: bold; margin-bottom: 5px; }
.review-author span { font-size: 12px; color: #777; }

/* ================= SOCIAL & SVATBY & WEB ================= */
.social-hero, .page-hero { position: relative; width: 100%; height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background-color: #000; }
.social-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.social-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.social-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; color: #fff; margin-top: 0; }
.social-desc { font-size: 18px; color: #ddd; margin-bottom: 60px; line-height: 1.6; }
.cta-btn { display: inline-block; padding: 15px 40px; border: 2px solid #fff; color: #fff; text-decoration: none; font-weight: bold; letter-spacing: 2px; transition: all 0.3s ease; }
.cta-btn:hover { background-color: #fff; color: #000; }

.social-services { padding: 100px 0; background-color: #fff; color: #333; }
.text-dark { color: #333 !important; }
.section-description { max-width: 800px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 50px; text-align: center; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.service-card { position: relative; height: 400px; overflow: hidden; border-radius: 8px; cursor: pointer; transition: transform 0.3s ease; background-color: #000; }
.service-card:hover { transform: translateY(-10px); }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.card-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity 0.3s; }
.service-card:hover .card-bg img { opacity: 0.3; transform: scale(1.1); transition: transform 0.5s, opacity 0.3s; }
.card-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; color: #fff; z-index: 2; }
.card-icon { font-size: 30px; color: #e89547; margin-bottom: 15px; }
.card-info h3 { font-size: 24px; margin-bottom: 0; font-family: 'Times New Roman', Times, serif; font-style: italic; color: #fff; }
.card-info p { font-size: 0.9em; margin-top: 8px; opacity: 0.9; line-height: 1.4; font-weight: 300; color: #ffffff; }

.social-showcase { padding: 100px 0; background-color: #111; color: #fff; }
.text-white { color: #fff !important; }
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 50px; }
.feed-item { position: relative; aspect-ratio: 1 / 1; overflow: hidden; cursor: pointer; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.feed-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; color: #fff; font-weight: bold; font-size: 18px; opacity: 0; transition: opacity 0.3s; }
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-item:hover img { transform: scale(1.05); }
.social-stats { padding: 60px 0; background-color: #e89547; color: #fff; }
.stats-grid { display: flex; justify-content: space-around; align-items: center; text-align: center; }
.stat-number { display: block; font-size: 50px; font-weight: bold; font-family: 'Times New Roman', Times, serif; }
.stat-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

/* SVATBY specific */
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.wedding-intro { padding: 80px 0; background-color: #fff; color: #333; text-align: center; }
.intro-text-centered { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.intro-text-centered p { line-height: 1.8; margin-bottom: 20px; color: #555; font-size: 16px; }
.wedding-portfolio { background-color: #111; padding: 80px 0; color: #fff; }
.video-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.wedding-portfolio .portfolio-item { aspect-ratio: 16 / 9; }
.pricing-section { padding: 100px 0; background-color: #111; color: #fff; border-top: 1px solid #222; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card { background-color: #1a1a1a; border-radius: 8px; overflow: hidden; transition: transform 0.3s ease; position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border: 1px solid #e89547; transform: scale(1.05); z-index: 2; }
.pricing-card:hover { transform: translateY(-10px); }
.card-image img { width: 100%; height: 200px; object-fit: cover; }
.card-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.card-content h3 { color: #e89547; font-size: 18px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.price { font-size: 32px; font-weight: bold; margin-bottom: 5px; font-family: 'Times New Roman', Times, serif; font-style: italic; }
.duration { font-size: 13px; color: #888; margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.features-list { list-style: none; padding: 0; margin-bottom: 20px; flex-grow: 1; text-align: left; }
.features-list li { font-size: 14px; margin-bottom: 10px; padding-left: 20px; position: relative; color: #ccc; }
.features-list li::before { content: "•"; color: #e89547; position: absolute; left: 0; }
.card-desc { font-size: 13px; color: #777; margin-bottom: 25px; font-style: italic; }
.pricing-btn { display: block; text-align: center; background-color: #333; color: #fff; padding: 15px; text-decoration: none; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: background 0.3s; }
.pricing-btn.btn-gold { background-color: #e89547; color: #000; }
.pricing-btn:hover { background-color: #fff; color: #000; }

/* ================= KONTAKT & FOOTER ================= */
.contact-section { background-color: #ffffff; color: #333; padding: 100px 0; text-align: center; }
.contact-container { max-width: 900px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; }
.section-separator { width: 60px; height: 2px; background-color: #000000; margin: 0 auto 30px auto; }
.contact-title { font-family: 'Times New Roman', Times, serif; font-size: 45px; font-weight: bold; color: #333; margin-bottom: 50px; }
.contact-form { width: 100%; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { width: 100%; margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 18px 20px; background-color: #f9f9f9; border: none; font-family: Arial, sans-serif; font-size: 14px; color: #333; outline: none; transition: background 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { background-color: #f1f1f1; }
.form-footer { display: flex; justify-content: center; margin-top: 20px; }
.submit-btn { background-color: #333; color: #fff; border: none; padding: 15px 40px; font-size: 12px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.submit-btn:hover { background-color: #000; }

footer { background-color: #111111; color: #ffffff; padding-top: 80px; text-align: left; }
.main-footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; text-align: left; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-text { color: #999; font-size: 13px; line-height: 1.6; }
footer h4 { color: #ffffff; font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #999; text-decoration: none; font-size: 13px; letter-spacing: 1px; transition: color 0.3s; text-transform: uppercase; }
.footer-links a:hover { color: #e89547; }
.contact-detail { color: #999; font-size: 13px; margin-bottom: 15px; }
.contact-detail a { color: #999; text-decoration: none; transition: color 0.3s; }
.contact-detail a:hover { color: #e89547; }
.footer-social-icons { display: flex; gap: 20px; }
.footer-social-icons a { color: #ffffff; font-size: 20px; transition: color 0.3s, transform 0.3s; }
.footer-social-icons a:hover { color: #e89547; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid #222; padding: 25px 0; text-align: center; }
.footer-bottom p { color: #777; font-size: 12px; letter-spacing: 1px; }

#scrollTopBtn { display: none; position: fixed; bottom: 20px; left: 20px; z-index: 9999; font-size: 18px; border: none; outline: none; background-color: #000; color: white; cursor: pointer; padding: 15px; border-radius: 50%; width: 50px; height: 50px; box-shadow: 0 2px 10px rgba(0,0,0,0.3); transition: background-color 0.3s, transform 0.3s; align-items: center; justify-content: center; }
#scrollTopBtn:hover { background-color: #e89547; transform: translateY(-3px); }
.whatsapp-btn { position: fixed; bottom: 20px; right: 20px; z-index: 9999; background-color: #25D366; color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; box-shadow: 0 2px 10px rgba(0,0,0,0.3); transition: transform 0.3s ease; font-size: 28px; }
.whatsapp-btn:hover { transform: translateY(-3px); }

.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 2000; justify-content: center; align-items: center; }
.lightbox-content { position: relative; width: 80%; max-width: 900px; aspect-ratio: 16 / 9; }
.lightbox iframe { width: 100%; height: 100%; }
.close-btn { position: absolute; top: -40px; right: 0; font-size: 40px; color: #fff; cursor: pointer; transition: color 0.3s; }
.close-btn:hover { color: #e89547; }

/* ================= MEDIA QUERY: MOBIL (OPRAVENO PRO MENU) ================= */
@media (max-width: 768px) {
    body { padding-top: 80px; }
    section { scroll-margin-top: 90px; }
    .main-header { margin-top: 0; padding-top: 0; }
    
    /* Oprava headeru pro mobil */
    .header-content { 
        justify-content: space-between; 
        padding: 10px 20px; 
        gap: 0; 
    }
    
    .logo { height: 55px; }
    .menu-icons { order: unset; gap: 15px; }
    
    /* Důležité: Z-index a viditelnost burger menu */
    .burger-menu { 
        display: block; 
        font-size: 30px; 
        cursor: pointer; 
        z-index: 5002; /* Nad navigačním menu */
        position: relative;
    }
    
    .admin-icon { font-size: 24px; }
    
    .slider-container { padding-top: 100% !important; }
    .desktop-img { display: none !important; }
    .mobile-img { display: block !important; width: 100%; height: 100%; object-fit: cover; vertical-align: bottom; }
    .slider-nav { padding: 10px; font-size: 16px; opacity: 0.7; }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    /* OPRAVA NAVIGACE PRO MOBIL */
    .main-nav { 
        order: unset; 
        display: none; /* Skryté defaultně */
        flex-direction: column; 
        position: fixed; /* Fixní pozice přes celou obrazovku */
        top: 80px; /* Pod headerem */
        left: 0; 
        width: 100%; 
        height: auto;
        padding-bottom: 20px;
        background-color: #ffffff; 
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
        z-index: 5001; /* Pod burger menu, ale nad obsahem */
        align-items: center; 
        border-top: 1px solid #eee;
    }
    
    /* Třída, kterou přidává JavaScript */
    .main-nav.active { 
        display: flex; 
    }
    
    .main-nav .nav-item { 
        padding: 15px 20px; 
        border-bottom: 1px solid #eee; 
        letter-spacing: normal; 
        font-size: 16px; 
        width: 100%;
        text-align: center;
    }
    
    .portfolio-grid { display: flex; flex-direction: column; gap: 0; }
    .overlay { opacity: 1; background: rgba(0, 0, 0, 0.2); }
    .studio-grid { display: block; }
    .studio-column { width: 100% !important; max-width: 100% !important; margin-bottom: 40px; display: block; }
    .studio-section { padding: 50px 0; }
    .studio-img { width: 100% !important; margin: 0 auto 30px auto; padding-bottom: 56.25%; height: 0; }
    .team-grid { display: flex; flex-direction: column; align-items: center; gap: 50px; }
    .team-member, .team-member.highlight { width: 100%; transform: none; max-width: 80%; }
    .clients-track { gap: 30px; }
    .client-logo img { height: 40px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { flex-direction: column; gap: 0; }
    .submit-btn { width: 100%; }
    footer { padding-top: 50px; text-align: left !important; }
    .main-footer-content { display: flex; flex-direction: column; gap: 40px; text-align: left !important; }
    .footer-col { align-items: flex-start !important; text-align: left !important; }
    .footer-logo { margin: 0 0 20px 0 !important; }
    .footer-social-icons { justify-content: flex-start !important; }
    #scrollTopBtn { width: 40px; height: 40px; font-size: 16px; padding: 10px; bottom: 15px; left: 15px; z-index: 99999; }
    .whatsapp-btn { width: 40px; height: 40px; font-size: 22px; bottom: 15px; right: 15px; }
    .lightbox-content { width: 95%; }
    .close-btn { top: -50px; right: 10px; }
    
    /* SOCIAL & SVATBY MOBIL TWEAKS */
    .social-hero, .page-hero { height: 60vh; }
    .social-hero-content { margin-top: 0; } /* Reset posunu na mobilu */
    .social-title { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; gap: 30px; }
    .service-card { height: 300px; }
    .feed-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { flex-direction: column; gap: 40px; }
    .video-grid-4 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; gap: 50px; }
    .pricing-card.featured { transform: none; }
}
/* ========================================= */
/* === FIX PRO MOBILNÍ MENU (VLOŽIT NAKONEC) === */
/* ========================================= */

@media (max-width: 900px) {
    /* 1. Zajistíme, že burger tlačítko je vidět a je nahoře */
    .burger-menu {
        display: block !important;
        position: relative;
        z-index: 10002 !important; /* Musí být nejvyšší */
        cursor: pointer;
        font-size: 28px;
        color: #333; /* Případně změň na bílou, pokud je pozadí tmavé */
        margin-left: auto; /* Zarovnání doprava */
        margin-right: 20px;
    }

    /* 2. Nastavení samotného vysouvacího menu */
    .main-nav {
        display: none !important; /* Defaultně skryté */
        flex-direction: column !important;
        position: fixed !important;
        top: 80px !important; /* Výška tvé hlavičky */
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        background-color: #ffffff !important; /* Bílé pozadí menu */
        padding: 20px 0 !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
        border-top: 1px solid #eee;
        z-index: 10001 !important; /* Těsně pod burgerem */
    }

    /* 3. Třída .active, kterou přidává JavaScript - zobrazí menu */
    .main-nav.active {
        display: flex !important;
    }

    /* 4. Úprava odkazů v menu aby byly pod sebou */
    .nav-item {
        width: 100% !important;
        text-align: center !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        font-size: 18px !important;
        display: block !important;
    }

    /* 5. Skrytí desktopových prvků slideru pokud překáží */
    .desktop-img { display: none !important; }
    .mobile-img { display: block !important; }
}