/* ── Aggregate Rating Box ──────────────────────────────────────── */

.sar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    text-align: center;
}

.sar-box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    font-family: inherit;
    padding: 18px 28px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    border: 1px solid #eee;
}

/* Stars */
.sar-stars {
    display: flex;
    gap: 3px;
    line-height: 1;
}

.sar-star {
    font-size: 26px;
    line-height: 1;
}

.sar-star--filled {
    color: #f5a623;
}

.sar-star--empty {
    color: #ddd;
}

/* Score */
.sar-score {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.sar-score-divider {
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
}

/* Count */
.sar-count {
    font-size: 14px;
    color: #777;
    white-space: nowrap;
}

/* Read all reviews link */
.sar-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #3a7d44;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #3a7d44;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.01em;
}

.sar-link:hover,
.sar-link:focus {
    background: #3a7d44;
    color: #fff;
    text-decoration: none;
}
