/* ── Suchformular Container ── */
#vendorama-suchformular {
    background: #f8fdf9;
    border: 2px solid #1A6B3C;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(26, 107, 60, 0.08);
}
/* ── Kategorie Chips ── */
.vs-field-full { flex: 0 0 100%; }
.vs-kategorie-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.vs-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 22px;
    border: 1px solid #b8ddc8;
    background: white;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    user-select: none;
}
.vs-chip input[type="checkbox"] {
    display: none;
}
.vs-chip:hover {
    border-color: #1A6B3C;
    color: #1A6B3C;
    background: #f0faf4;
}
.vs-chip.aktiv {
    background: #1A6B3C;
    border-color: #1A6B3C;
    color: white;
}

/* ── Bewertungs-Modal ── */
#vs-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}

#vs-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: none;
}

#vs-modal h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A6B3C;
    margin: 0 0 16px;
}

#vs-sterne-input {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.vs-stern-input {
    font-size: 32px;
    cursor: pointer;
    color: #ddd;
    transition: color 0.15s;
    user-select: none;
}

.vs-stern-input.aktiv {
    color: #F5A623;
}

#vs-kommentar {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    box-sizing: border-box;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

#vs-kommentar:focus {
    border-color: #1A6B3C;
    outline: none;
}

.vs-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.vs-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

#vs-bewertung-speichern {
    background: #1A6B3C;
    color: white;
}

#vs-bewertung-speichern:hover { background: #145231; }

.vs-btn-secondary {
    background: #f3f4f6;
    color: #374151;
}

.vs-btn-secondary:hover { background: #e5e7eb; }
