/* ============================================
   winkel.reanimatie.nl — Winkel stylesheet
   Accent: #10b981 (emerald green)
   ============================================ */

/* ---- Winkel-specifieke CSS custom properties ---- */
:root {
    --winkel-accent:       #10b981;
    --winkel-accent-dark:  #059669;
    --winkel-accent-light: #34d399;
    --winkel-accent-bg:    rgba(16, 185, 129, 0.08);
}

/* ---- Hero ---- */
.winkel-hero {
    background: linear-gradient(135deg, #0d2818 0%, #1a4a32 55%, #216a46 100%);
    color: #fff;
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}
.winkel-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.winkel-hero__content { position: relative; z-index: 1; }
.winkel-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.winkel-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 580px; margin-bottom: 32px; }
.winkel-hero__accent { color: var(--winkel-accent); }
.winkel-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 99px; padding: 6px 16px; font-size: 0.8rem; font-weight: 500; margin-bottom: 24px;
}
.winkel-hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.winkel-hero__stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--winkel-accent); }
.winkel-hero__stat span  { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ---- Categorie-kaarten ---- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    gap: 14px;
}
.cat-card:hover {
    border-color: var(--winkel-accent);
    box-shadow: 0 4px 20px rgba(16,185,129,0.15);
    transform: translateY(-3px);
    color: var(--text-primary);
}
.cat-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--winkel-accent-bg);
    color: var(--winkel-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.cat-card__name { font-size: 0.95rem; font-weight: 600; line-height: 1.3; }
.cat-card__count { font-size: 0.78rem; color: var(--text-muted); }
.cat-card.active {
    border-color: var(--winkel-accent);
    background: var(--winkel-accent-bg);
    box-shadow: 0 4px 20px rgba(16,185,129,0.18);
}

/* ---- Productgrid ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--winkel-accent);
}
.product-card__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: var(--bg-secondary);
    padding: 16px;
}
.product-card__img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2.5rem;
}
.product-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card__cat {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--winkel-accent);
}
.product-card__name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}
.product-card__desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
a.product-card { transition: transform .15s ease, box-shadow .15s ease; cursor: pointer; }
a.product-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
a.product-card:hover .product-card__more { color: var(--winkel-accent); }
.product-card__more {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--winkel-accent);
    transition: color .15s;
}

/* Prijs als overlay op afbeelding */
.product-card__media { position: relative; }
.product-card__price-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--winkel-accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(16,185,129,0.35);
    text-align: right;
    line-height: 1;
    pointer-events: none;
}
.product-card__price-overlay-amt {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.product-card__price-overlay-lbl {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-card__media .product-card__badge-uitverkocht {
    position: absolute;
    top: 8px;
    left: 8px;
}
.product-card__footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.product-card__price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
}
.product-card__price-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
}
.product-card__badge-uitverkocht {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(230,57,70,0.1);
    color: #e63946;
}
.product-card .btn-add-cart {
    background: var(--winkel-accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    height: 40px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(16,185,129,0.25);
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.product-card .btn-add-cart i { font-size: 0.95rem; }
.product-card .btn-add-cart__icon { width: 22px; height: 22px; flex-shrink: 0; color: #fff; }
.product-card .btn-add-cart.added .btn-add-cart__icon { display: none; }
.product-card .btn-add-cart:hover {
    background: var(--winkel-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}
.product-card .btn-add-cart:active { transform: translateY(0); }
.product-card .btn-add-cart:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
/* Visueel cue na klik */
.product-card .btn-add-cart.added { background: #059669; }
.product-card .btn-add-cart.added i { display: none; }
.product-card .btn-add-cart.added::before {
    content: '\f00c'; /* fa-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.95rem;
}
/* Bij smalle kaarten: alleen icoon */
@media (max-width: 480px) {
    .product-card .btn-add-cart { width: 42px; height: 42px; padding: 0; border-radius: 50%; }
    .product-card .btn-add-cart .btn-add-cart__label { display: none; }
}

/* ---- Uitgelicht badge ---- */
.badge-uitgelicht {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--winkel-accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 99px;
}
.product-card-wrap { position: relative; }

/* ----- Toolbar (zoek + sort) ----- */
.winkel-toolbar {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.winkel-search {
    flex: 1;
    min-width: 240px;
    position: relative;
    display: flex;
    align-items: center;
}
.winkel-search > i:first-child {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: .9rem;
}
.winkel-search input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font-size: .92rem;
    font-family: var(--font);
    transition: border-color .15s, box-shadow .15s;
}
.winkel-search input:focus {
    outline: none;
    border-color: var(--winkel-accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.winkel-search__clear {
    position: absolute;
    right: 8px;
    width: 26px;
    height: 26px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.winkel-search__clear:hover { background: var(--border); color: var(--text-primary); }

.winkel-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-secondary);
}
.winkel-toolbar__sort select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    font-size: .88rem;
    font-family: var(--font);
    cursor: pointer;
}

.winkel-result-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--winkel-accent-bg);
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: .85rem;
    color: var(--text-secondary);
}
.winkel-result-bar__clear {
    background: transparent;
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 99px;
    font-size: .78rem;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.winkel-result-bar__clear:hover { border-color: var(--winkel-accent); color: var(--winkel-accent); }

/* ---- Categorie filter bar ---- */
.cat-filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cat-filter-btn {
    padding: 8px 18px;
    border-radius: 99px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
}
.cat-filter-btn:hover {
    border-color: var(--winkel-accent);
    color: var(--winkel-accent);
    background: var(--winkel-accent-bg);
}
.cat-filter-btn.active {
    background: var(--winkel-accent);
    border-color: var(--winkel-accent);
    color: #fff;
}

/* ============================================================
   PDP — Productdetailpagina (modern redesign)
   ============================================================ */
.pdp-container { padding: 28px 24px 80px; }
.pdp-breadcrumb {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pdp-breadcrumb a { color: var(--winkel-accent); text-decoration: none; }
.pdp-breadcrumb a:hover { text-decoration: underline; }
.pdp-breadcrumb i { font-size: .65rem; color: var(--text-muted); }
.pdp-breadcrumb span { color: var(--text-secondary); }

.pdp {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 48px;
    align-items: start;
}

/* ----- Galerij ----- */
.pdp__gallery { position: sticky; top: 96px; }
.pdp__main {
    position: relative;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.pdp__main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 32px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-secondary) 100%);
    cursor: zoom-in;
    display: block;
}
.pdp__main-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-muted);
}
.pdp__zoom-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    cursor: pointer;
    color: var(--text-primary);
    transition: transform .15s, box-shadow .15s;
}
.pdp__zoom-btn:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.pdp__sticker {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.pdp__sticker--out { background: #e63946; color: #fff; }
.pdp__sticker--low { background: #f59e0b; color: #fff; }

.pdp__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.pdp__thumb {
    width: 76px;
    height: 76px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    border: 2px solid var(--border-light);
    padding: 8px;
    cursor: pointer;
    transition: border-color .15s, transform .15s;
}
.pdp__thumb:hover { border-color: var(--winkel-accent); transform: translateY(-2px); }
.pdp__thumb.active { border-color: var(--winkel-accent); box-shadow: 0 0 0 1px var(--winkel-accent); }

/* ----- Info-kolom ----- */
.pdp__main-info { display: flex; flex-direction: column; gap: 16px; }
.pdp__cat {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--winkel-accent);
}
.pdp__name {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 0;
}
.pdp__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.pdp__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}
.pdp__rating:hover span { color: var(--text-primary); }
.pdp__sku { font-family: ui-monospace, monospace; font-size: .78rem; color: var(--text-muted); }

.pdp__intro {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.pdp__bullets {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pdp__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.pdp__bullets li i {
    color: var(--winkel-accent);
    background: var(--winkel-accent-bg);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pdp__compat {
    font-size: .85rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-left: 3px solid var(--winkel-accent);
    padding: 10px 14px;
    border-radius: 6px;
}
.pdp__compat strong { color: var(--text-primary); }
.pdp__compat a { color: var(--winkel-accent); }

/* ----- Bestelkaart ----- */
.pdp__buy {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
    margin-top: 8px;
}
.pdp__buy-prices {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 14px;
}
.pdp__price-excl,
.pdp__price-incl {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.pdp__price-suffix {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.pdp__price-meta {
    display: flex;
    gap: 8px;
    font-size: .82rem;
    color: var(--text-muted);
    align-items: center;
    margin-top: 4px;
}
.pdp__price-meta strong { color: var(--text-secondary); font-weight: 600; }

.pdp__stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-secondary);
}
.pdp__stock strong { color: var(--text-primary); }
.pdp__stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pdp__stock-dot--ok  { background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,.15); }
.pdp__stock-dot--low { background: #f59e0b; box-shadow: 0 0 0 4px rgba(245,158,11,.15); }
.pdp__stock-dot--out { background: #e63946; box-shadow: 0 0 0 4px rgba(230,57,70,.15); }

.pdp__qty-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pdp__qty-lbl {
    font-size: .85rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.pdp__qty-wrap {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.pdp__qty-btn {
    width: 40px;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: background .15s;
}
.pdp__qty-btn:hover { background: var(--border-light); }
.pdp__qty-input {
    width: 56px;
    height: 44px;
    text-align: center;
    border: none;
    background: #fff;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-weight: 600;
    font-size: 1rem;
    -moz-appearance: textfield;
}
.pdp__qty-input::-webkit-outer-spin-button,
.pdp__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp__add-cart {
    background: var(--winkel-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 4px 12px rgba(16,185,129,.25);
}
.pdp__add-cart:hover { background: var(--winkel-accent-dark); box-shadow: 0 6px 18px rgba(16,185,129,.4); transform: translateY(-1px); }
.pdp__add-cart:active { transform: translateY(0); }

.pdp__view-cart {
    text-align: center;
    color: var(--text-secondary);
    font-size: .85rem;
    text-decoration: none;
    padding: 8px;
}
.pdp__view-cart:hover { color: var(--winkel-accent); }

.pdp__alert {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .85rem;
}

.pdp__sold-out {
    background: #fef3c7;
    color: #92400e;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: .88rem;
    line-height: 1.6;
}
.pdp__sold-out a { color: var(--winkel-accent); font-weight: 600; }

.pdp__usps {
    list-style: none;
    padding: 16px 0 0;
    margin: 8px 0 0;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pdp__usps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
    color: var(--text-secondary);
}
.pdp__usps li i {
    width: 20px;
    color: var(--winkel-accent);
    font-size: .95rem;
    text-align: center;
}
.pdp__usps li strong { color: var(--text-primary); }

/* ----- Stock-urgentie ----- */
.pdp__urgentie {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: .82rem;
    margin-top: -4px;
}
.pdp__urgentie i { color: #f97316; }

/* ----- Sticky reviews-balk ----- */
.pdp-rating-bar {
    background: #fef9e7;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 12px 18px;
    margin: 28px 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.pdp-rating-bar__score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: var(--text-secondary);
}
.pdp-rating-bar__score strong { color: var(--text-primary); font-size: 1.05rem; }
.pdp-rating-bar__btn {
    background: transparent;
    border: 1px solid #fde68a;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: .82rem;
    font-weight: 600;
    color: #92400e;
    cursor: pointer;
    transition: background .15s;
}
.pdp-rating-bar__btn:hover { background: #fde68a; }

/* ----- Tab content helpers ----- */
.pdp-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.pdp-pdf-card {
    padding: 18px 20px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color .15s, transform .15s;
    border: 1px solid var(--border);
}
.pdp-pdf-card:hover { border-color: var(--winkel-accent); transform: translateY(-2px); }
.pdp-pdf-card > i:first-child {
    font-size: 1.8rem;
    color: #dc2626;
    flex-shrink: 0;
}
.pdp-pdf-card div { flex: 1; }
.pdp-pdf-card strong { display: block; font-size: .95rem; }
.pdp-pdf-card span { display: block; font-size: .78rem; color: var(--text-muted); }
.pdp-pdf-card__ext { color: var(--text-muted); font-size: .85rem; }

/* ----- Trust-balk onder hero ----- */
.pdp-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 36px 0 28px;
    padding: 22px 24px;
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--border-light);
}
.pdp-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pdp-trust__item i {
    font-size: 1.4rem;
    color: var(--winkel-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--winkel-accent-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pdp-trust__item strong { display: block; font-size: .88rem; color: var(--text-primary); margin-bottom: 2px; }
.pdp-trust__item span  { display: block; font-size: .76rem; color: var(--text-muted); line-height: 1.3; }

/* ----- Tabs ----- */
.pdp-tabs { margin-top: 28px; }
.pdp-tabs__nav {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid var(--border-light);
    overflow-x: auto;
    scrollbar-width: thin;
    margin-bottom: 24px;
}
.pdp-tabs__btn {
    background: transparent;
    border: none;
    padding: 14px 20px;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pdp-tabs__btn:hover { color: var(--text-primary); }
.pdp-tabs__btn.active {
    color: var(--winkel-accent);
    border-bottom-color: var(--winkel-accent);
}
.pdp-tabs__count {
    background: var(--winkel-accent-bg);
    color: var(--winkel-accent);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 700;
}
.pdp-tabs__btn.active .pdp-tabs__count { background: var(--winkel-accent); color: #fff; }

.pdp-tabs__panel { animation: pdpFade .25s ease; }
@keyframes pdpFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.pdp-back { margin-top: 32px; text-align: center; }
.pdp-back .btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    padding: 10px 22px;
}
.pdp-back .btn:hover { background: var(--bg-secondary); color: var(--text-primary); }

/* ----- Sticky mobile order-bar ----- */
.pdp-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 80;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.pdp-sticky-mobile__price { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pdp-sticky-mobile__excl  { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }
.pdp-sticky-mobile__btn {
    background: var(--winkel-accent);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ----- Offerte + wishlist knoppen ----- */
.pdp__offerte-btn,
.pdp__wishlist-btn {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid var(--border);
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color .15s, background .15s;
}
.pdp__offerte-btn:hover,
.pdp__wishlist-btn:hover { border-color: var(--winkel-accent); background: var(--winkel-accent-bg); }
.pdp__offerte-btn i { color: var(--winkel-accent); }
.pdp__wishlist-btn.active { color: #e63946; border-color: #fecaca; background: #fef2f2; }
.pdp__wishlist-btn i { color: #e63946; }

/* ----- Cross-sell ----- */
.pdp-related { margin: 48px 0 32px; }
.pdp-related__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pdp-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.pdp-related__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pdp-related__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
    border-color: var(--winkel-accent);
}
.pdp-related__media {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}
.pdp-related__media img { width: 100%; height: 100%; object-fit: contain; }
.pdp-related__placeholder { font-size: 2rem; color: var(--text-muted); }
.pdp-related__name {
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.35;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pdp-related__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.pdp-related__price strong { color: var(--text-primary); font-size: 1rem; font-weight: 800; }
.pdp-related__price span { color: var(--text-muted); font-size: .72rem; }

/* ----- Modal ----- */
.pdp-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.pdp-modal.open { display: flex; }
.pdp-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,25,35,.55);
    backdrop-filter: blur(4px);
}
.pdp-modal__content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 24px;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: pdpModalIn .25s ease;
}
@keyframes pdpModalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.pdp-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}
.pdp-modal__close:hover { background: var(--border); color: var(--text-primary); }

/* ----- Lightbox ----- */
.pdp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15,25,35,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 40px;
}
.pdp-lightbox.open { display: flex; }
.pdp-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    background: #fff;
    padding: 16px;
}
.pdp-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
}
.pdp-lightbox__close:hover { background: rgba(255,255,255,.25); }

.product-detail__qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}
.qty-btn {
    background: var(--bg-secondary);
    border: none;
    width: 40px;
    height: 44px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: var(--font);
}
.qty-btn:hover { background: var(--border); }
.qty-input {
    width: 64px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    outline: none;
}

.btn-add-cart-lg {
    background: var(--winkel-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: var(--font);
    width: 100%;
    justify-content: center;
}
.btn-add-cart-lg:hover { background: var(--winkel-accent-dark); transform: translateY(-1px); }
.btn-add-cart-lg:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Specificaties tabel */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 10px 0; font-size: 0.88rem; }
.spec-table td:first-child { color: var(--text-secondary); width: 45%; font-weight: 500; }
.spec-table td:last-child { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   WINKELWAGEN — modern cart-redesign
   ============================================================ */
.cart-container { padding: 28px 24px 80px; }

.cart-header { margin-bottom: 28px; }
.cart-header h1 {
    font-size: 1.85rem;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.cart-header h1 i { color: var(--winkel-accent); margin-right: 8px; }
.cart-header p { color: var(--text-muted); font-size: .92rem; margin: 0; }

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
}

/* ----- Items ----- */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto auto 36px;
    gap: 18px;
    align-items: center;
    transition: box-shadow .15s;
}
.cart-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,.05); }

.cart-item__media {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}
.cart-item__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}
.cart-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-muted);
}

.cart-item__info { min-width: 0; }
.cart-item__name {
    display: block;
    font-weight: 700;
    font-size: .95rem;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.35;
    margin-bottom: 2px;
}
.cart-item__name:hover { color: var(--winkel-accent); }
.cart-item__sku {
    font-size: .76rem;
    color: var(--text-muted);
    font-family: ui-monospace, monospace;
    margin-bottom: 4px;
}
.cart-item__price-mobile {
    display: none;
    font-size: .85rem;
}
.cart-item__price-mobile strong { color: var(--text-primary); }
.cart-item__price-mobile span { color: var(--text-muted); margin-left: 6px; font-size: .75rem; }
.cart-item__warn {
    font-size: .76rem;
    color: #e63946;
    margin-top: 4px;
}

.cart-item__qty {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}
.cart-item__qty-lbl {
    font-size: .72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cart-item__qty-wrap {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.cart-item__qty-btn {
    width: 32px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1rem;
    transition: background .15s;
}
.cart-item__qty-btn:hover { background: var(--border-light); }
.cart-item__qty-input {
    width: 44px;
    height: 36px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: #fff;
    text-align: center;
    font-weight: 600;
    font-size: .9rem;
    -moz-appearance: textfield;
}
.cart-item__qty-input::-webkit-outer-spin-button,
.cart-item__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-item__totals {
    text-align: right;
    min-width: 110px;
}
.cart-item__price-unit {
    font-size: .76rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.cart-item__price-unit small { font-size: .68rem; opacity: .8; }
.cart-item__total {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}
.cart-item__total-sub {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cart-item__remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    color: var(--text-muted);
    cursor: pointer;
    transition: all .15s;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-item__remove:hover { background: rgba(230,57,70,.1); color: #e63946; }

.cart-items__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding: 4px 0;
    flex-wrap: wrap;
    gap: 10px;
}
.cart-items__continue,
.cart-items__clear {
    background: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s, color .15s;
}
.cart-items__continue:hover { color: var(--winkel-accent); background: var(--winkel-accent-bg); }
.cart-items__clear:hover { color: #e63946; background: rgba(230,57,70,.06); }

/* ----- Sticky besteloverzicht ----- */
.cart-summary-wrap {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cart-summary-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.cart-summary-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.cart-summary-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: .9rem;
    color: var(--text-secondary);
}
.cart-summary-card__row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}
.cart-summary-card__row small { color: var(--text-muted); font-weight: 400; font-size: .76rem; }
.cart-summary-card__free { color: #10b981 !important; font-weight: 700 !important; }
.cart-summary-card__hint {
    font-size: .76rem;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 8px 10px;
    border-radius: 6px;
    margin: 4px 0 6px;
    line-height: 1.4;
}
.cart-summary-card__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 14px 0 18px;
    padding-top: 14px;
    border-top: 2px solid var(--border-light);
    font-size: 1.05rem;
    font-weight: 700;
}
.cart-summary-card__total span:last-child {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--winkel-accent);
    letter-spacing: -0.01em;
}
.cart-summary-card__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--winkel-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16,185,129,.25);
    transition: background .15s, transform .1s, box-shadow .15s;
}
.cart-summary-card__checkout:hover {
    background: var(--winkel-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16,185,129,.4);
}
.cart-summary-card__safe {
    text-align: center;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.cart-summary-card__safe i { color: var(--winkel-accent); }
.cart-summary-card__methods {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-light);
}
.cart-summary-card__methods span {
    background: var(--bg-secondary);
    padding: 3px 10px;
    border-radius: 99px;
}

.cart-trust {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cart-trust__item {
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    font-size: .82rem;
}
.cart-trust__item i {
    grid-row: 1 / 3;
    color: var(--winkel-accent);
    font-size: 1.05rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--winkel-accent-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-trust__item strong { color: var(--text-primary); font-size: .85rem; }
.cart-trust__item span { color: var(--text-muted); font-size: .76rem; line-height: 1.3; }

/* ----- Lege winkelwagen ----- */
.cart-empty-state {
    background: #fff;
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
}
.cart-empty-state__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--winkel-accent-bg);
    color: var(--winkel-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.cart-empty-state h2 { font-size: 1.3rem; font-weight: 700; margin: 0 0 8px; }
.cart-empty-state p { color: var(--text-secondary); font-size: .9rem; margin: 0 0 22px; max-width: 400px; margin-left: auto; margin-right: auto; }

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--winkel-accent);
    color: #fff;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 4px 12px rgba(16,185,129,.25);
    transition: background .15s, transform .1s;
}
.btn-primary-lg:hover { background: var(--winkel-accent-dark); transform: translateY(-1px); }

/* ----- Sticky mobile bar ----- */
.cart-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 20px;
    z-index: 80;
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.cart-mobile-bar__lbl { font-size: .72rem; color: var(--text-muted); display: block; }
.cart-mobile-bar__total { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.cart-mobile-bar__btn {
    background: var(--winkel-accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary-wrap { position: static; }
}
@media (max-width: 640px) {
    .cart-container { padding: 18px 16px 120px; }
    .cart-item {
        grid-template-columns: 72px 1fr 36px;
        grid-template-rows: auto auto;
        gap: 12px;
        padding: 12px;
    }
    .cart-item__media { width: 72px; height: 72px; grid-row: 1 / 3; }
    .cart-item__info { grid-column: 2; }
    .cart-item__price-mobile { display: block; margin-top: 4px; }
    .cart-item__qty { grid-column: 2; flex-direction: row; align-items: center; gap: 10px; }
    .cart-item__qty-lbl { display: none; }
    .cart-item__totals { display: none; }
    .cart-item__remove { grid-column: 3; grid-row: 1; align-self: start; }
    .cart-mobile-bar { display: flex; }
}

/* ============================================================
   Single-page CHECKOUT (.co-*)
   ============================================================ */
.co-container { padding: 32px 24px 80px; max-width: 1180px; }
.co-title { font-size: 1.85rem; font-weight: 800; margin: 0 0 4px; }
.co-title i { color: var(--winkel-accent); margin-right: 8px; }
.co-subtitle { color: var(--text-muted); font-size: .92rem; margin: 0 0 28px; }

.co-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}
.co-left  { display: flex; flex-direction: column; gap: 16px; }
.co-right { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }

.co-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.co-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}
.co-card__title i { color: var(--winkel-accent); width: 22px; }

.co-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}
.co-item:last-of-type { border-bottom: none; }
.co-item__img,
.co-item__img-placeholder {
    width: 48px; height: 48px;
    border-radius: 6px;
    background: var(--bg-secondary);
    object-fit: contain;
    padding: 4px;
}
.co-item__img-placeholder { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1rem; }
.co-item__name { font-weight: 600; font-size: .88rem; line-height: 1.3; }
.co-item__meta { font-size: .76rem; color: var(--text-muted); margin-top: 2px; }
.co-item__total { font-weight: 700; font-size: .92rem; }

.co-edit-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 12px;
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
}
.co-edit-link:hover { color: var(--winkel-accent); }

.co-verzend { display: flex; flex-direction: column; gap: 8px; }
.co-verzend__opt {
    display: grid;
    grid-template-columns: 22px 22px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, background .15s;
}
.co-verzend__opt:hover { border-color: var(--winkel-accent); }
.co-verzend__opt:has(input:checked) { border-color: var(--winkel-accent); background: var(--winkel-accent-bg); }
.co-verzend__opt input[type="radio"] { accent-color: var(--winkel-accent); }
.co-verzend__opt > i { color: var(--winkel-accent); font-size: 1.05rem; }
.co-verzend__naam { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.co-verzend__omschrijving { font-size: .76rem; color: var(--text-muted); margin-top: 2px; }
.co-verzend__prijs { font-weight: 700; font-size: .92rem; color: var(--winkel-accent); white-space: nowrap; }
.co-verzend__prijs.is-gratis { color: #10b981; }

.co-tot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: .9rem;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}
.co-tot-row span:last-child { font-weight: 600; color: var(--text-primary); }
.co-tot-row small { font-size: .76rem; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.co-tot-row .is-gratis { color: #10b981 !important; font-weight: 700 !important; }
.co-tot-row--total {
    border-top: 2px solid var(--border-light);
    margin: 8px 0 16px;
    padding-top: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}
.co-tot-row--total span:last-child {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--winkel-accent);
    letter-spacing: -0.01em;
}

.co-av {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .82rem;
    color: var(--text-secondary);
    line-height: 1.45;
    padding: 10px 0;
    cursor: pointer;
}
.co-av input { margin-top: 3px; accent-color: var(--winkel-accent); flex-shrink: 0; }
.co-av a { color: var(--winkel-accent); }

.co-submit {
    width: 100%;
    background: var(--winkel-accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(16,185,129,.28);
    transition: background .15s, transform .1s, box-shadow .15s;
}
.co-submit:hover:not(:disabled) { background: var(--winkel-accent-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(16,185,129,.4); }
.co-submit:disabled { opacity: .6; cursor: not-allowed; }

.co-status {
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--winkel-accent-bg);
    border-radius: 8px;
    font-size: .88rem;
    color: var(--winkel-accent);
    text-align: center;
}
.co-safe { margin-top: 10px; text-align: center; font-size: .78rem; color: var(--text-muted); }
.co-safe i { color: #cc0066; margin-right: 4px; }

@media (max-width: 900px) {
    .co-grid { grid-template-columns: 1fr; }
    .co-right { position: static; }
}
@media (max-width: 640px) { .co-container { padding: 18px 16px 80px; } }

/* ---- Legacy multi-step checkout (oude .checkout-* classes) ---- */
.checkout-panel { display: none; }
.checkout-panel.active { display: block; animation: chkFade .25s ease; }
@keyframes chkFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}
.checkout-step {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}
.checkout-step::after {
    content: '';
    position: absolute;
    left: calc(32px + 12px);
    right: -12px;
    height: 2px;
    background: var(--border);
    top: 16px;
    z-index: 0;
}
.checkout-step:last-child::after { display: none; }
.checkout-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.checkout-step.active .checkout-step__num {
    background: var(--winkel-accent);
    color: #fff;
}
.checkout-step.done .checkout-step__num {
    background: var(--winkel-accent);
    color: #fff;
}
.checkout-step.done::after { background: var(--winkel-accent); }
.checkout-step.active { color: var(--text-primary); font-weight: 600; }
.checkout-step.done  { color: var(--winkel-accent); }

.checkout-panel { display: none; }
.checkout-panel.active { display: block; }

/* AV Checkbox */
.av-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.9rem; }
.av-check input { margin-top: 3px; accent-color: var(--winkel-accent); flex-shrink: 0; width: 16px; height: 16px; }

/* Bestelling overzicht in checkout */
.order-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
}
.order-summary-row:last-child { border-bottom: none; }
.order-summary-row strong { font-weight: 700; }

/* ---- Betaling voltooid ---- */
.payment-success {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}
.payment-success__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--winkel-accent-bg);
    color: var(--winkel-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
}
.payment-success h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.payment-success p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.bestelnummer-badge {
    display: inline-block;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 16px 0;
    font-family: monospace;
}

/* ---- Portaal ---- */
.portaal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.portaal-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 0;
}
.portaal-tab {
    padding: 10px 18px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    font-family: var(--font);
    text-decoration: none;
}
.portaal-tab:hover { color: var(--text-primary); background: var(--bg-secondary); }
.portaal-tab.active { color: var(--winkel-accent); border-bottom-color: var(--winkel-accent); font-weight: 600; }

/* ---- Winkelwagen badge in topbar ---- */
.cart-badge-wrap { position: relative; display: inline-flex; }
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: var(--winkel-accent);
    color: #fff;
    border-radius: 99px;
    font-size: 0.68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    pointer-events: none;
}
.cart-badge:empty, .cart-badge[data-count="0"] { display: none; }

/* ---- Auth pagina ---- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 80px 20px 40px;
}
.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
}
.auth-logo {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ---- Tabellen ---- */
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); padding: 10px 14px; border-bottom: 2px solid var(--border); text-align: left; }
.table td { padding: 12px 14px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; }

/* ---- Empty state ---- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state i { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.empty-state p { font-size: 0.9rem; margin-bottom: 20px; }

/* ---- Winkel-specifieke alert ---- */
.alert-success { background: rgba(16,185,129,0.08); border-left: 3px solid var(--winkel-accent); color: #065f46; }
.alert-error   { background: rgba(230,57,70,0.08); border-left: 3px solid #e63946; color: #991b1b; }
.alert-info    { background: rgba(30,58,95,0.06); border-left: 3px solid var(--primary); color: var(--primary); }

/* ---- Responsief ---- */
@media (max-width: 1024px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .pdp { grid-template-columns: 1fr; gap: 32px; }
    .pdp__gallery { position: static; }
    .pdp-trust { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
    .checkout-step__label { display: none; }
    .winkel-hero { padding: 60px 0 48px; }
    .pdp__name { font-size: 1.4rem; }
    .pdp-container { padding: 18px 16px 120px; }
    .pdp-trust { padding: 16px; gap: 12px; }
    .pdp-trust__item i { width: 38px; height: 38px; font-size: 1.1rem; }
    .pdp-sticky-mobile { display: flex; }
    .auth-card { padding: 28px 20px; }
    .winkel-hero__stats { gap: 20px; }
}

@media (max-width: 480px) {
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-grid { grid-template-columns: 1fr; }
    .cat-filter-bar { gap: 6px; }
    .checkout-steps { gap: 6px; }
    .pdp-trust { grid-template-columns: 1fr; }
    .pdp__price-incl { font-size: 1.7rem; }
    .pdp__buy { padding: 18px 16px; }
}
