html {
    overflow-x: hidden;
}

h1 {
    font-size: calc(1.3rem + 1.1426571429vw);
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 36%;
    left: 0;
    right: 0;
}

h2 {
    text-align: center;
    color: #fff;
    position: absolute;
    bottom: 36%;
    left: 0;
    right: 0;
}

h3 {
    color: #9898d0;
    font-size: 24px;
    margin: 20px 0 40px;
    transition: all .3s;
}

h4,
h6 {
    color: #19196b;
    font-size: 19px;
    margin: 10px 0;
    transition: all .3s;
}

h5 {
    color: #9898d0;
    font-size: 14px;
    margin-bottom: 14px;
    transition: all .3s;
}

p {
    color: #765291;
    margin-bottom: 0;
}

.category-btn {
    padding: 10px 20px;
    background-color: #906aff;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
}

.category-btn:hover {
    background: #ff008c;
}

.flex-left {
    display: flex;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
    width: 40%;
}

.category {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px auto;
    overflow-x: auto;
    width: 100%;
}

@media (max-width: 990px) {
    .category {
        justify-content: flex-start;
    }
}

@media (max-width: 780px) {
    .category-list li {
        flex-direction: column;
        align-items: stretch !important;
        padding: 20px 0px !important;
    }

    .category-list span,
    h5 {
        font-size: 14px;
    }

    .category-list img {
        height: 46px !important;
        width: 46px !important;
    }

    h4 {
        font-size: 16px;
    }

    h6 {
        font-size: 16px;
        text-align: end;
    }

    .flex-column {
        flex-direction: row !important;
        flex-wrap: wrap;
        width: 100%;
    }

    .category-btn {
        text-align: center;
        padding: 8px 20px;
        font-size: 14px;
    }
}

.category::-webkit-scrollbar {
    display: none;
    height: 6px;
    width: 400px;
    border-radius: 20px;
}

.selected {
    background: #ff008c;
    color: #fff !important;
    box-shadow: 0px 6px 10px -6px #972cad;
    position: relative;
}

.category li {
    height: 48px;
    padding: 0 20px;
    text-align: center;
    line-height: 48px;
    color: #4b4aa0;
    font-size: 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

.category-list {
    border-radius: 10px;
    padding: 30px 10px;
    background: #fff;
    margin-top: 80px;
}

.category-list .price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.category-list li {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #cbcbfb;
    margin-bottom: 2px;
    margin: 0 auto;
}

.category-list img {
    height: 60px;
    width: 60px;
    background: linear-gradient(135deg, #8414c4, #ec7fea);
    border-radius: 10px;
    padding: 16px;
    margin-right: 20px;
}

.category-list span {
    color: #6464d8;
    line-height: 30px;
}