/**
 * Fake Reviews and Visitors Styles
 */

/* Fake Visitors */
.wc-cpp-fake-visitors {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 14px;
}

.wc-cpp-fake-visitors .visitors-icon {
    font-size: 20px;
}

.wc-cpp-fake-visitors .visitors-text {
    color: #856404;
}

.wc-cpp-fake-visitors .visitors-text strong {
    color: #e74c3c;
    font-size: 16px;
}

/* Fake Reviews */
.wc-cpp-fake-reviews {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.wc-cpp-fake-reviews h3 {
    margin: 0 0 25px 0;
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.wc-cpp-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wc-cpp-review-item {
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.wc-cpp-review-item .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.wc-cpp-review-item .reviewer-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.wc-cpp-review-item .review-date {
    color: #999;
    font-size: 14px;
}

.wc-cpp-review-item .review-rating {
    margin-bottom: 10px;
}

.wc-cpp-review-item .review-rating .star {
    font-size: 18px;
    color: #ffc107;
    margin-right: 2px;
}

.wc-cpp-review-item .review-rating .star.star-empty {
    color: #ddd;
}

.wc-cpp-review-item .review-rating .star.star-half {
    background: linear-gradient(90deg, #ffc107 50%, #ddd 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wc-cpp-review-item .review-content {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-cpp-fake-visitors {
        flex-direction: column;
        text-align: center;
    }
    
    .wc-cpp-review-item .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

