/* Publieke webshop */
.shop-wrap { max-width: 1080px; }
.shop-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.shop-head h1 { margin: 0; }
.shop-cartlink { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1px solid var(--pg-dark, #1e3a5f); border-radius: 999px; color: var(--pg-dark, #1e3a5f); text-decoration: none; font-weight: 600; }
.shop-cartlink:hover { background: var(--pg-dark, #1e3a5f); color: #fff; }

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.shop-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; overflow: hidden; transition: box-shadow .15s, transform .15s; }
.shop-card:hover { box-shadow: 0 10px 28px rgba(15,23,42,.12); transform: translateY(-2px); }
.shop-card-media { display: block; height: 200px; background: #f1f5f9; overflow: hidden; }
.shop-card-mediael { width: 100%; height: 100%; object-fit: cover; display: block; }
.shop-card-body { display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; }
.shop-card-name { font-weight: 700; color: var(--pg-dark, #1e3a5f); }
.shop-card-price { color: var(--pg-accent, #ff5b24); font-weight: 700; }

.shop-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.shop-detail-media { background: #f1f5f9; border-radius: 14px; overflow: hidden; }
.shop-detail-mediael { width: 100%; display: block; object-fit: cover; }
.shop-detail-price { font-size: 1.6rem; font-weight: 700; color: var(--pg-accent, #ff5b24); margin: 8px 0 16px; }
.shop-detail-desc { line-height: 1.7; margin-bottom: 24px; }
.shop-add { display: flex; gap: 10px; align-items: center; }
.shop-qty { width: 72px; padding: 11px; border: 1px solid #d6dae1; border-radius: 8px; }
.shop-soldout { color: #b91c1c; font-weight: 700; }
@media (max-width: 760px) { .shop-detail { grid-template-columns: 1fr; } }

.shop-cart { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.shop-cart-row { display: grid; grid-template-columns: 64px 1fr 90px 90px 40px; gap: 14px; align-items: center; padding: 12px 16px; border-bottom: 1px solid #eef0f3; }
.shop-cart-row:last-child { border-bottom: none; }
.shop-cart-media { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; background: #f1f5f9; }
.shop-cart-mediael { width: 100%; height: 100%; object-fit: cover; }
.shop-cart-name { display: flex; flex-direction: column; }
.shop-cart-name .muted { font-size: 13px; }
.shop-cart-qty input { width: 70px; padding: 8px; border: 1px solid #d6dae1; border-radius: 8px; }
.shop-cart-total { font-weight: 700; text-align: right; }
.shop-summary { max-width: 360px; margin-left: auto; margin-top: 20px; }
.shop-sumrow { display: flex; justify-content: space-between; padding: 6px 0; }
.shop-sumtotal { font-size: 1.2rem; font-weight: 700; border-top: 1px solid #e5e7eb; margin-top: 6px; padding-top: 12px; }
.shop-checkout { width: 100%; justify-content: center; margin-top: 14px; }

.shop-checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.shop-checkout-summary { position: sticky; top: 20px; }
@media (max-width: 760px) { .shop-checkout-grid { grid-template-columns: 1fr; } }

/* Categorie-navigatie + intro op de winkel/categoriepagina's */
.shop-intro { color: var(--pg-muted, #5A6675); margin: -8px 0 20px; max-width: 720px; }
.shop-catnav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.shop-catnav-item {
    display: inline-block; padding: .5rem 1.1rem; border-radius: 50px;
    border: 1px solid #e5e7eb; background: #fff; color: var(--pg-dark, #1e3a5f);
    font-size: .9rem; text-decoration: none; transition: all .15s;
}
.shop-catnav-item:hover { border-color: var(--pg-accent, #ff5b24); color: var(--pg-accent, #ff5b24); }
.shop-catnav-item.is-active { background: var(--pg-accent, #ff5b24); border-color: var(--pg-accent, #ff5b24); color: #fff; }
