/*
 * Hark E-commerce Theme — Webshop stijlen
 */

/* Productgrid */
.hark-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    padding: 24px 0;
}
.hark-product-card {
    background: var(--hark-white);
    border-radius: var(--hark-radius-lg);
    overflow: hidden;
    box-shadow: var(--hark-shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.hark-product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.hark-product-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--hark-light);
}
.hark-product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.hark-product-card__body     { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hark-product-card__name     { font-size: 15px; font-weight: 600; color: var(--hark-primary); }
.hark-product-card__price    { font-size: 20px; font-weight: 800; color: var(--hark-accent); }
.hark-product-card__old-price { font-size: 13px; color: var(--hark-text-light); text-decoration: line-through; }
.hark-product-card__badge    { display: inline-block; background: var(--hark-accent); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

/* Category header */
.hark-category-header {
    background: var(--hark-primary);
    color: #fff;
    padding: 40px 24px;
    text-align: center;
}
.hark-category-header h1 { color: #fff; font-size: clamp(24px, 4vw, 42px); }

/* Trust badges */
.hark-trust-bar {
    background: var(--hark-light);
    border-top: 1px solid var(--hark-border);
    border-bottom: 1px solid var(--hark-border);
    padding: 14px 24px;
}
.hark-trust-bar__inner {
    max-width: var(--hark-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}
.hark-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hark-text);
}
.hark-trust-bar__item span:first-child { color: var(--hark-accent); font-size: 16px; }

@media (max-width: 480px) {
    .hark-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
