/* Clean Marketplace Styles - No animations, shadows or gradients */

/* Main container */
.mp-modern-profile {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 1rem 0;
}

/* Profile card */
.mp-seller-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2rem;
    margin: 0 auto;
    max-width: 800px;
}

/* Profile image */
.mp-profile-image-modern {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

.mp-profile-image-container {
    text-align: center;
    margin-bottom: 1rem;
}

/* Seller info */
.mp-seller-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.mp-seller-location {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.mp-seller-location i {
    color: #666666;
}

/* Rating */
.mp-rating-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mp-rating-text {
    color: #666666;
    font-size: 0.9rem;
}

/* Description */
.mp-seller-description {
    background: #f8f9fa;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 3px solid #007bff;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333333;
}

/* Stats */
.mp-stats-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.mp-stat-badge {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 80px;
}

.mp-stat-badge i {
    color: #007bff;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.mp-stat-badge span {
    color: #333333;
    font-weight: 500;
    font-size: 0.8rem;
}

/* Buttons */
.mp-btn-modern {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.mp-btn-modern:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.mp-btn-secondary {
    background: #28a745;
}

.mp-btn-secondary:hover {
    background: #1e7e34;
}

/* Action buttons */
.mp-actions-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

/* Social media */
.mp-social-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.mp-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    text-decoration: none;
}

.mp-social-link:hover {
    background: #e9ecef;
    text-decoration: none;
}

.mp-social-link img {
    width: 18px;
    height: 18px;
}

/* Tabs */
.mp-nav-tabs-modern {
    border-bottom: 1px solid #e5e5e5;
    background: white;
    padding: 0;
    margin-bottom: 0;
}

.mp-nav-tabs-modern .nav-link {
    border: none;
    color: #666666;
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: transparent;
}

.mp-nav-tabs-modern .nav-link:hover {
    background: #f8f9fa;
    color: #333333;
    border: none;
}

.mp-nav-tabs-modern .nav-link.active {
    background: #007bff;
    color: white;
    border: none;
}

.mp-nav-tabs-modern .nav-link .badge {
    background: #e9ecef;
    color: #666666;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    padding: 0.1rem 0.3rem;
}

.mp-nav-tabs-modern .nav-link.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Tab content */
.tab-content {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-top: none;
}

/* Seller cards in list */
.mp-seller-list-item {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mp-seller-avatar-container {
    text-align: center;
    margin-bottom: 0.75rem;
}

.mp-seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    object-fit: cover;
}

.mp-seller-name {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    text-align: center;
    text-decoration: none;
}

.mp-seller-name:hover {
    color: #007bff;
    text-decoration: none;
}

.mp-seller-stats {
    display: flex;
    justify-content: space-around;
    margin: 0.75rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.mp-seller-stat {
    text-align: center;
    flex: 1;
}

.mp-seller-stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 0.25rem;
}

.mp-seller-stat-label {
    font-size: 0.7rem;
    color: #666666;
    text-transform: uppercase;
}

.mp-seller-shop-info {
    background: #f8f9fa;
    padding: 0.5rem;
    margin: 0.75rem 0;
    border-left: 3px solid #007bff;
    border: 1px solid #e5e5e5;
}

.mp-seller-shop-name {
    font-weight: 500;
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mp-seller-shop-name:hover {
    color: #0056b3;
    text-decoration: none;
}

.mp-seller-shop-tagline {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 0.25rem;
}

.mp-seller-actions {
    margin-top: auto;
    text-align: center;
}

.mp-seller-profile-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.mp-seller-profile-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
}

.mp-seller-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.8rem;
}

.mp-seller-reviews-count {
    color: #666666;
    font-size: 0.75rem;
}

.mp-seller-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #666666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.mp-seller-location i {
    color: #007bff;
}

/* Grid improvements */
.o_wsale_product_grid_wrapper {
    border: none !important;
    padding: 0.5rem !important;
    background: transparent !important;
}

.mp_seller.oe_product {
    padding: 0 !important;
}

/* Sellers list */
.o_wsale_products_main_row {
    background: #f8f9fa;
    padding: 1rem;
    margin: 0;
}

#sellers_grid {
    background: transparent;
}

.all-seller-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.all-seller-count {
    font-size: 1rem;
    font-weight: 500;
    color: #007bff;
}

.all-seller-avl {
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mp-seller-list-item {
        padding: 0.75rem;
    }
    
    .mp-seller-avatar {
        width: 50px;
        height: 50px;
    }
    
    .mp-seller-name {
        font-size: 0.9rem;
    }
    
    .mp-seller-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mp-seller-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* Review cards */
.mp-review-card {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 1rem;
    margin-bottom: 1rem;
}

.mp-review-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mp-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.mp-review-meta {
    flex: 1;
}

.mp-review-title {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.mp-review-date {
    color: #666666;
    font-size: 0.8rem;
}

.mp-review-content {
    color: #333333;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Product page seller info */
.mp-product-seller-info {
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
    padding: 1rem;
    margin: 1rem 0;
}

.mp-seller-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mp-seller-card-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mp-seller-avatar-wrapper {
    flex-shrink: 0;
}

.mp-seller-avatar-inline {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    object-fit: cover;
}

.mp-seller-info-wrapper {
    flex: 1;
}

.mp-seller-name-inline {
    margin-bottom: 0.25rem;
}

.mp-seller-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.mp-seller-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.mp-seller-rating-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.mp-seller-rating-text {
    color: #666666;
    font-size: 0.8rem;
}

.mp-seller-location-inline {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #666666;
    font-size: 0.8rem;
}

.mp-seller-location-inline i {
    color: #007bff;
}

/* Responsive adjustments for product seller info */
@media (max-width: 768px) {
    .mp-seller-card-inline {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .mp-seller-avatar-inline {
        width: 50px;
        height: 50px;
    }
    
    .mp-seller-info-wrapper {
        text-align: center;
    }
} 