.category-pills-wrapper {
    width: 100%;
    box-sizing: border-box;
}
.category-pills-wrapper.is-sticky {
    position: sticky;
    top: 0;
    z-index: 99;
}
.category-pills-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 5px;
}
.category-pills-scroll::-webkit-scrollbar {
    display: none;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333333;
    border-radius: 100px;
    padding: 8px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.category-pill:hover {
    background-color: #E8F5E9;
    border-color: #0F5132;
    color: #0F5132;
}
.category-pill.active {
    background-color: #0F5132;
    border-color: #0F5132;
    color: #ffffff;
}
