/**
 * Green Planet Reviews Styles
 */

.gp-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gp-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.gp-reviews-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gp-google-icon {
    flex-shrink: 0;
}

.gp-reviews-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gp-rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
}

.gp-company-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
}

.gp-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gp-rating-number {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.gp-stars {
    color: #fbbc05;
    font-size: 16px;
    letter-spacing: 2px;
}

.gp-review-count {
    font-size: 12px;
    color: #666;
}

.gp-reviews-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gp-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.gp-btn:hover {
    opacity: 0.9;
}

.gp-btn-primary {
    background: #1a73e8;
    color: #fff;
}

.gp-btn-secondary {
    background: #34a853;
    color: #fff;
}

.gp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gp-review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s;
}

.gp-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gp-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.gp-reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a73e8;
}

.gp-google-small {
    flex-shrink: 0;
}

.gp-review-stars {
    color: #fbbc05;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.gp-review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Tablet responsive */
@media (max-width: 992px) {
    .gp-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gp-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gp-reviews-actions {
        width: 100%;
    }

    .gp-btn {
        flex: 1;
        justify-content: center;
    }

    .gp-reviews-grid {
        grid-template-columns: 1fr;
    }
}
