/* Vloershop Core — recent bekeken ([vs_recent]). Thema-onafhankelijk. */
.vs-recent { font-family: 'Lato', system-ui, sans-serif; margin: 24px 0; }

.vs-recent__title {
    margin: 0 0 14px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1f3d;
}

.vs-recent__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}

.vs-recent__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1f2733;
    background: #fff;
    border: 1px solid #e8eaf1;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.12s;
}
.vs-recent__item:hover {
    box-shadow: 0 8px 22px rgba(6, 27, 61, 0.1);
    transform: translateY(-2px);
}

.vs-recent__media {
    display: block;
    aspect-ratio: 1 / 1;
    background: #eceff6;
}
.vs-recent__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.vs-recent__name {
    padding: 10px 12px 2px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vs-recent__price { padding: 0 12px 12px; font-size: 14px; font-weight: 700; color: #1a1f3d; }
.vs-recent__price del { color: #aab0bf; font-weight: 400; margin-right: 5px; }

@media (max-width: 600px) {
    .vs-recent__list { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
}

/* Auto-band net boven de footer (productpagina) */
.vs-recent-band {
    width: 100%;
    max-width: 1200px;
    margin: 8px auto 40px;
    padding: 0 16px;
    box-sizing: border-box;
}
.vs-recent-band .vs-recent { margin: 0; }

/* Prijs-eenheid (per m²/m/stuk) */
.vs-recent__unit {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--vs-color-muted, #667085);
    margin-left: 2px;
}
