/* Boxes */



.box{

    width: 100%;

    background-color: var(--white);

    border: 1px solid var(--line);

    box-shadow: 0px 0px 38.065px -16.313px rgba(0, 0, 0, 0.10);

}



.box .top{

    padding: 21px 24px;

}



.box .img{

    position: relative;

    display: flex;

    display: -webkit-flex;

    align-items: center;

    justify-content: center;

    -webkit-justify-content: center;

    width: 100%;

    aspect-ratio: 1/1.24609;

    border: 1px solid var(--line);

    background: url(../../assets/img/prodsboxbg.svg) repeat top left;

    padding: 27px;

}



.box .img .brand{

    position: absolute;

    inset: 0 auto auto 0;

    width: 59.375%;

    aspect-ratio: 1/.28947;

    border: 1px solid var(--line2);

    background-color: var(--white);

}



.box .img .brand img{

    width: 100%;

    height: 100%;

    object-fit: contain;

    -o-object-fit: contain;

}



.box .img>img{

/*     width: fit-content; */
	contain-intrinsic-size: none;
}



.box .title{

    color: #3C3C3B;

    font-size: 17.401px;

    line-height: 21px;

    margin-top: 21px;

}



.box .sm{

    display: flex;

    display: -webkit-flex;

    align-items: center;

    grid-gap: 0;

    width: 100%;

    color: #AAADB6;

    font-size: 17.401px;

    font-weight: 700;

    line-height: 20.664px;

    letter-spacing: 0.026px;

    border-top: 1px solid var(--line);

    padding: 13px 25px;

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

}



.box .sm::after{

    content: url('data:image/svg+xml;utf8,<svg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.552734 0.555664L9.2532 5.45339L0.552734 10.3437V5.45339V0.555664Z" fill="rgb(236,28,36)"/></svg>');

    width: 0;

    overflow: hidden;

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

}



.box:hover .sm{

    color: var(--red);

    grid-gap: 1rem;

}



.box:hover .sm::after{

    width: 10px;

}



/* Boxes ! */



/* General */



.sectitle{

    position: relative;

    width: fit-content;

    border-bottom: 1px solid var(--line);

    padding-bottom: 20px;

}



.sectitle::after{

    content: '';

    position: absolute;

    inset: auto auto -1px 0;

    width: 28.75%;

    height: 3px;

    background-color: var(--red);

}



.sectitle::before{

    display: block;

    display: -webkit-block;

    margin-bottom: 10px;

}



/* General ! */



.featured-products{
    background: url(../../assets/img/brandsbg1.png) repeat top left,url(../../assets/img/brandsbg2.png) repeat top left,var(--white);
    background-blend-mode: hard-light,normal;
    padding: 8rem 0 3.33rem;

}



.featured-products .row{

    grid-gap: 20px 0;

}



.featured-products .owl-carousel .owl-nav{

    position: absolute;

    inset: auto 0 calc(100% + 2rem) auto;

    display: flex;

    display: -webkit-flex;

    align-items: center;

    grid-gap: 1rem;

}



.featured-products .owl-carousel .owl-nav>* svg path,

.featured-products .owl-carousel .owl-nav>* svg rect{

    transition: all .3s ease-in-out;

    -webkit-transition: all .3s ease-in-out;

    -moz-transition: all .3s ease-in-out;

    -o-transition: all .3s ease-in-out;

}



.featured-products .owl-carousel .owl-nav>*:hover svg path{

    fill: var(--white);

}



.featured-products .owl-carousel .owl-nav>*:first-child:hover svg rect{

    fill: var(--main);

}



.featured-products .owl-carousel .owl-nav>*:last-child:hover svg rect{

    fill: var(--black);

}



.other-products{
    background: url(../../assets/img/brandsbg1.png) repeat top left,url(../../assets/img/brandsbg2.png) repeat top left,var(--white);
    background-blend-mode: hard-light,normal;
    padding: 3.33rem 0 4rem;

}



.other-products .row{

    grid-gap: 1rem 0;

}



.other-products .row>*{

    display: flex;

    display: -webkit-flex;

    align-items: flex-end;

    padding: 0 10px;

}



.other-products .search{

    width: 380px;

    max-width: 100%;

    margin-bottom: 20px;

}



.search button{

    height: 42px;

}



.other-products .row>*:has(.pagination){

    margin-top: 25px;

}



@media(min-width:992px){

    .other-products .search{

        margin-left: auto;

    }

}



@media(max-width:992px){

    .featured-products,

    .other-products{

        padding: 2rem 0;

    }

    .featured-products .owl-carousel{

        display: flex;

        display: -webkit-flex;

        align-items: center;

        justify-content: center;

        -webkit-justify-content: center;

    }

    .featured-products .owl-carousel .owl-nav{

        inset: auto;

        width: 103%;

        justify-content: space-between;

        -webkit-justify-content: space-between;

    }

    .other-products .search{

        width: 100%;

    }

}