.filter-wrapper{
    position: sticky;
    top: 80px;
    z-index: 900;
    display: flex;
    align-items: center;
    margin-top: 0.3rem;
    margin-bottom: 0.4rem;
    padding: 0.7rem 1.7rem;
    background: white;
    border-bottom: 1px solid #f1f1f1;
}

#filters{
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    align-items: center;
    width: 100%;
    gap: 0.11rem;
    padding: 0;
}

#filters::-webkit-scrollbar {
    display: none;
}

.filter {
    text-align: center;
    margin-right: 1rem;
    margin-top: 1rem;
    min-width: 90px;
    flex-shrink: 0;
    text-decoration: none;
    background: #f1f1f1;
    border-radius: 16px;
    padding: 0.7rem 0.6rem 1rem 0.6rem;
    color: #44546a;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.filter i {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.filter p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
    line-height: 1rem;
}

.filter:hover {
    cursor: pointer;
    transform: scale(1.04);
    background: #ececec;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    color: #111827;
}

.filter.active {
    background: white;
    border: 1.5px solid #fe424d;
    color: #111827;
}

.tax-info {
    display: none;
}

.tax-toggle {
    border: 1px solid #e8e8e8;
    border-radius: 1rem;
    height: 3.25rem;
    padding: 1rem;
    margin-left: 2rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: white;
}


.scroll-btn {
    position: absolute;
    z-index: 10;
    border: none;
    background: white;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    top: 45%;
    display: none;
}

.scroll-btn.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}