.tool-review-section {
    background: var(--card-bg,#fff);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.review-stars {
    display: inline-flex;
    gap: 6px;
    cursor: pointer;
    margin-bottom: .5rem;
}

    .review-stars .star {
        font-size: 2rem;
        color: #ccc;
        transition: color .15s, transform .15s;
    }

        .review-stars .star:hover, .review-stars .star.active {
            color: #f59e0b;
            transform: scale(1.15);
        }

.review-stats {
    font-size: .9rem;
    color: #888;
    margin-top: .3rem;
}

.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 10px 24px;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
    transition: all .2s;
    margin-top: 1rem;
}

    .like-btn:hover {
        border-color: #ef4444;
        color: #ef4444;
    }

    .like-btn.liked {
        border-color: #ef4444;
        background: #fef2f2;
        color: #ef4444;
    }

    .like-btn .like-count {
        font-weight: 700;
    }

.review-thanks {
    color: #10b981;
    font-weight: 600;
    margin-top: .5rem;
    display: none;
}
