.fpr-reviews-container {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fpr-reviews-header {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.fpr-reviews-header h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

.fpr-overall-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fpr-stars {
    font-size: 16px;
    letter-spacing: 2px;
}

.fpr-total-text {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
}

.fpr-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fpr-review-item {
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 15px;
}

.fpr-review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fpr-review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.fpr-reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: #2d3748;
}

.fpr-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #e53e3e; /* Amazon style red/orange or green */
    color: #28a745; 
    font-weight: 600;
}

.fpr-review-stars {
    font-size: 13px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.fpr-review-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 6px;
}

.fpr-review-date {
    font-size: 12px;
    color: #a0aec0;
}

/* Hide reviews after the 4th by default */
.fpr-reviews-list .fpr-review-item:nth-child(n+5) {
    display: none;
}

/* When the list has the show-all class, display them */
.fpr-reviews-list.fpr-show-all .fpr-review-item:nth-child(n+5) {
    display: block;
}

/* Load More Button Styling */
.fpr-load-more-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: transparent;
    color: #000;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

.fpr-load-more-btn:hover {
    background: #f7fafc;
}
