.wmp-stats-container {
    margin: 15px 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.wmp-stat-block {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px 18px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* --- بلوک امتیاز و ستاره‌ها --- */
.wmp-rating-single-box {
    background-color: #fafafa;
}

.wmp-col-rating {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.wmp-block-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.wmp-stars-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.wmp-star-icons {
    display: flex !important;
    gap: 3px !important;
    direction: ltr !important;
}

.wmp-star-icons .fa-star,
.wmp-star-icons .fa-star-half-o {
    font-size: 14px !important;
}

.wmp-star-icons .fa-star.filled,
.wmp-star-icons .fa-star-half-o.filled {
    color: #ffb800 !important;
}

.wmp-star-icons .fa-star.empty {
    color: #d3d3d3 !important;
}

.wmp-rating-num {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}
.wmp-rating-num small {
    font-weight: normal;
    color: #999;
}

/* --- بلوک رضایت خریداران --- */
.wmp-satisfaction-single-box {
    background-color: #fafafa;
}

.wmp-row-satisfaction {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}

.wmp-green-text strong {
    color: #27ae60 !important;
    font-size: 15px !important;
}

/* --- بلوک آمار زنده --- */
.wmp-live-box-wrapper {
    background: #ffffff;
}

.wmp-row-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 6px 0;
}

.wmp-border-b {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 6px;
    padding-bottom: 8px;
}

.wmp-label-side {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.wmp-orange-text {
    color: #e67e22 !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.wmp-value-side strong {
    color: #333;
    font-size: 15px;
}
.wmp-value-side small {
    color: #888;
}

/* انیمیشن چشمک زن */
.wmp-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #e67e22;
    border-radius: 50%;
    position: relative;
}
.wmp-pulse::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: inherit;
    border-radius: 50%;
    animation: wmp-pulse-anim 1.5s infinite;
}
@keyframes wmp-pulse-anim {
    0% { transform: scale(0.9); opacity: 0.7; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(0.9); opacity: 0; }
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
    .wmp-col-rating, .wmp-row-satisfaction, .wmp-row-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
    .wmp-stars-wrap {
        width: 100%;
        justify-content: space-between;
    }
}