/* Vloershop Core — verlanglijst-overzicht ([vs_wishlist]). Thema-onafhankelijk. */
.vs-wishlist { font-family: 'Lato', system-ui, sans-serif; }

.vs-wishlist__title {
    margin: 0 0 18px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1f3d;
}

.vs-wishlist__loading,
.vs-wishlist__empty {
    padding: 28px 16px;
    text-align: center;
    color: #5a6172;
    font-size: 15px;
}

.vs-wishlist__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.vs-wishlist__item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    background: #fff;
    border: 1px solid #e8eaf1;
    border-radius: 12px;
    overflow: hidden;
}

.vs-wishlist__media {
    display: block;
    aspect-ratio: 1 / 1;
    background: #eceff6;
}

.vs-wishlist__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vs-wishlist__ph { display: block; width: 100%; height: 100%; background: #eceff6; }

.vs-wishlist__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px 14px;
    flex: 1 1 auto;
}

.vs-wishlist__name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2733;
    text-decoration: none;
    line-height: 1.3;
}
.vs-wishlist__name:hover { text-decoration: underline; }

.vs-wishlist__price { font-size: 14px; font-weight: 700; color: #1a1f3d; }
.vs-wishlist__price del { color: #aab0bf; font-weight: 400; margin-right: 5px; }

.vs-wishlist .vs-button.vs-wishlist__view-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 9px 12px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: var(--vs-color-primary, #2a3065) !important;
    color: #fff !important;
    border: none !important;
}

.vs-wishlist__remove {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    line-height: 1 !important;
    color: #5b6b7b !important;
    background: rgba(255, 255, 255, .92) !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .12) !important;
    cursor: pointer !important;
}
.vs-wishlist__remove:hover { color: #d12a2a !important; background: #fff !important; }

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