/* /css/pages/sellers.css */

.sellers-header {
    background: var(--dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.sellers-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-sellers {
    flex: 1;
    min-width: 300px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    outline: none;
}
.search-sellers:focus { border-color: var(--primary); }

.seller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* SELLER CARD */
.seller-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-soft);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.seller-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.seller-banner {
    height: 100px;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    position: relative;
}

.seller-logo-wrapper {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    padding: 4px;
    position: absolute;
    bottom: -35px;
    left: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seller-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.5rem;
}

.seller-info {
    padding: 2.5rem 1.5rem 1.5rem; /* Top padding clears logo */
    flex: 1;
}

.seller-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-icon {
    color: #10B981;
    font-size: 1rem;
}

.seller-meta {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-stats {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #eee;
    font-size: 0.85rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong { color: var(--dark); }

.visit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 10px;
    background: var(--light);
    color: var(--dark);
    border: 1px solid #ddd;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.visit-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}