/* رپِر کلی تب نظرات آمازون */
.rt-amz-reviews-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* ستون خلاصه (کناری، سمت راست در RTL) */
.rt-amz-reviews-summary {
    flex: 0 0 280px;
    max-width: 320px;
    position: sticky;
    top: 140px;
}

.rt-amz-summary-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    font-size: 14px;
}

.rt-amz-summary-box h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
}

/* امتیاز کلی */
.rt-amz-summary-score {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.rt-amz-score-number {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
}

.rt-amz-score-stars .rt-star {
    font-size: 18px;
}

/* ستاره‌ها */
.rt-star-full,
.rt-star-half {
    color: #f97316;
}

.rt-star-empty {
    color: #d1d5db;
}

/* متن زیر امتیاز */
.rt-amz-summary-meta {
    margin-bottom: 12px;
    color: #6b7280;
}

/* نوارهای درصد ستاره‌ها */
.rt-amz-summary-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px;
}

.rt-amz-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.rt-amz-bar-label {
    width: 52px;
    text-align: left;
}

.rt-amz-bar-track {
    flex: 1;
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.rt-amz-bar-fill {
    height: 100%;
    border-radius: inherit;
    background: #f97316;
}

.rt-amz-bar-percent {
    width: 40px;
    text-align: left;
    color: #6b7280;
}

/* ستون اصلی لیست نظرات */
.rt-amz-reviews-main {
    flex: 1 1 auto;
}

/* هر نظر */
.rt-amz-review {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.rt-amz-review:last-child {
    border-bottom: none;
}

.rt-amz-review-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.rt-amz-review-stars .rt-star {
    font-size: 16px;
}

.rt-amz-review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 13px;
    color: #6b7280;
}

.rt-amz-review-author {
    font-weight: 600;
    color: #111827;
}

.rt-amz-review-body {
    font-size: 14px;
    line-height: 1.7;
    color: #111827;
}

.rt-amz-review-footer {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

/* ریسپانسیو: موبایل / تبلت */
@media (max-width: 768px) {
    .rt-amz-reviews-wrap {
        flex-direction: column;
    }

    .rt-amz-reviews-summary {
        position: static;
        /* استیکی را غیرفعال کن روی موبایل */
        width: 100%;
        max-width: 100%;
        order: -1;
        /* باکس امتیاز برود بالا */
    }

    .rt-amz-summary-box {
        margin-bottom: 10px;
    }
}















/* جعبه بولت‌پوینت‌ها (می‌تونی بعداً سفارشی‌ترش کنی) */
.rt-amz-features-box ul {
    margin: 0;
    padding: 0 1.2rem 0 0;
    list-style: disc;
}

.rt-amz-features-box li {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.7;
}

/* جعبه قیمت شبیه تصویر */
.rt-amz-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-family: inherit;
    width: 100%;
}

/* Badge قرمز درصد تخفیف */
.rt-amz-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 999px;
    background: #ef4444;
    /* قرمز */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.rt-amz-price-badge-text {
    line-height: 1.2;
}

/* قیمت قدیم، خاکستری و خط‌خورده/کمرنگ */
.rt-amz-price-original {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    opacity: 0.7;
}

/* قیمت نهایی، درشت و پررنگ */
.rt-amz-price-final {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rt-amz-price-final-number {
    letter-spacing: 1px;
}

.rt-amz-price-final-currency,
.rt-amz-price-currency {
    font-size: 13px;
    font-weight: 500;
}