.categorySectionWrapp{
    width: 100%;
}

.categorySectionWrapp .sectionHead{
    margin-top: 30px;
}

.categorySectionWrapp .subCategories{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.categorySectionWrapp .subCategories .category{
    min-height: 70px;
    width: 194px;
    padding: 8px 12px 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    cursor: pointer;
    color: var(--text-primary);
    text-decoration: none;
}

.categorySectionWrapp .subCategories .category img{
    width: 30px;
    height: 30px;
}

.categorySectionWrapp .subCategories .category h2{
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.categorySectionWrapp .mainBanner{
    width: 100%;
    aspect-ratio: 4 / 1;
    height: 254px;
    border-radius: 12px;
    background: #D9D9D9;
    overflow: hidden;
    margin: 30px 0px;
}

.categorySectionWrapp .mainBanner img{
    height: 100%;
}

@media screen and (max-width:1280px) {
    .categorySectionWrapp .mainBanner{
        height: auto;
    }
}

.categorySectionWrapp .desktopOrdering{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-primary);
    padding-bottom: 1px;
    margin-bottom: calc(1px + 30px);
}

.categorySectionWrapp .desktopOrdering p.resultsCount{
    color: var(--text-secondary);
    font-size: 14px;
}

.categorySectionWrapp .desktopOrdering .options{
    display: flex;
}

.categorySectionWrapp .desktopOrdering .options .option{
    margin-top: 6px;
    position: relative;
    width: fit-content;
    cursor: pointer;
}

.categorySectionWrapp .desktopOrdering .options .option a{
    text-decoration: none;
    display: block;
    padding: 0px 12px;
    margin-bottom: 6px;
}

.categorySectionWrapp .desktopOrdering .options .option .lineBottom{
    background-color: var(--primary-color);
    height: 3px;
    position: absolute;
    bottom: calc(-3px);
    width: 100%;
    border-radius: 999px;
    opacity: 0;
}

.categorySectionWrapp .desktopOrdering .options .option.selected p{
    font-family: 'VolteSemibold', 'sans-serif';
}

.categorySectionWrapp .desktopOrdering .options .option.selected .lineBottom{
    opacity: 1;
}

.categorySectionWrapp .loadMoreSection{
    margin-top: 32px;
    border-top: 1px solid var(--border-primary);
    padding-top: 38px;
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 0.1fr 1fr 0.1fr;
}

.categorySectionWrapp .loadMoreSection .backTop{
    color: var(--text-primary);
    height: fit-content;
    width: fit-content;
    padding-bottom: 10px;
}

@media screen and (max-width:1280px) {
    .categorySectionWrapp .sectionHead{
        margin-top: 20px;
    }
    .categorySectionWrapp{
        padding: 0 16px;
    }
}

@media screen and (max-width:1000px) {
    .categorySectionWrapp .desktopOrdering{
        display: none;
    }
}

@media screen and (max-width:440px) {
    .categorySectionWrapp .subCategories{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .categorySectionWrapp .loadMoreSection .backTop{
        display: none;
    }

    .categorySectionWrapp .subCategories .category{
        width: 100%;
    }

    .categorySectionWrapp .subCategories .category h2{
        font-size: 13px;
    }
}