/* ==========================================================================
   REVIEWS PAGE STYLING - TenshoMusic Theme
   ========================================================================== */

.tm-reviews-hero {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tm-reviews-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tm-reviews-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.tm-reviews-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 480px) {
    .tm-reviews-stats {
        flex-direction: column;
        gap: 20px;
    }
}

.tm-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tm-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.tm-stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FILTER BAR --- */
.tm-reviews-filters {
    position: sticky;
    top: 80px;
    z-index: 100;
    margin-bottom: 60px;
}

.tm-filters-container {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tm-filter-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tm-filter-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.tm-filter-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.tm-filter-btn:hover {
    color: #fff;
}

.tm-filter-btn.active {
    background: #8b5cf6;
    color: #fff;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* --- REVIEWS GRID --- */
.tm-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tm-review-card-static {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease both;
}

.tm-review-card-static:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tm-review-card-static .tm-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tm-review-card-static .tm-review-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    overflow: hidden;
}

.tm-review-card-static .tm-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-review-card-static .tm-review-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.tm-review-card-static .tm-insta-link {
    font-size: 0.8rem;
    color: #8b5cf6;
}

.tm-review-card-static .tm-review-rating {
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.tm-review-card-static .tm-star {
    font-size: 14px;
    color: #f59e0b;
}

.tm-review-card-static .tm-review-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    flex-grow: 1;
}

.tm-review-card-static .tm-service-tag {
    margin-top: 20px;
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 5px 12px;
    border-radius: 12px;
}

/* --- LOAD MORE --- */
.tm-load-more-container {
    text-align: center;
    padding: 40px 0 100px;
}

.tm-btn-load-more {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tm-btn-load-more:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tm-reviews-hero {
        padding: 100px 0 60px;
    }

    .tm-reviews-hero h1 {
        font-size: 2.2rem;
    }

    .tm-reviews-filters {
        top: 70px;
        margin-bottom: 40px;
    }

    .tm-filters-container {
        border-radius: 24px;
        padding: 15px;
        width: 100%;
    }

    .tm-filter-label {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        font-size: 0.7rem;
    }

    .tm-filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .tm-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tm-review-card-static {
        padding: 24px;
    }

    .tm-stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .tm-filter-label {
        display: none;
        /* Save space on tiny fix */
    }

    .tm-reviews-hero h1 {
        font-size: 1.8rem;
    }
}