/* =========================
   WRAPPER
========================= */
.rr-wrap{
    max-width: 900px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    padding: 0 10px;
}

/* =========================
   TOP BLOCKS (rating + recommend)
========================= */
.rr-top{
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 20px;
}

/* BOX BASE */
.rr-rating-box,
.rr-recommend-box{
    flex: 1;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 18px;
    min-width: 0;
}

/* =========================
   LABEL
========================= */
.rr-label{
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
    font-weight: 600;
}

/* =========================
   RATING BLOCK
========================= */
.rr-rating-value{
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

/* STARS */
.rr-rating-stars{
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    font-size: 18px;
}

.rr-rating-stars .star.full{
    color: #f5b301;
}

.rr-rating-stars .star.empty{
    color: #ddd;
}

.rr-rating-count{
    font-size: 13px;
    color: #888;
}

/* =========================
   RECOMMEND BLOCK
========================= */
.rr-rec-row{
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.rr-rec-row:last-child{
    border-bottom: none;
}

.rr-rec-row strong{
    font-weight: 700;
}

.rr-rec-row:first-child strong{
    color: #2e7d32;
}

.rr-rec-row:last-child strong{
    color: #c62828;
}

/* =========================
   FORM
========================= */
.rr-form{
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rr-form input,
.rr-form textarea,
.rr-form select{
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.rr-form textarea{
    min-height: 110px;
    resize: vertical;
}

.rr-form button{
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.rr-form button:hover{
    background: #005f8d;
}

/* =========================
   REVIEW BOX
========================= */
.rr-box{
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
}

.rr-box strong{
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.rr-stars{
    color: #f5b301;
    font-size: 16px;
    margin: 6px 0;
    letter-spacing: 1px;
}

.rr-text{
    font-size: 14px;
    color: #333;
    margin: 8px 0;
    line-height: 1.5;
}

.rr-meta{
    font-size: 12px;
    color: #888;
}

.rr-votes{
    margin-top: 8px;
    font-size: 13px;
    color: #555;
}

/* =========================
   LOAD MORE
========================= */
.rr-load-more{
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.rr-load-more:hover{
    background: #000;
}

.rr-load-more:disabled{
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){
    .rr-top{
        flex-direction: column;
    }
}
.rr-wrap{
    max-width:900px;
    margin:20px auto;
    font-family:Arial;
}

/* TOP */
.rr-top{
    display:flex;
    gap:20px;
}

.rr-rating-box,
.rr-recommend-box{
    flex:1;
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:12px;
    padding:16px;
}

/* BAR */
.rr-bar{
    width:100%;
    height:10px;
    background:#eee;
    border-radius:20px;
    overflow:hidden;
    margin-top:8px;
}

.rr-fill{
    height:100%;
    border-radius:20px;
    transition:width .4s ease;
}

.rr-fill-gold{ background:#f5b301; }
.rr-fill-green{ background:#2e7d32; }
.rr-fill-red{ background:#c62828; }

.rr-bar-title{
    font-size:13px;
    margin-bottom:6px;
}

/* FORM */
.rr-form{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* REVIEWS */
.rr-box{
    background:#fff;
    border:1px solid #e6e6e6;
    padding:15px;
    border-radius:10px;
    margin-bottom:12px;
}

.rr-stars{
    color:#f5b301;
    margin:6px 0;
}

/* MOBILE */
@media(max-width:768px){
    .rr-top{
        flex-direction:column;
    }
}
.rr-wrap{
    max-width:900px;
    margin:20px auto;
    font-family:Arial;
}

/* TOP */
.rr-top{
    display:flex;
    gap:20px;
    align-items:stretch;
}

.rr-rating-box,
.rr-recommend-box{
    flex:1;
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:12px;
    padding:16px;
}

/* LABEL */
.rr-label{
    font-size:14px;
    color:#666;
    margin-bottom:10px;
}

/* BIG STARS */
.rr-stars-big{
    font-size:26px;
    color:#f5b301;
    letter-spacing:3px;
    margin:10px 0;
}

/* BAR */
.rr-bar{
    width:100%;
    height:10px;
    background:#eee;
    border-radius:20px;
    overflow:hidden;
    margin-top:8px;
}

.rr-bar.small{
    height:6px;
}

.rr-fill{
    height:100%;
    border-radius:20px;
    transition:width .4s ease;
}

.rr-fill-gold{ background:#f5b301; }
.rr-fill-green{ background:#2e7d32; }
.rr-fill-red{ background:#c62828; }

/* BREAKDOWN */
.rr-stars-breakdown{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.rr-star-row{
    display:flex;
    align-items:center;
    gap:10px;
}

.rr-star-label{
    width:30px;
    font-size:13px;
}

.rr-star-count{
    width:30px;
    text-align:right;
    font-size:13px;
    color:#666;
}

/* FORM + REVIEWS */
.rr-form{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.rr-box{
    border:1px solid #e6e6e6;
    padding:15px;
    border-radius:10px;
    margin-bottom:12px;
}

.rr-stars{
    color:#f5b301;
    margin:6px 0;
}

/* MOBILE */
@media(max-width:768px){
    .rr-top{
        flex-direction:column;
    }
}
.rr-wrap{
    font-family: Arial, sans-serif;
}

/* TOP */
.rr-top{
    display:flex;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.rr-rating-box,
.rr-recommend-box{
    flex:1;
    min-width:280px;
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:12px;
    padding:18px;
}

/* LABEL */
.rr-label{
    font-size:13px;
    color:#777;
    margin-bottom:10px;
    font-weight:600;
}

/* RATING */
.rr-rating-value{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.rr-rating-scale{
    display:flex;
    gap:6px;
    margin-bottom:10px;
}

.rr-star{
    font-size:26px;
    color:#ddd;
}

.rr-star.active{
    color:#f5b301;
}

.rr-rating-count{
    font-size:13px;
    color:#888;
}

/* RECOMMEND */
.rr-rec-item{
    margin-bottom:12px;
}

.rr-rec-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    margin-bottom:6px;
}

.rr-rec-left{
    display:flex;
    align-items:center;
    gap:8px;
}

/* SQUARE */
.rr-rec-icon{
    width:10px;
    height:10px;
    border-radius:2px;
}

.rr-rec-icon.green{ background:#2e7d32; }
.rr-rec-icon.red{ background:#c62828; }

/* BARS */
.rr-bar{
    width:100%;
    height:8px;
    background:#eee;
    border-radius:6px;
    overflow:hidden;
}

.rr-bar div{
    height:100%;
}

.rr-bar.green div{ background:#2e7d32; }
.rr-bar.red div{ background:#c62828; }

/* REVIEWS */
.rr-box{
    border:1px solid #e6e6e6;
    border-radius:10px;
    padding:15px;
    margin-bottom:12px;
    background:#fff;
}

.rr-stars{
    color:#f5b301;
    margin:6px 0;
}

.rr-text{
    margin:8px 0;
    line-height:1.4;
}

.rr-meta{
    font-size:12px;
    color:#888;
}

.rr-votes{
    font-size:13px;
    margin-top:6px;
}

/* MOBILE */
@media(max-width:768px){
    .rr-top{
        flex-direction:column;
    }
}
.rr-wrap{
    font-family: Arial;
}

.rr-top{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.rr-rating-box,
.rr-recommend-box{
    flex:1;
    min-width:280px;
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:12px;
    padding:18px;
}

/* LABEL */
.rr-label{
    font-size:13px;
    color:#777;
    margin-bottom:10px;
}

/* VALUE */
.rr-rating-value{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

/* ⭐ STARS */
.rr-stars-scale{
    display:flex;
    gap:6px;
    margin-bottom:10px;
}

.rr-star{
    font-size:26px;
    color:#ddd;
    transition:.2s;
}

.rr-star.active{
    color:#f5b301;
}

/* COUNT */
.rr-rating-count{
    font-size:13px;
    color:#888;
}

/* =======================
   RECOMMEND
======================= */
.rr-rec-item{
    margin-bottom:12px;
}

.rr-rec-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:6px;
}

/* маленькі квадрати */
.rr-box-green,
.rr-box-red{
    width:10px;
    height:10px;
    display:inline-block;
    border-radius:2px;
    margin-right:6px;
}

.rr-box-green{ background:#2e7d32; }
.rr-box-red{ background:#c62828; }

/* BAR */
.rr-bar{
    width:100%;
    height:8px;
    background:#eee;
    border-radius:6px;
    overflow:hidden;
}

.rr-fill-green{
    height:100%;
    background:#2e7d32;
}

.rr-fill-red{
    height:100%;
    background:#c62828;
}

/* MOBILE */
@media(max-width:768px){
    .rr-top{
        flex-direction:column;
    }
}