.cr-reviews-container {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    color: #111827;
}

/* Статистика */
.cr-stats {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cr-avg-rating {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}
.cr-stars-display {
    font-size: 24px;
    margin-bottom: 4px;
}
.cr-star-filled { color: #eab308; }
.cr-star-empty { color: #e5e7eb; }
.cr-total-reviews {
    color: #6b7280;
    font-size: 14px;
}

/* Форма */
.cr-review-form-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cr-review-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}
.cr-form-group {
    margin-bottom: 16px;
}
.cr-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}
.cr-form-group input[type="text"],
.cr-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    box-sizing: border-box;
    font-size: 15px;
}
.cr-form-group input[type="text"]:focus,
.cr-form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.cr-star-rating-input {
    font-size: 32px;
    color: #e5e7eb;
    cursor: pointer;
    user-select: none;
}
.cr-star-rating-input .cr-star {
    transition: color 0.2s;
}
.cr-star-rating-input:hover .cr-star {
    color: #e5e7eb;
}
.cr-star-rating-input .cr-star:hover,
.cr-star-rating-input .cr-star:hover ~ .cr-star {
    color: #fde047 !important;
}
.cr-star-rating-input .cr-star.active {
    color: #eab308;
}
.cr-submit-btn {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    font-size: 16px;
}
.cr-submit-btn:hover {
    background: #4338ca;
}
.cr-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}
.cr-success { color: #16a34a; margin-top: 12px; font-weight: 500; text-align: center; }
.cr-error { color: #dc2626; margin-top: 12px; font-weight: 500; text-align: center; }

/* Список отзывов */
.cr-reviews-list h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cr-review-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.cr-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.cr-review-author {
    font-weight: 700;
    font-size: 16px;
}
.cr-review-date {
    color: #6b7280;
    font-size: 14px;
}
.cr-review-stars {
    font-size: 18px;
    margin-bottom: 12px;
}
.cr-review-text {
    color: #374151;
    line-height: 1.6;
}
.cr-review-text p {
    margin: 0 0 10px 0;
}
.cr-review-text p:last-child {
    margin: 0;
}
.cr-no-reviews {
    color: #6b7280;
    text-align: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}
