/* product.css – shared styles for all product category pages */

body {
    background: #f0f0f0;
    padding: 40px 0;
}

.product-page h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.2rem;
    color: #d4a373;
}

.product-page .subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

/* Product card layout – image on the right */
.product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1rem;
    gap: 1rem;
    border: 1px solid #e0e0e0;
}

.product-card .card-content {
    flex: 1;
    text-align: left;
}

.product-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: #333;
}

.product-card p {
    margin: 0 0 0.5rem;
    color: #555;
    font-size: 0.95rem;
}

.product-card .price {
    font-weight: bold;
    color: #d4a373;
    font-size: 1.1rem;
}

/* Spacing between cards */
.product-grid {
    gap: 2rem;
}

/* "en veel meer" hint */
.more {
    text-align: center;
    font-style: italic;
    color: #555;
    margin: 3rem 0 2rem;
    font-size: 1.2rem;
}

/* Home link */
.home-link {
    text-align: center;
    margin-top: 2rem;
}

.home-link a {
    display: inline-block;
    background: #d4a373;
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.home-link a:hover {
    background: #b5835a;
}
