/**
 * Rate BunnyPro — Multi-Criteria Ratings Stylesheet
 *
 * @package RateBunnyPro
 * @since   1.0.0
 */

/* ---------------------------------------------------------------
   Review Form — Star Picker
   ------------------------------------------------------------- */

.ratebunny-criteria-wrap {
    margin-bottom: 20px;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
}

.ratebunny-criteria-title {
    margin: 0 0 12px;
    font-size: 15px;
    color: #333;
}

.ratebunny-criterion {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ratebunny-criterion:last-child {
    margin-bottom: 0;
}

.ratebunny-criterion label {
    min-width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.ratebunny-stars {
    display: inline-flex;
    gap: 4px;
    cursor: pointer;
}

.ratebunny-star {
    font-size: 24px;
    color: #d4d4d4;
    transition: color 0.15s ease, transform 0.15s ease;
    user-select: none;
    line-height: 1;
}

.ratebunny-star:hover,
.ratebunny-star.hovered {
    color: #f5a623;
    transform: scale(1.15);
}

.ratebunny-star.selected {
    color: #f5a623;
}

/* ---------------------------------------------------------------
   Published Review — Displayed Ratings
   ------------------------------------------------------------- */

.ratebunny-review-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin: 8px 0 4px;
    padding: 10px 14px;
    background: #f7f7f7;
    border-radius: 8px;
    border: 1px solid #ececec;
}

.ratebunny-review-criterion {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.ratebunny-review-label {
    font-weight: 600;
    color: #555;
}

.ratebunny-review-stars {
    display: inline-flex;
    gap: 2px;
}

.ratebunny-display-star {
    font-size: 15px;
    color: #d4d4d4;
    line-height: 1;
}

.ratebunny-display-star.filled {
    color: #f5a623;
}
