.grw-widget {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    padding: 16px 20px;
    margin: 20px 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.grw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.grw-google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #5f6368;
}

.grw-rating-summary {
    display: flex;
    align-items: center;
    gap: 6px;
}

.grw-rating-number {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
}

.grw-stars {
    display: flex;
    gap: 1px;
}

.grw-star {
    width: 14px;
    height: 14px;
    fill: #dadce0;
}

.grw-star.filled {
    fill: #fbbc04;
}

.grw-total {
    font-size: 12px;
    color: #70757a;
}

.grw-reviews-slider {
    position: relative;
    overflow: hidden;
}

.grw-reviews-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: grab;
}

.grw-reviews-track:active {
    cursor: grabbing;
}

.grw-review-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.grw-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.grw-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.grw-reviewer-info {
    display: flex;
    flex-direction: column;
}

.grw-name {
    font-size: 13px;
    font-weight: 600;
    color: #202124;
}

.grw-date {
    font-size: 11px;
    color: #70757a;
}

.grw-review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.grw-review-stars .grw-star {
    width: 12px;
    height: 12px;
}

.grw-review-text {
    font-size: 13px;
    line-height: 1.5;
    color: #3c4043;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grw-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.grw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #dadce0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grw-dot.active {
    background: #1a73e8;
    width: 18px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .grw-widget {
        border-radius: 12px;
        padding: 14px 16px;
    }
    
    .grw-review-card {
        flex: 0 0 calc(100% - 20px);
    }
}
