/* Horizontal Category Filter Styles */
.horizontal-category-filter {
    width: 100%;
    margin-bottom: 40px;
}

.category-filter-wrapper {
    position: relative;
    overflow: hidden;
}

.category-pills-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f5f5f5;
}

/* Custom scrollbar for webkit browsers */
.category-pills-container::-webkit-scrollbar {
    height: 6px;
}

.category-pills-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.category-pills-container::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.category-pills-container::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.category-pill {
    flex: 0 0 auto;
    padding: 10px 24px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.category-pill:hover {
    background-color: #e9ecef;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-pill.active {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.category-pill.active:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Desktop: Center the pills */
@media (min-width: 992px) {
    .category-pills-container {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .category-pills-container {
        justify-content: flex-start;
    }
    
    .category-pill {
        padding: 9px 20px;
        font-size: 14px;
    }
}

/* Mobile: Horizontal scrollable */
@media (max-width: 767px) {
    .horizontal-category-filter {
        margin-bottom: 30px;
    }
    
    .category-pills-container {
        justify-content: flex-start;
        padding: 6px 0;
        gap: 10px;
    }
    
    .category-pill {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .category-pill {
        padding: 7px 16px;
        font-size: 13px;
    }
}

/* Animation for active state */
@keyframes pillActivate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.category-pill.active {
    animation: pillActivate 0.3s ease;
}

/* Focus state for accessibility */
.category-pill:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.category-pill:focus:not(:focus-visible) {
    outline: none;
}
