/* ================================================
   PRODUKTOVÝ BANNER - Meruňky, švestky a hrušky
   ================================================ */

.produkty-banner {
    display: flex;
    position: relative;
    align-items: stretch;
    background-color: #FEF3F4;
    overflow: hidden;
    min-height: 500px;
}

/* ================================================
   LEVÁ STRANA - OBRÁZEK
   ================================================ */

.produkty-banner .left-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #FEF3F4;
}

.produkty-banner .left-side img {
    width: 100%;
    height: 100%;
    max-width: 600px;
    object-fit: contain;
    display: block;
}

/* ================================================
   PRAVÁ STRANA - OBSAH
   ================================================ */

.produkty-banner .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #AD8062;
    color: #FFFFFF;
    position: relative;
}

.produkty-banner .right-side h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
    max-width: 500px;
}

.produkty-banner .produkty-text {
    max-width: 500px;
    margin-bottom: 2rem;
}

.produkty-banner .produkty-text p {
    font-size: 1rem;
    line-height: 1.6rem;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
}

.produkty-banner .produkty-text p:last-child {
    margin-bottom: 0;
}

.produkty-banner .produkty-text strong {
    font-weight: 700;
}

/* ================================================
   CTA TLAČÍTKO
   ================================================ */

.produkty-banner .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    background-color: #1F421C;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.produkty-banner .cta-button:hover {
    background-color: #234D24;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.4);
    color: #FFFFFF;
}

/* ================================================
   DEKORATIVNÍ ORANŽOVÝ KRUH
   ================================================ */

.produkty-banner .orange-circle {
    position: absolute;
    top: -3.5rem;
    right: 6rem;
    width: 8rem;
    height: 8rem;
    background-color: #E54F18;
    border-radius: 50%;
    z-index: 2;
}

/* ================================================
   RESPONZIVITA
   ================================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
    .produkty-banner {
        min-height: 450px;
    }

    .produkty-banner .left-side {
        padding: 2.5rem 1.5rem;
    }

    .produkty-banner .right-side {
        padding: 3rem 2.5rem;
    }

    .produkty-banner .right-side h2 {
        font-size: 1.75rem;
        line-height: 2.1rem;
    }

    .produkty-banner .orange-circle {
        width: 6rem;
        height: 6rem;
        top: -3rem;
        right: 4rem;
    }
}

/* Malý tablet */
@media screen and (max-width: 900px) {
    .produkty-banner .right-side h2 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .produkty-banner .produkty-text p {
        font-size: 0.95rem;
    }
}

/* Mobil */
@media screen and (max-width: 768px) {
    .produkty-banner {
        flex-direction: column;
        min-height: auto;
    }

    .produkty-banner .left-side {
        padding: 2rem 1.5rem 1rem;
        order: 1;
    }

    .produkty-banner .left-side img {
        max-width: 450px;
        max-height: 350px;
    }

    .produkty-banner .right-side {
        padding: 2rem 1.5rem 3rem;
        order: 2;
    }

    .produkty-banner .right-side h2 {
        font-size: 1.5rem;
        line-height: 1.9rem;
        margin-bottom: 1.25rem;
    }

    .produkty-banner .produkty-text {
        margin-bottom: 1.5rem;
    }

    .produkty-banner .produkty-text p {
        font-size: 0.95rem;
        line-height: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .produkty-banner .cta-button {
        width: 25%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }

    .produkty-banner .orange-circle {
        width: 5rem;
        height: 5rem;
        top: -2.5rem;
        right: 2rem;
    }
}

/* Malý mobil */
@media screen and (max-width: 480px) {
    .produkty-banner .left-side {
        padding: 1.5rem 1rem 0.5rem;
    }

    .produkty-banner .right-side {
        padding: 1.5rem 1.25rem 2.5rem;
    }

    .produkty-banner .right-side h2 {
        font-size: 1.375rem;
        line-height: 1.75rem;
    }

    .produkty-banner .produkty-text p {
        font-size: 0.9rem;
        line-height: 1.45rem;
    }

    .produkty-banner .orange-circle {
        width: 4rem;
        height: 4rem;
        top: -2rem;
        right: 1.5rem;
    }

    .produkty-banner .cta-button {
        width: 50%;
    }
}

.footer-banners {
    display: flex;
    flex-direction: column;
    
}

.footer-banner.col-sm-12.col-lg-6 {
    width: 100% !important;
}