/* Google Reviews Plugin Styles */

.google-reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.google-review-item {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-avatar {
    margin-right: 0.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.review-stars {
    margin-top: 0.25rem;
}

.review-stars .dashicons {
    color: #ffc107;
    font-size: 14px;
    margin-right: 2px;
}

.review-content {
    margin-top: 0.5rem;
}

.review-content p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.review-text-hidden {
    display: none;
}

.review-read-more-btn {
    display: block;
    margin-top: 0.5rem;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}

.review-read-more-btn:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .google-review-item {
        max-width: 100%;
        min-width: 100%;
    }
    
    .google-reviews-container {
        flex-direction: column;
    }
}

/* Business Stars */
#business-stars .dashicons {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

/* Hidden elements */
.d-none {
    display: none !important;
}

/* Map container */
#map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin: 1rem 0;
}
