.ccr-reviews-wrapper {
    background: #000;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    margin-top: 25px;
}

/* HEADER */
.ccr-summary {
    text-align: center;
    margin-bottom: 18px;
}

.ccr-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* RATING */
.ccr-average-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ccr-big-rating {
    font-size: 44px;
    font-weight: 800;
}

.ccr-stars {
    font-size: 18px;
    color: #0A84FF;
}

.ccr-total {
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

/* BOTÓN */
.ccr-open-modal {
    margin-top: 12px;
    background: #0A84FF;
    border: 0;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
}

/* LISTA */
.ccr-review-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* CARD */
.ccr-review-item {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 12px;
    padding: 14px;
}

.ccr-review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.ccr-review-top strong {
    font-size: 13px;
}

.ccr-review-stars {
    color: #0A84FF;
    font-size: 12px;
}

.ccr-review-text {
    font-size: 13px;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
}

.ccr-review-date {
    font-size: 11px;
    color: rgba(255,255,255,.4);
    margin-top: 6px;
}

.ccr-no-reviews {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    padding: 20px 0;
}
.ccr-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
    backdrop-filter: blur(6px);
}

.ccr-modal-content {
    width: 100%;
    max-width: 520px;
    background: #050505;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,.6);
    color: #fff;
}

/* TITULO */
.ccr-modal-content h3 {
    font-size: 20px;
    margin-bottom: 18px;
    text-align: center;
}

/* CLOSE */
.ccr-close-modal {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
    color: rgba(255,255,255,.6);
}

.ccr-close-modal:hover {
    color: #fff;
}

/* STARS */
.ccr-rating-select {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.ccr-star {
    font-size: 34px;
    color: #333;
    cursor: pointer;
    transition: .15s;
}

.ccr-star.hovered,
.ccr-star.active {
    color: #0A84FF;
    transform: scale(1.1);
}

/* TAGS */
.ccr-tags-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: center;
}

.ccr-tags-select label {
    position: relative;
}

.ccr-tags-select input {
    display: none;
}

.ccr-tags-select span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #111;
    border: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
    cursor: pointer;
    transition: .2s;
    color: rgba(255,255,255,.8);
}

.ccr-tags-select input:checked + span {
    background: #0A84FF;
    border-color: #0A84FF;
    color: #fff;
}

/* INPUTS */
#ccr-review-form input[type="text"],
#ccr-review-form textarea {
    width: 100%;
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

#ccr-review-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* BOTÓN */
#ccr-review-form button {
    width: 100%;
    background: #0A84FF;
    border: 0;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

#ccr-review-form button:hover {
    background: #2491ff;
}

/* RESPUESTA */
#ccr-response {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    color: #7bbcff;
}

.ccr-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,132,255,.12);
    border: 1px solid rgba(10,132,255,.35);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    transition: .2s;
    width: fit-content;
}

.ccr-rating-badge:hover {
    background: rgba(10,132,255,.25);
    transform: translateY(-1px);
}

.ccr-badge-star {
    color: #0A84FF;
    font-size: 14px;
}

.ccr-badge-score {
    font-weight: 700;
}

.ccr-badge-count {
    opacity: .7;
    font-size: 12px;
}

.ccr-rating-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: .2s;
    margin-bottom: 15px;
}

.ccr-rating-bar:hover {
    border-color: rgba(10,132,255,.4);
}

.ccr-rating-left {
    display: flex;
    flex-direction: column;
}

.ccr-rating-title {
    font-size: 14px;
    font-weight: 700;
}

.ccr-rating-sub {
    font-size: 12px;
    opacity: .6;
}

.ccr-rating-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ccr-rating-score {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.ccr-rating-stars {
    color: #FFC107;
    font-size: 14px;
    letter-spacing: 1px;
}

/* MOBILE FULL WIDTH */
@media (max-width: 768px) {

    .ccr-rating-bar {
        width: 100%;
        border-radius: 10px;
        padding: 14px;
    }

    .ccr-rating-title {
        font-size: 15px;
    }

    .ccr-rating-score {
        font-size: 18px;
    }
}