/* Seller Profile Specific Styles */
.seller-header {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.seller-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    transform: translateY(-50%) translateX(-20%);
    z-index: 0;
    pointer-events: none;
}

.seller-logo {
    width: 130px;
    height: 130px;
    min-width: 130px;
    min-height: 130px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    background: #18181b;
    border: 4px solid rgba(249, 115, 22, 0.5);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.seller-logo i {
    color: var(--warning);
}

.seller-info {
    position: relative;
    z-index: 1;
    flex: 1;
}

.seller-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    color: var(--accent-primary);
    font-size: 1.4rem;
}

.seller-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.seller-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-icon {
    color: var(--text-primary);
}

.seller-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 200px;
}

/* Layout */
.seller-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding-bottom: 5rem;
}

.seller-sidebar {
    flex: 0 0 320px;
}

.stat-box {
    margin-bottom: 2rem;
}

.stat-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
    color: var(--text-primary);
}

.stat-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rating-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.rating-bar-container {
    width: 130px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar {
    height: 100%;
    border-radius: 4px;
}

.rating-bar.excellent { background: var(--success); }
.rating-bar.good { background: var(--warning); }
.rating-bar.average { background: var(--accent-primary); }

.seller-main {
    flex: 1;
}

/* Reviews List */
.review-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.review-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    color: var(--warning);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-stars {
    color: var(--warning);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.review-product {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-product i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .seller-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .seller-meta {
        justify-content: center;
    }
    
    .seller-actions {
        width: 100%;
    }
    
    .seller-layout {
        flex-direction: column;
    }
    
    .seller-sidebar {
        flex: none;
        width: 100%;
    }
}
