/* ========================================
   PRODUCT PAGE REVIEW WIDGET
   Google reviews section with stars and ratings
======================================== */

.product-page-review-widget {
    padding: 50px 0;
}

.review-widget-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-widget-card {
    background-color: white;
    border-radius: 16px;
    padding: 35px 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 600px;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-widget-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.google-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.star {
    font-size: 28px;
    color: #ddd;
    transition: color 0.3s ease;
}

.star.filled {
    color: #fbbf24;
}

.star.partial {
    background: linear-gradient(90deg, #fbbf24 80%, #ddd 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.rating-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1;
}

.review-count {
    font-size: 1rem;
    color: #666;
    font-family: 'Mona Sans', sans-serif;
    line-height: 1;
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
    .product-page-review-widget {
        padding: 45px 0;
    }
    
    .review-widget-card {
        padding: 30px 40px;
        gap: 35px;
        max-width: 550px;
    }
    
    .google-logo {
        width: 55px;
        height: 55px;
    }
    
    .google-logo img {
        width: 32px;
        height: 32px;
    }
    
    .star {
        font-size: 24px;
    }
    
    .rating-number {
        font-size: 1.3rem;
    }
    
    .review-count {
        font-size: 0.95rem;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .product-page-review-widget {
        padding: 40px 0;
    }
    
    .review-widget-card {
        padding: 30px 25px;
        gap: 20px;
        max-width: 420px;
        flex-direction: column;
        text-align: center;
    }
    
    .google-logo {
        width: 55px;
        height: 55px;
        margin-bottom: 5px;
    }
    
    .google-logo img {
        width: 32px;
        height: 32px;
    }
    
    .review-stars {
        gap: 18px;
        flex-direction: column;
        align-items: center;
    }
    
    .stars {
        margin-bottom: 8px;
    }
    
    .star {
        font-size: 26px;
        margin: 0 1px;
    }
    
    .rating-number {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    
    .review-count {
        font-size: 0.95rem;
    }
    
    .review-info {
        align-items: center;
        gap: 2px;
    }
}

/* Small Mobile Responsive Styles */
@media (max-width: 480px) {
    .product-page-review-widget {
        padding: 35px 0;
    }
    
    .review-widget-card {
        padding: 25px 20px;
        gap: 18px;
        max-width: 320px;
        margin: 0 20px;
    }
    
    .google-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 3px;
    }
    
    .google-logo img {
        width: 28px;
        height: 28px;
    }
    
    .review-stars {
        gap: 15px;
    }
    
    .stars {
        margin-bottom: 6px;
    }
    
    .star {
        font-size: 24px;
    }
    
    .rating-number {
        font-size: 1.2rem;
    }
    
    .review-count {
        font-size: 0.9rem;
    }
}