/* ================= BADGE BASE ================= */
.custom-rating-badge {
    position: absolute;
    left: 10px;
    bottom: 12px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 6px;
    border-radius: 7px;
    box-shadow: 0 6px 14px rgba(0,0,0,.18);
    z-index: 9;
    transform-origin: left bottom;
}

.custom-rating-badge.small {
    transform: scale(.85);
    padding: 5px 7px;
}

.custom-rating-badge.tiny {
    transform: scale(.72);
    padding: 4px 6px;
    left: 7px;
    bottom: 7px;
}

.custom-rating-badge .shield svg {
    width: 16px;
    height: 16px;
}

.custom-rating-badge.small .shield svg {
    width: 16px;
    height: 16px;
}

.custom-rating-badge.tiny .shield svg {
    width: 16px;
    height: 16px;
}

.custom-rating-badge .divider {
    width: 1px;
    height: 14px;
    background: #8d8d8e;
}

.custom-rating-badge .rating-value {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.custom-rating-badge.small .rating-value {
    font-size: 14px;
}

.custom-rating-badge.tiny .rating-value {
    font-size: 14px;
}

.custom-rating-badge .fa-star {
    font-size: 13px;
    color: var(--crb-star-color, #22993f);
    margin-top: -3px;
}

.custom-rating-badge.small .fa-star {
    font-size: 14px;
}

.custom-rating-badge.tiny .fa-star {
    font-size: 14px;
}

/* Shield fill color (settings-controlled) */
.custom-rating-badge .shield svg .crb-shield-fill {
    fill: var(--crb-shield-color, #22c55e);
}

/* Image containers safety */
.product-images-container,
.woocommerce-LoopProduct-link,
.product-loop-image-wrapper {
    position: relative;
}
