.cr-form form{
    .elementor-message{
        display: none;
    }
    .stars {
        display: flex;
        gap: 6px;
        font-size: 40px;
        cursor: pointer;
        user-select: none;
      }
      .star {
        color: #ccc;
        transition: color 0.15s ease;
      }
      .star.active {
        color: gold;
      }
}

.cr-box {
    max-width: 100%;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.cr-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 25px 0;
    font-family: Georgia, "Times New Roman", serif;
}

.cr-avg-section {
    text-align: center;
    margin-bottom: 30px;
}

.cr-avg {
    font-size: 48px;
    font-weight: 700;
    color: #1d2327;
    margin-bottom: 10px;
    line-height: 1;
}

.cr-avg-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: 28px;
    line-height: 1;
}

.cr-star-full {
    color: #ffc107;
}

.cr-star-partial {
    position: relative;
    display: inline-block;
    color: #e0e0e0;
}

.cr-star-partial::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: var(--partial);
    height: 100%;
    overflow: hidden;
    color: #ffc107;
    display: block;
}

.cr-star-empty {
    color: #e0e0e0;
}

.cr-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cr-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cr-star-label {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 50px;
}

.cr-star-icon {
    font-size: 18px;
    color: #ffc107;
    line-height: 1;
}

.cr-star-number {
    font-size: 16px;
    font-weight: 500;
    color: #1d2327;
}

.cr-bar {
    flex: 1;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.cr-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.cr-count {
    font-size: 16px;
    font-weight: 500;
    color: #1d2327;
    min-width: 30px;
    text-align: right;
}