/* =====================
   PRODUKTY – MAIN
===================== */
.products-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* HLAVIČKA */
.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 1.1rem;
}

/* GRID PRODUKTŮ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* KARTA PRODUKTU */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* OBSAH KARTY */
.product-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h3 {
    margin-bottom: 0.6rem;
}

.product-content p {
    color: #555;
    margin-bottom: auto;
}

/* SPODNÍ ŘÁDEK */
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-link {
    text-decoration: none;
    font-weight: 600;
    color: #ff6600;
}

.detail-link:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
