/*
 * Stopy v srdci v2.0 – home.css
 * Zdroj: inline <style> z index.php (v1)
 * Styly pro úvodní stránku (homepage)
 */

    /* Základní styly pro celou stránku */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-family: var(--font-title);
        font-size: 2.2rem;
        color: var(--primary-color);
        margin-bottom: 1.2rem;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-family: var(--font-secondary);
        font-size: 1.4rem;
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .text-center {
        text-align: center;
    }
    
    /* ============================================================
       HERO SEKCE – jedna celistvá sekce (1:1 s původní V1)
       Slider obrázky jsou absolutně pozicovány jako pozadí,
       text a tlačítka jsou přes ně (z-index: 2).
       ============================================================ */
    .hero-section {
        position: relative;
        min-height: 80vh;
        display: flex;
        align-items: center;
        background-color: #333; /* Fallback barva dokud se nenačte první snímek */
        color: #fff;
        overflow: hidden;
        padding: 0;
    }
    
    /* Kontejner slideru – absolutně pokrývá celou hero sekci */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #333;
        /* Fallback: zobrazí se pokud žádný slider obrázek neexistuje */
        background-image: url('/assets/images/hero-background.jpg');
        background-size: cover;
        background-position: center;
        filter: brightness(0.8); /* Desktop: ztmavení pro čitelnost textu přes obrázek */
    }
    
    /* Jednotlivé snímky slideru – crossfade přechod */
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.8);
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        z-index: 1;
    }
    
    .hero-slide.active {
        opacity: 1;
    }
    
    /* Obsah hero sekce – text a tlačítka nad sliderem */
    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .hero-title {
        font-family: var(--font-title);
        font-size: 2.7rem;
        margin-bottom: 1.5rem;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-family: var(--font-secondary);
        font-size: 1.5rem;
        margin-bottom: 2rem;
        max-width: 800px;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        line-height: 1.4;
        opacity: 0.95;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .btn-hero {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        font-family: var(--font-title);
        border-radius: var(--border-radius-medium);
        box-shadow: var(--shadow-medium);
        transition: all 0.3s ease;
    }
    
    .btn-hero:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-large);
    }
    
    .btn-hero.btn-primary:hover {
        color: #fff;
    }
    
    .btn-hero.btn-light:hover {
        color: var(--primary-color);
    }
    
    /* Sekce poslání */
    .mission-section {
        background-color: #fff;
        padding: 3rem 0;
    }
    
    .mission-content {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .mission-text {
        font-size: 1.2rem;
        line-height: 1.7;
        text-align: center;
        color: var(--text-color);
        margin-bottom: 1rem;
    }
    
    /* Citát */
    .quote {
        font-style: italic;
        color: #555;
        line-height: 1.6;
        padding: 0 1.5rem;
        margin: 1.5rem 0;
        position: relative;
        text-align: center;
    }
    
    .quote:before,
    .quote:after {
        content: "\201C";
        font-size: 2.5rem;
        color: var(--primary-color, #b08968);
        position: absolute;
        opacity: 0.4;
    }
    
    .quote:before {
        top: -0.5rem;
        left: 0;
    }
    
    .quote:after {
        bottom: -2rem;
        right: 0;
        content: "\201D";
    }
    
    .quote-author {
        text-align: right;
        color: #777;
        font-size: 0.9rem;
        margin-top: -0.5rem;
        margin-bottom: 1.5rem;
        margin-right: 1rem;
    }
    
    /* Citátový pruh (mezi animací a testimonials) */
    .quote-strip {
        background-color: #f2f2f2;
        width: 100%;
        padding: 1.5rem 0;
    }
    
    .quote-strip .quote {
        max-width: 800px;
        margin: 0 auto;
    }
    
    /* Sekce s funkcemi */
    .features-section {
        background-color: var(--primary-light);
        padding: 3rem 0;
    }
    
    .features-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .feature-card {
        flex: 1 1 280px;
        max-width: 350px;
        background-color: #fff;
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow-medium);
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-large);
    }
    
    .feature-icon {
        width: 150px;
        height: 150px;
        margin: 0 auto 1.5rem;
        padding: 1rem;
        border-radius: 50%;
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-icon img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .feature-title {
        font-family: var(--font-title);
        font-size: 1.4rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
    
    .feature-description {
        color: var(--text-color);
        line-height: 1.6;
    }
    
    /* Sekce jak to funguje */
    .how-it-works-section {
        background-color: #fff;
        padding: 3rem 0;
    }
    
    .how-it-works-section .steps-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    
    .how-it-works-section .steps-container .step-box {
        background-color: #f8f9fa !important;
        border-left: 4px solid var(--primary-color) !important;
        padding: 1.2rem !important;
        margin: 1.5rem 0 !important;
        border-radius: 0 8px 8px 0 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        box-shadow: var(--shadow-small) !important;
        transition: all 0.3s ease !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .how-it-works-section .steps-container .step-box:hover {
        box-shadow: var(--shadow-medium) !important;
        transform: translateY(-3px) !important;
    }
    
    .how-it-works-section .steps-container .step-box .step-content {
        flex: 1 1 auto !important;
        flex-grow: 1 !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .how-it-works-section .steps-container .step-box .step-image {
        flex: 0 0 120px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        text-align: center !important;
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
    }
    
    .how-it-works-section .steps-container .step-box .step-image img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        box-shadow: var(--shadow-small) !important;
        cursor: pointer !important;
        transition: transform 0.3s ease !important;
        display: block !important;
        margin: 0 auto !important;
        flex-shrink: 0 !important;
    }
    
    .how-it-works-section .steps-container .step-box .step-image img:hover {
        transform: scale(1.05) !important;
    }
    
    .step-title {
        font-family: var(--font-title);
        font-size: 1.4rem;
        color: var(--primary-color);
        margin-bottom: 0.8rem;
    }
    
    .step-description {
        color: var(--text-color);
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    /* Sekce animace fotografií */
    .animation-section {
        background-color: var(--primary-light);
        padding: 3rem 0;
    }
    
    .animation-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
        gap: 0.2rem;
    }
    
    .animation-main {
        flex: 0 0 300px;
        text-align: center;
    }
    
    .animation-side {
        flex: 0 0 120px;
        text-align: center;
    }
    
    .animation-circle {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: var(--shadow-medium);
        border: 5px solid var(--primary-color, #c8a14f);
        position: relative;
        display: inline-block;
    }
    
    .animation-circle video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }
    
    .animation-small {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto;
        box-shadow: var(--shadow-small);
        border: 3px solid var(--primary-color, #c8a14f);
        display: inline-block;
    }
    
    .animation-small img,
    .animation-small video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        background: transparent;
        cursor: default;
        pointer-events: none;
    }
    
    .animation-text {
        max-width: 800px;
        margin: 1.5rem auto 0;
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 1.5rem;
    }
    
    /* Testimonials sekce */
    .testimonials-section {
        background-color: #fff;
        padding: 3rem 0;
    }
    
    .testimonials-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 1 1 300px;
        max-width: 400px;
        background-color: #fff;
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow-medium);
        padding: 2rem;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-large);
    }
    
    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 0;
        left: 20px;
        font-size: 5rem;
        color: var(--primary-light);
        line-height: 1;
        opacity: 0.8;
    }
    
    .testimonial-content {
        position: relative;
        font-style: italic;
        margin-bottom: 1.5rem;
        color: var(--text-color);
        line-height: 1.6;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: var(--shadow-small);
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info {
        flex: 1;
    }
    
    .author-name {
        font-family: var(--font-secondary);
        font-weight: 600;
        margin-bottom: 0.2rem;
        color: var(--primary-color);
    }
    
    .author-role {
        font-size: 0.9rem;
        color: var(--text-light);
    }
    
    /* CTA sekce */
    .cta-section {
        background-color: #fff;
        padding: 3rem 0;
        text-align: center;
    }
    
    .cta-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        background-color: var(--primary-color);
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow-large);
        color: #fff;
    }
    
    .cta-title {
        font-family: var(--font-title);
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-text {
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .btn-cta {
        padding: 0.8rem 2.5rem;
        font-size: 1.2rem;
        font-family: var(--font-title);
        background-color: #fff;
        color: var(--primary-color);
        border: none;
        border-radius: var(--border-radius-medium);
        box-shadow: var(--shadow-medium);
        transition: all 0.3s ease;
    }
    
    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-large);
        background-color: #f5f5f5;
    }
    
    /* Modal pro zvětšené obrázky */
    .modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background-color: rgba(0,0,0,0.9);
        text-align: center;
    }
    
    .modal-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        height: 80%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .modal-content {
        max-width: 100%;
        max-height: 100%;
        border-radius: 8px;
        margin: auto;
    }
    
    .modal-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
        z-index: 10000;
        text-shadow: 0 0 5px rgba(0,0,0,0.5);
        transition: all 0.3s ease;
    }
    
    .modal-close:hover {
        color: #f8f8f8;
        transform: scale(1.1);
    }
    
    /* Modální okno video průvodce */
    .video-guide-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.7);
        animation: fadeIn 0.4s;
    }
    
    .video-guide-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .video-guide-content {
        background-color: #fff;
        margin: 10vh auto;
        max-width: 600px;
        width: 90%;
        border-radius: var(--border-radius-large);
        box-shadow: var(--shadow-large);
        position: relative;
        animation: slideIn 0.5s;
        overflow: hidden;
    }
    
    .video-guide-header {
        padding: 10px 20px;
        text-align: right;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .video-guide-close {
        color: #888;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        transition: color 0.3s ease;
    }
    
    .video-guide-close:hover {
        color: var(--primary-color);
    }
    
    .video-guide-body {
        padding: 0 0 20px 0;
        text-align: center;
    }
    
    .video-guide-image {
        width: 100%;
        cursor: pointer;
        transition: opacity 0.3s;
    }
    
    .video-guide-image:hover {
        opacity: 0.9;
    }
    
    .video-guide-text {
        padding: 20px 30px 10px;
    }
    
    .video-guide-text p {
        margin-bottom: 10px;
        color: var(--text-color);
        line-height: 1.6;
        font-size: 1.05rem;
    }
    
    .video-guide-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 30px;
        margin-top: 10px;
    }
    
    /* Toggle přepínač */
    .toggle-option {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .toggle-option-text span {
        font-size: 0.95rem;
        color: var(--text-secondary, #666);
    }
    
    .toggle-switch {
        width: 46px;
        height: 24px;
        background-color: #ccc;
        border-radius: 12px;
        position: relative;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .toggle-switch.active {
        background-color: var(--primary-color, #b08968);
    }
    
    .toggle-slider {
        width: 20px;
        height: 20px;
        background-color: white;
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: left 0.3s;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
    
    .toggle-switch.active .toggle-slider {
        left: 24px;
    }
    
    .video-guide-button {
        padding: 8px 16px;
        background-color: #e0e0e0;
        color: #999;
        border: none;
        border-radius: var(--border-radius-medium);
        font-family: var(--font-title);
        font-size: 0.95rem;
        cursor: not-allowed;
        transition: all 0.3s ease;
        opacity: 0.6;
    }
    
    .video-guide-button.active {
        background-color: var(--primary-color);
        color: white;
        cursor: pointer;
        opacity: 1;
    }
    
    .video-guide-button.active:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-small);
    }

    /* CTA tlačítka v trial modalu */
    .video-guide-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        padding: 10px 30px 0;
    }

    .video-guide-btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: var(--border-radius-medium);
        font-family: var(--font-title);
        font-size: 0.95rem;
        text-decoration: none;
        text-align: center;
        transition: transform 0.2s, box-shadow 0.2s;
        flex: 1;
    }

    .video-guide-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-small);
    }

    .video-guide-btn--info {
        background-color: #f0ece7;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

    .video-guide-btn--cta {
        background-color: var(--primary-color);
        color: white;
        border: 1px solid var(--primary-color);
    }
    
    @keyframes fadeIn {
        from {opacity: 0}
        to {opacity: 1}
    }
    
    @keyframes slideIn {
        from {transform: translateY(-30px); opacity: 0;}
        to {transform: translateY(0); opacity: 1;}
    }
    
    /* ========== MOBILNÍ BREAKPOINTY ========== */
    
    @media (max-width: 768px) {
        .section {
            padding: 2rem 0;
        }
        
        /* ============================================================
           HERO – MOBIL: stacked layout (obrázek nahoře, text pod ním)
           Desktop overlay zůstává beze změny (není v tomto media query).
           ============================================================ */
        .hero-section {
            flex-direction: column;
            align-items: stretch;
            min-height: 0;
            overflow: visible;
        }
        
        /* Background kontejner – v normálním toku, výška přes padding-bottom */
        .hero-background {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 75%; /* 4:3 poměr jako výchozí */
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: brightness(1); /* Bez ztmavení – není nad ním text */
            order: 1;
        }
        
        /* Slides bez ořezu, celý obrázek viditelný */
        .hero-slide {
            object-fit: contain;
            object-position: center;
            filter: brightness(1);
        }
        
        /* Text a tlačítka pod obrázkem */
        .hero-content {
            position: relative;
            z-index: 2;
            order: 2;
            background-color: #333;
            padding: 1.5rem;
            text-align: center;
            max-width: 100%;
        }
        
        .hero-title {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            max-width: 100%;
        }
        
        .hero-buttons {
            justify-content: center;
        }
        
        /* Animation container */
        .animation-container {
            gap: 0.2rem;
            flex-wrap: nowrap;
            padding: 0 0.5rem;
            justify-content: space-evenly;
        }
        
        .animation-main {
            flex: 0 0 200px;
        }
        
        .animation-circle {
            width: 200px;
            height: 200px;
        }
        
        .animation-side {
            flex: 0 0 80px;
        }
        
        .animation-small {
            width: 80px;
            height: 80px;
        }
        
        .cta-container {
            max-width: 90%;
            width: 90%;
        }
        
        /* Step box na mobilu */
        .how-it-works-section .steps-container .step-box {
            gap: 0.5rem !important;
        }
        
        .how-it-works-section .steps-container .step-box .step-image {
            flex: 0 0 100px !important;
            width: 100px !important;
            min-width: 100px !important;
            max-width: 100px !important;
        }
        
        .how-it-works-section .steps-container .step-box .step-image img {
            width: 100px !important;
            height: 100px !important;
        }
        
        .step-title {
            font-size: 1.2rem;
        }
        
        .step-description {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 360px) {
        .hero-section {
            min-height: 55vh;
        }
        
        .hero-title {
            font-size: 1.9rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .animation-container {
            gap: 0.1rem;
            padding: 0 0.3rem;
        }
        
        .animation-main {
            flex: 0 0 160px;
        }
        
        .animation-circle {
            width: 160px;
            height: 160px;
        }
        
        .animation-side {
            flex: 0 0 65px;
        }
        
        .animation-small {
            width: 65px;
            height: 65px;
        }
        
        .how-it-works-section .steps-container .step-box {
            gap: 0.3rem !important;
            padding: 1rem !important;
        }
        
        .how-it-works-section .steps-container .step-box .step-image {
            flex: 0 0 80px !important;
            width: 80px !important;
            min-width: 80px !important;
            max-width: 80px !important;
        }
        
        .how-it-works-section .steps-container .step-box .step-image img {
            width: 80px !important;
            height: 80px !important;
        }
        
        .step-title {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .step-description {
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 80%;
        }
        
        .modal-close {
            top: 10px;
            right: 15px;
            font-size: 35px;
        }
        
        .video-guide-content {
            margin: 15vh auto;
            width: 95%;
        }
        
        .video-guide-actions {
            flex-direction: column;
            gap: 15px;
        }
        
        .toggle-option {
            margin-bottom: 10px;
        }
    }
    
    /* ========== PROMO BADGE STYLY ========== */
    
    @keyframes pulse-glow {
        0%, 100% { 
            transform: scale(1); 
            filter: drop-shadow(0 4px 10px rgba(176, 137, 104, 0.4));
        }
        50% { 
            transform: scale(1.06); 
            filter: drop-shadow(0 4px 25px rgba(176, 137, 104, 0.8)) drop-shadow(0 0 40px rgba(176, 137, 104, 0.4));
        }
    }
    
    /* Desktop badge – absolutně pozicovaný uvnitř hero-section */
    .promo-badge-desktop {
        display: block;
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 170px;
        height: 170px;
        z-index: 3; /* Nad sliderem i nad hero-content */
        transition: transform 0.3s ease;
    }
    
    .promo-badge-desktop img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        animation: pulse-glow 2.5s ease-in-out infinite;
    }
    
    .promo-badge-desktop:hover img {
        animation-play-state: paused;
        transform: scale(1.08);
    }
    
    /* Mobile badge – uvnitř hero-content, nad textem */
    .promo-badge-mobile {
        display: none;
    }
    
    @media (max-width: 1200px) {
        .promo-badge-desktop {
            left: 20px;
            width: 145px;
            height: 145px;
        }
    }
    
    @media (max-width: 1000px) {
        .promo-badge-desktop {
            left: 15px;
            width: 120px;
            height: 120px;
        }
    }
    
    @media (max-width: 900px) {
        .promo-badge-desktop {
            display: none !important;
        }
        
        .promo-badge-mobile {
            display: block;
            width: 170px;
            height: 170px;
            margin: 0 auto 1.5rem auto;
        }
        
        .promo-badge-mobile img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: pulse-glow 2.5s ease-in-out infinite;
        }
        
        .promo-badge-mobile:hover img {
            animation-play-state: paused;
            transform: scale(1.03);
        }
    }
    
    @media (max-width: 480px) {
        .promo-badge-mobile {
            width: 155px;
            height: 155px;
            margin-bottom: 1rem;
        }
    }
    
    @media (max-width: 360px) {
        .promo-badge-mobile {
            width: 145px;
            height: 145px;
        }
    }
    /* ========== KONEC PROMO BADGE STYLŮ ========== */

    /* ========== SHOWCASE SEKCE ========== */
    .showcase-section {
        background-color: #f2f2f2;
        padding: 3rem 0;
    }

    .showcase-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    .showcase-box {
        flex: 1 1 400px;
        max-width: 560px;
        background-color: #fff;
        border-radius: var(--border-radius-large, 12px);
        box-shadow: var(--shadow-medium, 0 2px 12px rgba(0,0,0,0.1));
        padding: 1.5rem;
        transition: box-shadow 0.3s ease;
    }

    .showcase-box:hover {
        box-shadow: var(--shadow-large, 0 4px 24px rgba(0,0,0,0.15));
    }

    .showcase-box-title {
        font-family: var(--font-title, inherit);
        font-size: 1.5rem;
        color: var(--primary-color, #b08968);
        text-align: center;
        margin-bottom: 1rem;
    }

    .showcase-main-image {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: var(--border-radius-medium, 8px);
        overflow: hidden;
        background-color: #f5f5f5;
    }

    .showcase-main-image img {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        object-fit: cover;
        border-radius: var(--border-radius-medium, 8px);
        transition: opacity 0.5s ease-in-out;
    }

    .showcase-main-image img.fade-out { opacity: 0; }

    .showcase-thumbnails {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .showcase-thumb {
        width: 60px; height: 45px;
        border-radius: var(--border-radius-small, 4px);
        overflow: hidden;
        cursor: pointer;
        border: 1px solid rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        opacity: 0.6;
    }

    .showcase-thumb:hover { opacity: 0.9; border-color: rgba(176,137,104,0.5); }

    .showcase-thumb.active {
        border: 2px solid var(--primary-color, #b08968);
        opacity: 1;
        box-shadow: 0 0 0 1px var(--primary-color, #b08968);
    }

    .showcase-thumb img { width: 100%; height: 100%; object-fit: cover; }

    .showcase-description {
        margin-top: 1rem;
        padding: 0 0.5rem;
        min-height: 3.5rem;
    }

    .showcase-description p {
        font-size: 1rem;
        line-height: 1.55;
        color: var(--text-color, #333);
        text-align: center;
        transition: opacity 0.4s ease-in-out;
    }

    .showcase-description p.fade-out { opacity: 0; }

    /* Citát mezi showcase a hlavními přednostmi – bílé pozadí */
    .showcase-quote-strip {
        background-color: #fff !important;
    }

    @media (max-width: 900px) {
        .showcase-container { flex-direction: column; align-items: center; }
        .showcase-box { max-width: 560px; width: 100%; }
    }

    @media (max-width: 480px) {
        .showcase-box { padding: 1rem; }
        .showcase-box-title { font-size: 1.3rem; }
        .showcase-thumb { width: 50px; height: 38px; }
        .showcase-description { min-height: 3rem; }
        .showcase-description p { font-size: 0.95rem; }
    }
    /* ========== KONEC SHOWCASE SEKCE ========== */

    /* Šipky showcase */
    .showcase-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.85);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: background 0.2s, opacity 0.2s;
        opacity: 0.7;
        box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .showcase-nav:hover { background: #fff; opacity: 1; }
    .showcase-nav svg { width: 18px; height: 18px; stroke: var(--primary-color, #b08968); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .showcase-nav-prev { left: 8px; }
    .showcase-nav-next { right: 8px; }
