/* Specifieke styling voor de overzichtspagina (producten.html) */

/* Pagina titel sectie */
.page-header {
    border-bottom: 2px solid #ff8901; /* RAL Oranje */
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.page-header h2 { 
    font-size: 2.5em; 
    margin-bottom: 5px; 
    color: #333; 
}

/* De horizontale productkaarten */
.product-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px); /* Zweef-effect */
}

.product-card img {
    width: 40%;
    object-fit: cover;
    min-height: 250px;
}

.product-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card h4 { 
    font-size: 1.7em; 
    margin-top: 0; 
    margin-bottom: 15px; 
    color: #333;
}

.product-card p { 
    margin-bottom: 25px; 
    font-size: 1.1em; 
    color: #666;
}

/* De 'Bekijk details' knop */
.btn-view {
    align-self: flex-start;
    background-color: #ff8901;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-view:hover {
    background-color: #333;
    color: #fff;
}

/* Mobiele weergave: Kaarten worden verticaal */
@media (max-width: 800px) {
    .product-card { 
        flex-direction: column; 
    }
    .product-card img { 
        width: 100%; 
        height: 200px; 
    }
}