/* CC-02b Wave 2 - extracted from FRONTEND/07_vendors/vendor-reviews.html */
html.rbac-pending body { visibility: hidden; }
        html.rbac-pending::before {
            content: "Verifying access...";
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', system-ui, sans-serif;
            font-size: 1rem;
            color: #475569;
            background: #f8fafc;
            visibility: visible;
            z-index: 2147483647;
        }
    


    /* Custom Animations */

    @keyframes gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Gradient Text */
    .gradient-text {
        background: linear-gradient(135deg, #ff6b9d, #c084fc, #60a5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradient 4s ease infinite;
    }

    /* Astro Gradient */
    .gradient-astro {
        background: linear-gradient(135deg, #FFD700, #FFA500, #B87333);
    }

    /* Hero Background */
    .hero-gradient {
        background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(88, 28, 135, 0.8) 50%,
            rgba(15, 23, 42, 0.95) 100%);
    }

    /* Glass Card Effect */
    .glass-card {
        background: rgba(30, 41, 59, 0.8);
        backdrop-filter: blur(1rem);
        border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    }

    /* Modal Styles */

    /* Custom Scrollbar */

    /* Floating Elements */
    .floating-element {
        animation: float 6s ease-in-out infinite;
    }

    .floating-element:nth-child(2) { animation-delay: -2s; }
    .floating-element:nth-child(3) { animation-delay: -4s; }

    /* Heartbeat Animation */
    .heartbeat { animation: heartbeat 1.5s ease-in-out infinite; }

    /* Feature Card Hover */

    /* Button Shine Effect */
    .btn-shine {
        position: relative;
        overflow: hidden;
    }

    .btn-shine::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-shine:hover::before { left: 100%; }



.reviews-container {
    max-width: 62.5rem;
    margin: 0 auto;
}

.overall-rating {
    text-align: center;
    padding: 1.875rem;
    background: #F8F9FA;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.overall-rating .rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: #7F8C8D;
    font-size: 0.875rem;
}

.rating-bars {
    margin-top: 1.5rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.rating-bar-label {
    width: 3.75rem;
    font-size: 0.875rem;
    color: #7F8C8D;
}

.rating-bar-fill {
    flex: 1;
    height: 0.5rem;
    background: #E9ECEF;
    border-radius: 0.25rem;
    overflow: hidden;
}

.rating-bar-value {
    height: 100%;
    background: #FFD700;
    border-radius: 0.25rem;
    transition: width 0.3s ease;
}

.rating-bar-count {
    width: 1.875rem;
    text-align: right;
    font-size: 0.875rem;
    color: #7F8C8D;
}

.reviews-list {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.review-card {
    border: 0.0625rem solid #E9ECEF;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.reviewer-avatar {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: #E74C3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.reviewer-info h4 {
    margin: 0;
    color: #2C3E50;
}

.review-date {
    margin: 0.25rem 0 0;
    color: #7F8C8D;
    font-size: 0.8125rem;
}

.review-content p {
    margin: 0;
    color: #2C3E50;
    line-height: 1.6;
}

.review-service {
    margin-top: 0.75rem;
    color: #7F8C8D;
    font-size: 0.875rem;
}

.review-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 0.0625rem solid #E9ECEF;
}
