/* Sellers Page Styles */
.sellers-page {
    background: #f8f9fa;
    min-height: 80vh;
}

.filters-sidebar {
    position: sticky;
    top: 20px;
}

.seller-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.seller-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Vendor Avatar Styles */
.vendor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    margin: 0 auto;
}

.vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Info Styling */
.seller-contact-info a {
    transition: color 0.3s ease;
}

.seller-contact-info a:hover {
    text-decoration: underline;
}

/* View Products Button Enhancement */
.btn-view-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255,165,0,0.3);
}

.btn-view-products:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,165,0,0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sellers-page .container > div,
    .seller-products-page .container > div:last-child {
        grid-template-columns: 1fr !important;
    }

    .filters-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .sellers-page h1,
    .seller-products-page h1 {
        font-size: 24px !important;
    }

    .seller-card,
    .product-card {
        margin-bottom: 15px;
    }

    .vendor-avatar {
        width: 100px;
        height: 100px;
    }

    .vendor-avatar-initial {
        font-size: 40px;
    }
}

