﻿.products-section {
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #fff;
    max-width: 1140px;
    margin: 0 auto;
}

/* Nadpis */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
    border-bottom: 3px solid #e89aa5;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 600;
}

/* Dekorativní oddělovač */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 60px 0;
    opacity: 0.4;
}

    .section-divider span {
        display: block;
        text-align: center;
        font-size: 1rem;
        color: #888;
        margin-top: -16px;
        background-color: #fff;
        padding: 0 1rem;
    }

/* Dvě hlavní sekce s obrázky a textem */
.product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-in-out;
}

    .product-row.reverse {
        flex-direction: row-reverse;
    }

.product-image-box {
    flex: 1 1 45%;
    max-width: 480px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

    .product-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }

    .product-image-box:hover img {
        transform: scale(1.03);
    }

.product-text {
    flex: 1 1 45%;
    min-width: 260px;
    text-align: left;
}

    .product-text h4 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .product-text p {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
    }

/* Tři malé boxy (grid) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .product-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 4 / 3;
        border-radius: 8px;
    }

    .product-card h5 {
        font-size: 1.2rem;
        margin-top: 15px;
        font-weight: 600;
    }

    .product-card p {
        font-size: 0.95rem;
        color: #777;
        margin-top: 8px;
    }

/* Kontaktní výzva */
.final-note {
    text-align: center;
    margin-top: 80px;
    font-size: 1.1rem;
    color: #777;
    font-style: italic;
    animation: fadeIn 1s ease-in-out;
}

    .final-note h4 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .final-note a.btn {
        font-size: 0.95rem;
        padding: 10px 20px;
        border-radius: 6px;
        margin-top: 10px;
    }

/* Animace */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
