/* Google Reviews Component Styles */
.google-reviews-section {
max-width: 1200px;
margin: 30px auto;
padding: 0 15px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
overflow: hidden;
}
 
.google-reviews-title__g { color: #4285F4; }
.google-reviews-title__o { color: #EA4335; }
.google-reviews-title__o2 { color: #FBBC05; }
.google-reviews-title__g2 { color: #34A853; }
.google-reviews-title__l { color: #4285F4; }
.google-reviews-title__e { color: #EA4335; }
 
.google-reviews-title {
font-size: 24px;
font-weight: 700;
color: #202124;
margin-bottom: 20px;
text-align: left;
}
 
.google-reviews-wrapper {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
gap: 20px;
padding-bottom: 15px;
scroll-behavior: smooth;
-ms-overflow-style: none;
scrollbar-width: none;
}
 
.google-reviews-wrapper::-webkit-scrollbar {
display: none;
}
 
.google-review-card {
background-color: #fff;
border: 1px solid #e0e0e0;
border-radius: 12px;
padding: 24px;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
/* Desktop: 3 Cards (100% - 40px gap / 3) */
flex: 0 0 calc((100% - 40px) / 3);
scroll-snap-align: start;
box-sizing: border-box;
text-align: left;
}
 
/* Tablet: 2 Cards */
@media (max-width: 992px) {
.google-review-card {
flex: 0 0 calc((100% - 20px) / 2);
}
}
 
/* Mobile: 1 Card */
@media (max-width: 768px) {
.google-review-card {
flex: 0 0 100%;
}
}
 
.gr-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.gr-user-info { display: flex; align-items: center; gap: 12px; }
.gr-avatar { width: 40px; height: 40px; background-color: #4285F4; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; }
.gr-name { display: block; font-size: 15px; color: #202124; line-height: 1.2; }
.gr-verified { color: #70757a; font-size: 13px; margin-top: 2px; }
.gr-logo { font-weight: bold; font-size: 20px; background: #f8f9fa; padding: 4px 10px; border-radius: 20px; }
.gr-stars { margin-bottom: 10px; color: #fbbc04; font-size: 18px; letter-spacing: 2px; }
.gr-text { color: #4d5156; font-size: 14px; line-height: 1.6; margin: 0; }