section.explore{
    padding-top: calc(130 * var(--rpx-50));
    padding-bottom: calc(150 * var(--rpx-50));
}


.explore .search-ctn{
    width: 100%;
    border-bottom: 2px solid #021b64;
    position: relative;
}

.explore .search-ctn input{
    font-size: calc(40 * var(--rpx));
    line-height: 1.5em;
    padding: calc(14 * var(--rpx)) 0;

    font-family: var(--serif-font);
    appearance: none;;
    display: block;
    width: 100%;
    font-weight: bold;
    border: none;
    outline: none;
}

.btn-search{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    width: calc(40em / 16);
    height: calc(40em / 16);
    background: url("../images/global/icon_search.svg") center/contain no-repeat;
    cursor: pointer;
    transition: .3s;
}

.btn-search:hover{
    transform: scale(1.1);
}

.search-categories{
    margin-top: calc(80 * var(--rpx-50));
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
    gap: calc(10 * var(--rpx-75));
}

.search-categories .cat-option{
    font-weight: lighter;
    line-height: calc(30em / 16);
    padding: calc(10em / 16) calc(30em / 16);
    cursor: pointer;
    background-color: #fafbfd;
    color: var(--theme-navy);
    border-radius: 2px;
}

/*.search-categories .cat-option:not(.active):hover{
    filter: brightness(.95);
}*/

.search-categories .cat-option.active{
    font-weight: bold;
    color: #fff;
    background-color: var(--theme-navy);
}

.brand-list{
    margin-top: calc(80 * var(--rpx-50));
}

.explore .btn-ctn{
    margin-top: calc(80 * var(--rpx-50));
    display: flex;
    justify-content: center;
}

.sublist{
    margin-top: calc(20em / 16);
}

.sublist .flex-item{
    padding: calc(18em / 16) calc(20em / 16);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    flex: 1 1 auto;
}

.sublist .flex-box{
    --column: 1;
    flex-wrap: balance;
}

.sublist .flex-box:has(.flex-item:nth-child(2)){
    --column: 2;
}

.sublist .flex-box:has(.flex-item:nth-child(3)){
    --column: 3;
}

.vertical .sublist.flex-box{
    --column: 1;
    --gap: 0;
}

.vertical .flex-item:not(:last-of-type){
    border-bottom: none;
}

.sublist .title{
    font-size: calc(20rem / 16);
    margin-bottom: calc(12 * var(--rpx));
    color: var(--theme-navy);
}
.sublist .desc{
    font-size: 1rem;
    line-height: 1.5em;
}

@media (max-width: 750px) {
    .search-categories .cat-option{
        padding: calc(6em / 16) calc(12em / 16);
        font-size: 0.875rem;
    }

    .brand-list{
        --column: 2;
        justify-content: flex-start;
    }
    .sublist .flex-item{
        padding-left: 0;
        padding-right: 0;
    }

    .btn-search{
        width: calc(32 * var(--rpx));
        height: calc(32 * var(--rpx));
    }
}
