.crg-header {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.crg-average {
    font-weight: bold;
}
.crg-stars {
    color: #f5b50a;
    letter-spacing: 2px;
}
.crg-count {
    color: #666;
    font-size: 0.9em;
    margin-left: 10px;
}
.crg-pagination-info {
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #555;
}
.crg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.crg-review-item {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.crg-reviewer-name {
    font-size: 1.3em;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
}
.crg-stars {
    color: #f5b50a;
    margin-bottom: 8px;
    font-size: 1.1em;
}
.crg-review-title {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 8px;
}
.crg-review-text {
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
    font-size: 0.95em;
    color: #333;
}
.crg-read-more {
    color: #0073aa;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 5px;
    font-size: 0.9em;
}
.crg-helpful {
    border-top: 1px solid #eee;
    padding-top: 12px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.crg-helpful-label {
    color: #555;
    margin-right: 5px;
}
.crg-thumb {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95em;
    padding: 4px 12px;
    color: #444;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}
.crg-thumb:hover {
    background: #f5f5f5;
    border-color: #999;
}
.crg-thumb:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
}
.crg-loadmore {
    text-align: center;
    margin: 30px 0;
}
#crg-load-more {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}
#crg-load-more:hover {
    background: #005a87;
}
/* Responsive */
@media (max-width: 1024px) {
    .crg-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .crg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .crg-grid {
        grid-template-columns: 1fr;
    }
}