/**
 * استایل‌های باکس فروشنده و امتیازات به سبک دیجی‌کالا
 */

/* باکس فروشنده */
.seller-box {
    margin: 20px 0;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    background-color: #fcfcfc;
}

/* هدر باکس فروشنده */
.seller-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.seller-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-right: 22px;
}

.seller-title:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #2e7d32;
    border-radius: 50%;
}

.seller-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-rating-stars {
    display: flex;
    gap: 2px;
}

.seller-rating-stars i {
    color: #FFC107;
    font-size: 14px;
}

.seller-rating-value {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

/* محتوای باکس فروشنده */
.seller-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* امتیازات فروش */
.seller-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-score-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 16px;
}

.seller-score-details {
    flex-grow: 1;
}

.seller-score-title {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.seller-score-progress {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.seller-score-bar {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border-radius: 10px;
    background-color: #2e7d32;
}

/* نسخه موبایل */
@media (max-width: 768px) {
    .seller-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seller-box {
        margin: 15px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
} 