/* Marco UnitedSeats Zoekbalk autocomplete v1.0 */

.marco-zoekbalk-dropdown {
    position: fixed;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 2px solid #cc0000;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    z-index: 99999;
    overflow: hidden;
}

/* Item */
.marco-zb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.1s;
}
.marco-zb-item:last-of-type {
    border-bottom: none;
}
.marco-zb-item:hover,
.marco-zb-item.actief {
    background: #f8f8f8;
}

/* Afbeelding */
.marco-zb-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 3px;
    flex-shrink: 0;
}
.marco-zb-img--leeg {
    background: #eee;
}

/* Tekst */
.marco-zb-tekst {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.marco-zb-naam {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.marco-zb-sku {
    font-size: 11px;
    color: #999;
}

/* Type badge */
.marco-zb-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 3px;
    flex-shrink: 0;
}
.marco-zb-badge--product {
    background: #cc0000;
    color: #fff;
}
.marco-zb-badge--post {
    background: #1a1a1a;
    color: #fff;
}
.marco-zb-badge--project {
    background: #555;
    color: #fff;
}

/* Alle resultaten link */
.marco-zb-alles {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #cc0000;
    text-decoration: none;
    background: #fafafa;
    border-top: 1px solid #eee;
    text-align: center;
}
.marco-zb-alles:hover {
    background: #f0f0f0;
    color: #aa0000;
}
.marco-zb-alles strong {
    font-weight: 700;
}
