/* Product Reviews */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    margin-right: 5px;
    transition: color 0.3s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input[type="radio"]:checked ~ label {
    color: #ffc107;
}

/* Google Login Button */
.btn-google {
    background-color: white;
    color: #757575;
    border: 1px solid #ddd;
    padding: 8px 16px;
}

.btn-google:hover {
    background-color: #f8f9fa;
}

.btn-google img {
    margin-right: 8px;
}

/* Review Item */
.review-item {
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 1rem;
}

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

.review-meta .rating {
    margin-right: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reviewer-info img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.verified-badge {
    font-size: 0.7rem;
    padding: 2px 6px;
    margin-left: 5px;
    border-radius: 3px;
    background-color: #28a745;
    color: white;
}

/* Google badge */
.google-badge {
    margin: 20px 0;
    text-align: center;
}

.google-badge img {
    max-width: 150px;
}
