/* Tante Trendy Stijlgids */
:root {
    --color-olive: #858746;
    --color-pink: #ed6d8f;
    --color-light-pink: #f6b8c6;
    --color-cream: #f7ead7;
    --color-navy: #041636;
    --color-white: #ffffff;

    --font-main: 'Source Sans Pro', sans-serif;
    /* Fallback totdat Source Sans Variable is geladen */
    --border-radius: 20px;
}

body {
    background-color: var(--color-white);
    color: var(--color-navy);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    padding: 2rem;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Productoverzicht (Grid) Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    background-color: var(--color-cream);
    display: block;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-weight: 400;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.product-card .price {
    font-weight: 300;
}

/* Knoppen */
.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-secondary {
    background-color: var(--color-olive);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
}