.google-reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    padding: 30px 0;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

.google-reviews-sidebar {
    flex: 0 0 280px;
    text-align: center;
    background: #fff;
}

.business-logo {
    height: 75px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.business-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.stars-overview {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.review-count {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-write-review {
    /* display: inline-block;
    background: #1a1a2e; */
    color: #fff;
    /* padding: 12px 24px; */
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-write-review:hover {
    /* background: #2a2a4e; */
    /* color: #fff; */
    text-decoration: none;
}

.review-slider-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
    margin-right: 12px;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #607d8b;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.google-icon {
    margin-left: auto;
    width: 20px;
    height: 20px;
}

.google-icon img {
    width: 100%;
    height: 100%;
}

.review-stars-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
}

.review-stars-row .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.verified-icon {
    font-size: 0.9rem;
    color: #4285f4;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0;
}

.read-more {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 10px;
    display: block;
}

.read-more:hover {
    color: #666;
    text-decoration: underline;
}

/* Slick Slider Customization */
.review-slider .slick-track {
    display: flex !important;
}

.review-slider .slick-slide {
    height: auto;
    display: flex;
}

.review-slider .slick-dots {
    display: none !important;
}

.review-slider .slick-arrow {
    opacity: 1 !important;
}

.review-slider .slick-next {
    margin-right: -20px;
}


/* Responsive */
@media (max-width: 768px) {
    .google-reviews-container {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 10px;
    }

    .google-reviews-sidebar {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .review-slider-wrapper {
        width: 100%;
    }

    /* Allow slick dots on mobile since JS enables them */
    .review-slider .slick-dots {
        display: block !important;
        bottom: -30px;
    }
}
