.vendor-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.vendor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* Imagem */
.vendor-image img {
    height: 320px;
    object-fit: cover;
}

/* Badge */
.vendor-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4b36a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Conteúdo */
.vendor-category {
    color: #d4b36a;
    font-size: 12px;
    letter-spacing: 1px;
}

.vendor-title {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: #1f2937;
}

.vendor-location {
    color: #6b7280;
    font-size: 14px;
}