/* ======================
   Masonry Grid + Items
   ====================== */
.stijl-dna-grid {
    column-count: 3;
    column-gap: 24px;
    column-fill: balance;
}

@media (max-width: 1100px) {
    .stijl-dna-grid {
        column-count: 2;
    }
}

@media (max-width: 650px) {
    .stijl-dna-grid {
        column-count: 1;
    }
}

.stijl-dna-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
}

.stijl-dna-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    display: block;
}

.stijl-dna-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* Label */
.stijl-dna-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #F5F3F0;
    color: #131E29;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px 2px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Hartje */
.stijl-dna-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff !important;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #555;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.stijl-dna-heart:hover {
    background: #fff;
    transform: scale(1.08);
}

.stijl-dna-item.is-selected .stijl-dna-heart {
    background: #C26C6D !important;
    color: #fff;
}

.stijl-dna-item.is-selected .stijl-dna-heart svg {
    fill: currentColor;
}

/* Geselecteerd badge */
.stijl-dna-selected-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #C26C6D;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 2;
}

.stijl-dna-item.is-selected .stijl-dna-selected-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Load more */
.stijl-dna-load-more-wrap {
    text-align: center;
    margin: 40px 0 20px;
}