/* Fiverr profile, gigs and reviews (components/Fiverr*.tsx) */
.fiverr-section { position: relative; }

.fiverr-profile-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 127, 14, 0.25);
    margin-bottom: 2.5rem;
    text-align: center;
}

.fiverr-profile-bar .stat strong { font-size: 1.4rem; color: #fff; display: block; line-height: 1.1; }
.fiverr-profile-bar .stat span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.fiverr-stars { color: #ffb33e; letter-spacing: 1px; }

.btn-fiverr-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #ff7f0e;
    color: #ff7f0e;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-fiverr-outline:hover { background: rgba(255, 127, 14, 0.1); color: #ff7f0e; }

.review-grid { columns: 3 320px; column-gap: 1.25rem; }

.review-card {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    padding: 1.4rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card .review-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.review-card .review-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 127, 14, 0.15); color: #ff7f0e; display: flex; align-items: center; justify-content: center; font-weight: 800; text-transform: uppercase; flex-shrink: 0; }
.review-card .review-name { font-weight: 700; color: #fff; line-height: 1.2; }
.review-card .review-country { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.review-card .review-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; margin-bottom: 0.6rem; }
.review-card .review-date { color: rgba(255, 255, 255, 0.5); }
.review-card p { margin: 0; color: rgba(255, 255, 255, 0.85); }
.review-card .review-gig { margin-top: 0.75rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.review-card .repeat-badge { font-size: 0.72rem; padding: 0.15rem 0.5rem; border-radius: 999px; background: rgba(255, 127, 14, 0.15); color: #ff7f0e; font-weight: 700; }

.review-grid .review-card.is-hidden { display: none; }
.reviews-more { text-align: center; margin-top: 1rem; }
.reviews-more button { background: transparent; border: 2px solid #ff7f0e; color: #ff7f0e; padding: 0.7rem 1.6rem; border-radius: 12px; font-weight: 700; }
.reviews-more button:hover { background: rgba(255, 127, 14, 0.1); }
