/* Heel kleine aanvulling bovenop water.css */

.shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.shop-header .brand img { display: block; }
.shop-nav { display: flex; gap: 1.25rem; align-items: center; }
.cart-badge {
    display: inline-block;
    min-width: 1.4em;
    padding: 0 .35em;
    border-radius: 999px;
    background: #2f6bff;
    color: #fff;
    font-size: .8em;
    text-align: center;
}

/* Productenraster */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: 0;
    list-style: none;
}
.product-grid li {
    border: 1px solid var(--border, #d1d1d1);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-grid img,
.product-grid .noimg {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #f2f2f2;
    display: block;
}
.product-grid .pbody { padding: .75rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.product-grid .pbody h3 { margin: 0; font-size: 1.05rem; }
.product-grid .pbody .cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; opacity: .6; }
.product-grid .pbody p { margin: 0; font-size: .9rem; }
.product-grid .pbody form { margin-top: auto; display: flex; gap: .5rem; }
.product-grid .pbody input[type=number] { width: 4rem; }

.cat-heading { margin: 1.5rem 0 .5rem; }

/* Winkelmandje / totalen */
.line-actions { display: flex; gap: .4rem; align-items: center; }
.cart-total { text-align: right; font-size: 1.2rem; }
.notice { text-align: center; padding: 3rem 1rem; }
.muted { opacity: .65; }

.shop-footer { margin-top: 3rem; text-align: center; opacity: .6; }
