/* --- SALE BOX STYLING --- */
.asr-sale-box {
    margin-top: 12px;
    background: #fffbea;
    border: 1px solid #f1d67a;
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.4;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}
.asr-sale-box .asr-original {
    font-size: 13px;
    color: #565959;
    text-decoration: line-through;
}
.asr-sale-box .asr-sale {
    font-size: 15px;
    color: #B12704;
    font-weight: 700;
    margin-top: 2px;
}
.asr-sale-box .asr-sale .asr-off {
    color: #007600;
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}
.asr-sale-box .asr-coupon {
    margin-top: 4px;
    font-size: 13px;
    color: #0F1111;
    font-weight: 500;
}
.asr-sale-box .asr-coupon strong {
    color: #007600;
    font-weight: 700;
}

/* --- TRUE AMAZON RATING STYLE --- */
.asr-box {
    font-family: "Amazon Ember", "Inter", Arial, sans-serif;
    color: #111;
    margin: 10px 0;
    display: inline-block;
}

.asr-stars {
    display: inline-flex;
    gap: 2px;
    vertical-align: middle;
    transform: translateY(2px);
}

.asr-star {
    width: 18px;
    height: 18px;
    position: relative;
    background: #DDD;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.asr-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--fill, 0%);
    height: 100%;
    background: #FFA41C;
    clip-path: inherit;
    transition: width 0.3s ease;
}

.asr-text {
    display: inline-block;
    margin-left: 6px;
    font-size: 14px;
    color: #0F1111;
}

.asr-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #0F1111;
}

.asr-text span {
    color: #007185;
    margin-left: 4px;
    font-size: 13px;
}

.asr-text span:hover {
    text-decoration: underline;
    cursor: pointer;
}
