/**
 * Testimonial Category Filter Styles
 */

 .testimonial-filter-wrapper {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row;
    max-width: 1184px;
    margin: 0 auto;
    z-index: 99;
    position: relative;
}

.testimonial-filter-wrapper .choices {
    width: 100%;
    max-width: 400px;
}

.testimonial-filter-wrapper .choices__inner {
    height: 50px;
    background: #fff;
    border: 2px solid var(--blue);
    line-height: 28px;
}

.testimonial-filter-label {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: #333;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    background: none !important;
    left: unset !important;
}

.testimonial-category-filter {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-category-filter:hover {
    border-color: #999;
}

.testimonial-category-filter:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Testimonial List Filtering Transitions */
.testimonial-list {
    position: relative;
    padding-bottom: 60px;
}

.testimonial-list.filtering {
    opacity: 0.7;
    pointer-events: none;
}

.testimonial {
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    opacity: 1;
    transform: scale(1);
    max-height: 2000px;
}

.testimonial.testimonial-visible {
    opacity: 1;
    transform: scale(1);
    max-height: 2000px;
}

.testimonial.testimonial-hidden {
    opacity: 0;
    transform: scale(0.95);
    max-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

/* No Results Message */
.testimonial-list .no-results {
    padding: 40px 20px;
    text-align: center;
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.testimonial-filter-wrapper .choices[data-type*='select-one'] .choices__input {
    box-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-filter-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 30px auto 0;
    }
    
    .testimonial-category-filter {
        width: 100%;
        max-width: 100%;
    }


    .testimonial-list {
        padding-bottom: 30px;
    }
    
}

/* Dark Mode Support (if applicable) */
/* @media (prefers-color-scheme: dark) {
    .testimonial-filter-wrapper {
        background-color: #2d2d2d;
    }
    
    .testimonial-filter-label {
        color: #e0e0e0;
    }
    
    .testimonial-category-filter {
        background-color: #1a1a1a;
        color: #e0e0e0;
        border-color: #444;
    }
    
    .testimonial-category-filter:hover {
        border-color: #666;
    }
} */

