/* Hero section gradient */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

/* Card hover effects */
.vendor-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Search styling */
.search-box {
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 12px 20px;
}

/* Badge styling */
.stats-badge {
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.85em;
    font-weight: 500;
}

/* Vendor logo placeholder */
.vendor-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}
