.product__details__tab__content ul {
    padding-left: 24px;
}

.filter-btn.active {
    background-color: var(--color-deep-walnut);
    color: #fff;
    border-color: #d40000;
}

.filter-btn {
    border: 1px solid #ddd;
    padding: 7px 23px;
    font-size: 14px;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* FILTER BUTTONS */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .filter-btn.active {
        font-size: 12px;
    }

    .filter-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 8px;
    }
    .filter-btn {
        flex: 0 0 48%;
        max-width: 48%;
        font-size: 12px;
        padding: 9px 8px;
    }
    .filter-btn:nth-child(-n + 2) {
        /* first two buttons (All, first orientation) */
        margin-bottom: 8px;
    }
    .filter-btn:nth-child(n + 3) {
        /* next two buttons (if they exist) */
        margin-bottom: 0;
    }
}

