﻿.vendor-card {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

    .vendor-card:hover {
        border-color: #d4af37; /* Gold */
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
    }

.vendor-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1); /* Very faint gold */
    color: #d4af37 !important;
}

.vendor-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.vendor-card:hover .vendor-name {
    color: #d4af37;
}

.vendor-category {
    font-size: 0.65rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.description-line-clamp {
    /* Assuming standard Bootstrap line-height of 1.5, 4 lines = 6em */
    min-height: 6em;
    /* Safely clamps text to 4 lines with an ellipsis if it goes over */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}