/* ==========================================
   PRODUKTOVÉ BANNERY S PROKLIKY - IVA-UKLID-EKO.CZ
   ========================================== */

.produkty-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

/* Banner jako odkaz */
.produkt-banner {
    background-color: #f7faf7;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 30px;
    text-decoration: none; /* Odstraní podtržení odkazu */
    color: inherit;       /* Text zůstane v nastavených barvách */
    transition: all 0.3s ease;
    cursor: pointer;
}

.produkt-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(120, 163, 62, 0.15);
    background-color: #f1f6f1; /* Jemná změna barvy při hoveru */
}

.produkt-foto {
    flex: 1;
    text-align: center;
}

.produkt-foto img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.produkt-info {
    flex: 1.5;
    padding-left: 20px;
    text-align: left;
}

.produkt-nadpis {
    color: #78a33e;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.produkt-popis {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.produkt-vlastnosti {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produkt-vlastnosti li {
    font-size: 16px;
    color: #222222;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.listek {
    margin-right: 10px;
    font-size: 18px;
}

/* --- RESPONZIVITA --- */

@media (max-width: 900px) {
    .produkty-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .produkt-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .produkt-info {
        padding-left: 0;
        margin-top: 20px;
        text-align: center;
    }
    .produkt-vlastnosti li {
        justify-content: center;
    }
}