.testimonial-avatar-initial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.google-play-ratings-grid {
    margin-top: 50px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.app-rating-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.app-rating-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.app-rating-icon {
    flex-shrink: 0;
}

.app-rating-icon img {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.app-rating-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.app-rating-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111827;
    line-height: 1.3;
}

.app-rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FBBC04;
    font-size: 0.85rem;
}

.app-rating-score {
    color: #1f2937;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 5px;
}

.app-rating-count {
    color: #6b7280;
    font-size: 0.78rem;
}

.app-store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.store-btn:hover {
    opacity: 0.85;
}

.store-btn-gplay {
    background: #e8f5e9;
    color: #1b5e20;
}

.store-btn-apple {
    background: #f3f4f6;
    color: #111827;
}

@media (max-width: 640px) {
    .google-play-ratings-grid {
        grid-template-columns: 1fr;
    }
}
