/* Review Card Styles (Matches reviews.blade.php) */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.reviewer-location,
.review-date {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

.review-rating {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    color: #ffc107;
    margin-bottom: 0;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
    white-space: nowrap;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .review-rating {
        align-items: flex-start;
        text-align: left;
    }
}