@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;700;800&family=Rubik:wght@300;400;500;600&display=swap'); 
:root{
    --primary-color:#ff6b6b;
    --secondary-color:#794afa;
    --secondary-dark-color:#453c5c;
    
    --white-color:#ffffff;
    --light-bg-color:#f2f3f5;
    --light-text-color:#7c899a;
    --border-color:#e5e8ec;
    --dark-color:#0a021c;

    --font-small:13px;
    --font-smaller:11px;

    --percent100:100%;
    --percent50:50%;

    --fw3:300;
    --fw5:500;
    --fw6:600;
    --fw7:700;
    --fw8:800;
   
    --trans-background-color:background-color .3s,color .3s;
    --trans-background:background-color .3s;
    --trans-color:color .3s


}
.darkmode{
    --light-text-color:var(--border-color);
    background: #252627;
}
*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    list-style: none;
}
*,::before,::after{
    box-sizing: border-box;
}
body{
    font-family: 'Rubik',sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-color);
    background-color: var(--white-color);
}
a{
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}
img{
    max-width: var(--percent100);
    vertical-align: middle;
}
strong{
    font-weight: var(--fw8);

}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
input::placeholder{
font: inherit;
}
h1,h2,h3,h4{
    font-family: 'Poppins';
}
h1{
    font-size: calc(1.3em+1vw);
    font-weight: var(--fw8);
    line-height: 1;
}
h2{
    font-size: 2.5em;
}
h3{
    font-size: 1.2em;
}
h4{
    font-size: 1em;
    font-weight: var(--fw6);
}
.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0.938em;
}
.column{
    margin-left: -0.938em;
    margin-right: -0.938em;
}
.column .row{
    padding: 0 0.938em;
}
.flexwrap{
    display: flex;
    flex-wrap: wrap;
}
.flexcenter{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flexitem{
    display: flex;
    align-items: center;
}
.flexcol{
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.main-links a:hover{
    color: var(--secondary-color);
}
.second-links a:hover{
    color: var(--light-text-color);
}
.icons-small .icon-large{
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    font-weight: normal;
}
.icons-small{
    font-size: 1.25rem;
    margin-left: auto;
}
.icon-large{
    font-size: 1.75rem;
    padding: 0 0.75rem 0 0;
}
/* header */
:where(.off-canvas,header) li>a{
    display: flex;
    position: relative;
    line-height: inherit;
    transition: var(--trans-color);
}
.header-top .wrapper{
    font-size: var(--font-small);
    justify-content: space-between;
    line-height: 42px;
}
.header-top .wrapper ul{
    gap: 2em;
}
.header-top li{
    position: relative;
}
.header-top ul ul{
    position: absolute;
    left: -1em;
    line-height: 2em;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    z-index: 1;
    display: none;

}
:where(.header-top,.thetop-nav) .right ul ul li a{
    padding: 0.25em 1em;
    
}
:where(.header-top,.thetop-nav) .right ul ul li.current a{
    background-color: var(--border-color);
}
.header-top li:hover ul{
    display: block;
}
/* headder-nav */
.header-nav{
    padding: 0.5em 0;
    margin-bottom: 1.5em;
    border-bottom: 1px solid var(--border-color);
    
}
.trigger{
    font-size: 1.5em;
    display: flex;
    padding: 0.25em;
    margin-right: 0.5em;
    z-index: 990;
}
.logo a{
    position: relative;
    font-family: "Poppins";
    font-size: 1.75em;
    font-weight: var(--fw8);
    display: flex;
    padding-left: 0.75em;
    margin-right: 2em;
   
}

.circle{
    position: absolute;
    top: -10px;
    left: -5px;
    width: 38px;
    height: 38px;
    z-index: -1;
    background-color: var(--light-bg-color);
    border-radius: var(--percent50);

}
.circle::before{
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: var(--percent50);
    bottom: 5px;
    right: 5px ;
    background-color:var(--secondary-color);
    opacity: 0.4;
}
.header-nav nav>ul{
    line-height: 100px;
    gap: 2em;
}
.theme-toggler{
    position: absolute;
    top: 4em;
    right: 1em;
    display: flex;
    gap: 2em;
    border: 2px solid var(--border-color);
    padding: .4em;
    border-radius: 2rem;
    cursor: pointer;
}
.theme-toggler i{
    display: flex;
    align-items:  center;
    justify-content: center;
    font-size: 2em;
    border-radius: var(--percent50);
    height: 1.5em;
    width: 1.5em;
}
.theme-toggler .active{
    background: var(--border-color);
}
.theme-toggler i:hover{
    color:var(--primary-color) ;
}
.fly-item{
    position: absolute;
    height: 16px;
    font-size: var(--font-smaller);
    padding: 3px;
    text-align: center;
    line-height: 10px;
    color: var(--white-color);
}
nav .fly-item{
    top: 50%;
    margin-top: -24px;
    width: 30px;
    border-radius: 3px;
    right: -32px;
    background: var(--primary-color);
    right: -32px;
    background-color: var(--primary-color);
}
.header-nav .right{
    position: relative;
    margin-left: auto;
}
.header-nav .right .icon-large{
    position: relative;
}
.header-nav .right .fly-item{
    top: 0;
    right: 16px;
    width: 16px;
    background-color: var(--secondary-dark-color);
    border-radius: var(--percent50);
}
.mega .flexcol{
    flex: 1;
    min-width: 180px;
    padding-right: 2.5em;
    margin-bottom: 1.5em;
    z-index: 1;
}

.mobile-hide{
    display: none;
}
.object-cover img{
    position: absolute;
    object-fit: cover;
    width: var(--percent100);
    height: var(--percent100);
    display: block;
}
.products .media{
    position: relative;
    flex-shrink: 0;
    
    overflow: hidden;
}
.primary-button ,.secondary-button ,.light-button{
font-size: var(--font-small);
padding: 0.9em 2em;
height: auto;
width: fit-content;
border-radius: 2em;
transition: var(--trans-background-color);
}
.primary-button{
    background-color: var(--primary-color);
    color: var(--white-color);

}
.primary-button:hover{
    background: var(--dark-color);
}
.secondary-button{
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
}
.secondary-button:hover{
    background-color: var(--light-bg-color);
    color: var(--secondary-dark-color);
}
.light-button{
    background-color: var(--secondary-dark-color);
}
.light-button:hover{
    background-color: var(--secondary-dark-color);
    color:var(--white-color)
}
.view-all{
    font: var(--font-small);
    display: flex;
    gap: 1em;
    transition: var(--trans-color);
}
.mini-text{
    font-size: var(--font-small);
    color: var(--light-text-color);
}
/* HEADER FOR DEPARTMENTS */
.header-main{
    background-color: var(--secondary-dark-color);
    padding: 1.5em 0;
    margin-bottom: 2em;
}
.dpt-cat{
    position: relative;
    width: 300px;
    padding: 0.75em 1.5em ;
    background-color: var(--primary-color);
border-radius: 7px 7px 0 0;
margin-bottom: -2.15em;
}
.dpt-cat .dpt-head .mini-text{

    color: var(--light-bg-color);

}
.dpt-menu>ul>li>a{
    font-size: var(--font-small);
    height: 48px;
    align-items: center;
}
.dpt-cat .dpt-trigger{
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.3em;
    height: 60px;
    width: 60px;
}
.dpt-menu .has-child:hover ul{
    display: block;
}

.dpt-menu .has-child:hover li a:hover{
    text-decoration: underline;
}
/* HEADER  */
/* SEARRCH FORM */
.header-main .right{

    flex: 1;
}
form{
    position: relative;
}
form.search input{
    line-height: 3.25em;
    padding: 0 7em 0 4.5em;
    outline: 0;
    border: 0;
    width: 100%;
    border-radius: 7px;
    font-size: 0.9em;
    font-weight: var(--fw3);
}
form.search :where(span,button){
    position: absolute;
    top: 0;
    padding: 0.55em 1.5em;
    font-size: 1em;
    color: var(--light-text-color);
    height: var(--percent100);
}
form.search button{
    right: 0;
    border: 0;
    outline: 0;
    font-size: 0.875em;
    font-weight: var(--fw6);
    color: var(--white-color);
    background-color: var(--primary-color);
    cursor: pointer;
    border-radius: 0 7px 7px 0;
    transition: var(--trans-background);
}
form.search button:hover{
    background-color: var(--dark-color);
}
.site-off{
    position: fixed;
    width: 320px;
    height: var(--percent100);
    background-color: var(--white-color);
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .4s,visibility .4s;
    will-change: transform,visibility;
}
.showmenu .site-off{
    transform: translateX(0);
    visibility: visible;
    transform: transform .4s 0s,visibility 0s 0s;
}
.off-canvas{
    width: var(--percent100);
    height: var(--percent100);
    padding: 1.5em;
    
}
.off-canvas .canvas-head{
    color: var(--white-color);
    justify-content: space-between;
    padding: 1.5em;
    margin: -1.5em -1.5em 1.5em;
    background-color: var(--secondary-dark-color);
    border-bottom-right-radius: 160px 25px;

}
.off-canvas .canvas-head .logo{
    z-index: 1000;
    position: relative;
}
.off-canvas .canvas-head .logo .circle{
    opacity: 0.75;
}
.t-close{
    font-size: 1.25em;
    width: 32px;
    height: 32px;
    border-radius: var(--percent50);
    background-color: var(--secondary-dark-color-color);
    color: var(--white-color);
    transition: var(--trans-background-color);

}
.t-close:hover{
    background-color: var(--white-color);
    color: var(--secondary-dark-color);
    opacity:.75;
}
.off-canvas .dpt-head{
    font-size: var(--font-small);
    padding: 1em;
    margin-bottom: 1em;
    text-align: center;
    background-color: var(--light-bg-color);
    border-radius: 7px 7px 0 0;
}
.off-canvas .has-child>:where(ul,.mega){
    font-size: var(--font-small);
    font-weight: var(--fw3);
    line-height: 28px;
    padding-left: 3em;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition:  max-height .3s cubic-bezier(0.215,0.610,0.355,1);
}
.off-canvas .thetop-nav ul,.off-canvas nav>ul{
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.25em;
    font-size: var(--font-small);
    line-height: 36px;
    margin: 1.25em 0;
    border-top: 1px solid var(--border-color);
}
.off-canvas nav .mega{
    padding: 0;
}
.off-canvas nav .mega .products{
    display: none;
    
}
.off-canvas .has-child .icons-small {
    padding: .5em;
    line-height: initial;
}
.off-canvas .dpt-menu .icon-small{
    
    transform: rotate(90deg);
    font-size: 1.5em;
}
.off-canvas .has-child{
    width: var(--percent100);
}
.off-canvas .thetop-nav .right>ul >:where(:nth-child(4),li:nth-child(5))>a{
display: none;
outline: 4px solid blue;
}
.off-canvas .thetop-nav .right ul ul{
    display: flex;
    flex-direction: row;
}
.off-canvas .expand>:where(ul,.mega){
    max-height: 200px;

}
.off-canvas .thetop-nav .right ul ul li a{
    padding: 0.5em;
    border: 1px solid var(--border-color);
    line-height: 16px;
    margin:  0 0.5em 0.5em 0;
}
/* SLIDER */

.slider .item{
    position: relative;
    height: 474px;
 
}
.slider .item::before{
    content: 'yocharle';
    position: absolute;
    top: 30%;
    width: 450px;
    height: 300px;
    background-color: var(--white-color);
    
    z-index: 1;
    filter: blur(4rem);
}
.slider .text-content{
    position: relative;
    height: var(--percent100);
    justify-content: flex-end;
    padding: 0 0 10% 10%;
    z-index: 1;
  
}
.slider h4{
    font-size: var(--font-small);
    width: fit-content;
    padding: 4px 10px;
    background-color: var(--dark-color);
    font-weight: var(--fw7);
    color: var(--white-color);
    border-radius: 4px;
}
.text-content :where(h2,h3) span:first-child{
    font-weight: var(--fw3);
   
    color: var(--light-text-color);
}
.text-content :where(h2,h3) span:last-child{
    color: var(--secondary-dark-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.swiper-pagination .swiper-pagination-bullet-active{
    background-color: var(--secondary-dark-color-color);
}
/* Brands */
.brands .wrapper{
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2em 0;
}
.brands .item img{
    opacity: .25;
    transition: opacity .2s;
}
.brands .item a:hover img{
    opacity: 1;
}
.sectop{
    justify-content: space-between;
    padding-bottom: 0.5em;
    margin-bottom: 2em;
    border-bottom: 1px solid var(--border-color);
}
.sectop h2{
    position: relative;
    font-size: 1.5em;
    font-weight: var(--fw7);
}
.sectop h2 span:not(.circle){
    padding: 0 0 0 2em;
}
.sectop h2 .circle{
    top: -5px;
}

.products .offer{
    text-align: center;
    margin-bottom: 1.5em;
}
.products .offer p{
    text-transform: uppercase;
    margin-bottom: 0.5em;
}
.products .offer ul{
    gap: 1em;
}
.products .offer ul li{
    position: relative;
    width: 34px;
    height: 34px;
    padding: .5em;
    line-height: initial;
    color: var(--secondary-dark-color);
    background-color: var(--light-bg-color);
    border-radius: 5px;
}
.products .offer ul li:not(:last-child)::before{
    content: ':';
    position: absolute;
    right: -0.6em;
    color: var(--light-text-color);
}
.products :where(.image,.thumbnail) img{
    transition: transform .3s;
}
.products :where(.image,.thumbnail):hover img{
    transform: scale(1.1);
}
.products .hoverable{
    position: absolute;
    top: 0;
    right:0 ;
}
.products .hoverable a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: .25em;
    margin:0.25em ;
    line-height: 1;
    border-radius: var(--percent50);
    background-color: var(--white-color);
    opacity: .5;
    transition: var(--trans-background-color) opacity .3s;
}
.products .item:hover .hoverable li a{
    opacity: 1;
}
.products.big .item{
    flex-direction: column;
    padding: 2.5em;
    border: 2px solid var(--secondary-dark-color);
    border-radius: 7px;
    max-width: 460px;
    margin: 0 auto;
}
.products .hoverable li a:hover{
    color: var(--white-color);
    background-color: var(--dark-color);
}

.products .hoverable li.active a:hover{
    background-color: var(--primary-color);
}

.products .hoverable li:not(.active){
    /* transform: translateX(100%); */
    transform: translateX(100%);
    opacity: 0;
    transition:  all .3s;
}
.products .item:hover .hoverable li{
    transform: translateX(0);
    opacity: 1;
}
.products .hoverable li:last-child{
    transition-delay: .1s;
}
.products .discount{
    top: auto;
    right: 0;
    left: auto;
    background-color: transparent;
    bottom: 0;
    z-index: 1;
    
}
.products .discount::before{
   background: var(--dark-color);

}
.products .discount span{
    position: relative;
    font-size:var(--font-smaller);
    font-weight: var(--fw5);
    color: var(--white-color);
}
.products .content{
    
    display: flex;
    flex-direction: column;
}
.products:where(.big,.main,.one) .content{
    gap: 1em;
    margin-top: 1.25em;
}
.products .rating{
    display: flex;
    align-items: center;
    gap: .5em;
}
.products .rating .stars{
    width: 80px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 18.26l-7.053 3.948 1.575-7.928L.587 8.792l8.027-.952L12 .5l3.386 7.34 8.027.952-5.935 5.488 1.575 7.928z' fill='rgba(241,196,14,1)'/%3E%3C/svg%3E");
    background-position-y: top;
    /* background-repeat: no-repeat; */
    background-repeat-y: no-repeat;
}
/* set width of stats */
.products .item:where(:nth-child(3),:nth-child(3)) .stars{
    width: 64px;
}
.products h3{
    font-family: 'Rubik';
    font-size: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.products h3 a:hover{
    text-decoration: underline;
}
.products .price .current{
    font-size: calc(1em +1vw);
    color: var(--primary-color);
    margin-right: .25em;
}
.products .price .normal{
    color: var(--light-text-color);
    text-decoration: line-through;

}
.products .stock .qty{
    display: flex;
    justify-content: space-between;
}
.products .stock .bar{
    height: 3px;
    margin-top: 1em;
    overflow: hidden;
    background-color: var(--border-color);
}
.products .stock .available{
    height: 3px;
    width: 21%;
    background-color: var(--secondary-color);
}
.products.mini .item{
    margin-bottom: 2em;
}
.products .item{
    display: flex;
    position: relative;
}
.products.mini .media{
    width: 130px;
    height: 160px;
    margin-right: 1.25em;

}
.products .mini .content{
    margin:0;
    gap: .75em;
}
.stock-danger{
    background: var(--primary-color);
}
.products:where(.min,.main) h3{
    font-weight: 400;;
}
.flexwrap .row{
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2em;
}
/* product */
.products.main .item{
    flex-direction: column;
    flex: 0 0 100%;
    padding: 0 0.938em;
    padding-bottom: 2em;
}
.products.main .media{
    height: 390px;
}
.products.main .footer{
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 1em 1em;
    border-radius: 7px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    will-change: opacity;
    transition: all .3s ease;
    background: linear-gradient(0deg, var(--light-bg-color) 0%,var(--white-color) 70%);
    
}
.products.main .item:hover .footer{
    opacity: 1;
    visibility: visible;
}
.products.main .footer ul{
    /* outline: 3px solid red; */
    list-style: disc;
    padding: 1.25em 0 0 1.25em;
    border-top: 1px solid var(--border-color);
    margin-top: 145px;
}
.products.main .item:hover .content>*:not(.footer){
    z-index: 3;
}

/* BANNERS */
.banners .item{
    position: relative;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
}
.banner .image{
    text-align: right;
}
.banner .get-gray{
    background-color: var(--border-color);
}
.banner :where(.text-content,.over-link){
    position: absolute;
    top: 0;
    left: 0;
    width: var(--percent100);
    height: var(--percent100);
}
.banner .text-content{
    padding: 1.5em 2.5em;
}
.banner h3{
    font-size: calc(1em +0.5vw);
    font-weight: var(--fw3);
}
.banner h3 span{
    font-size: 80%;
}
.banner .primary-button{
    z-index: 3;
}
.banners .product-categories .item{
    display: flex;
  
    padding: 1.5em;
}
.banners .product-categories .image{
    max-width: 150px;
}
.mini-links ul{
font-size: var(--font-small);
color: var(--light-text-color);
margin-top: 2em;

}
.banner .second-links{
    margin-top: 2em;
}
.mini-links li a:hover{
    text-decoration: underline;
}
.newsletter{
    padding: 2.5em 0;
    background-color: var(--dark-color);
    color: var(--white-color);
}
.newsletter h3{
    font-size: 1.5em;
    color: var(--border-color);
    margin: 0.5em 0 1.5em;
}
.newsletter p{
    font-weight: var(--fw3);
    color: var(--border-color);
    margin: 0.5em 0 1.5em;
}
.newsletter p strong{
    color: var(--primary-color);
}

.newsletter form{
    max-width: 500px;
    width: var(--percent100);
}

.widgets{
    padding: 3.5em 2.5em;
    background-color: var(--light-bg-color);
}
.footer-info{
    padding: 3.5em 0 5em;

}
.footer-info .wrapper .flexcol{
    align-items: center;
    gap: 0;
}
.footer-info ul li a{
    font-size: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg-color);
    border-radius: var(--percent50);
    margin: 0.35em;
    transition: var(--trans-background);
}
.footer-info ul li a:hover{
    background-color: var(--border-color);
    color: var(--primary-color);
    font-weight: var(--fw7);
}
.footer-info .logo a{
    margin: 0 0 1em .75em;
}
.footer-info .mini-text{
    margin-top: 2em;
    text-align:center;
}
.menu-bottom{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    z-index: 900;
    background-color: var(--white-color);
   
    box-shadow: 0 -2px 10px rgba(0, 0, 0 /10%);
}
.menu-bottom nav li{
    flex: 1;
}
.menu-bottom nav li a{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: .5em 0;
    color: var(--light-text-color);
    transition: var(--trans-color);
}
.menu-bottom nav li a:hover{
color: var(--dark-color);
}
.menu-bottom nav li a span{
    font-size: var(--font-smaller);
}
.menu-bottom nav li a i{
    font-size: 1.25em
}
.menu-bottom .fly-item{
    right: 50%;
    width: 16px;
    margin-right: -20px;
    border-radius: var(--percent50);
    background-color: var(--secondary-dark-color);
}
.search-bottom{
    position: fixed;
    background-color: var(--secondary-dark-color);
    bottom: 60px;
    width: var(--percent100);
    padding: 2.5em 0;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    will-change: visibility,opacity;

}
.showsearch .search-bottom{
    visibility: inherit;
    opacity: 1;
}
.search-bottom .t-close{
    position: absolute;
    top: -54px;
    right: 0;
    background: var(--secondary-dark-color);

}
.search-bottom .t-close:hover{
    background-color: var(--primary-color);
}
.overlay{
    position: fixed;
    width: var(--percent100);
    height:var(--percent100);
    top: 0;
    left: 0;
    z-index: -5;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    will-change: visibility,opacity;
}
.showmenu .overlay{
    opacity: 1;
    z-index: 900;
    visibility: inherit;
}


/* RESPONISVE */
@media screen and (min-width:481px){
    .products.main .item{
        flex: 0 0 50%;
    }
}
@media screen and (min-width:768px) {
    .products .price .current {
        font-size: 1.25em;
    }
    .products.mini,
    .banner .row,
    .widgets .row{
        flex:0 0 50%;
    }
    .products.main .item{
        flex: 0 0 33.33%;
    }
}


@media screen and (min-width:992px) {
    .container{
        padding: 0 2em;
    }
    .desktop-hide{
        display: none;
    }
    .mobile-hide{
        display: block;
    }
    .logo a{
        margin-right: 2em;
    }
    .header-nav .right li>a{
        margin-left: 1em;
    }
    /* mega */
    nav .mega{
        position: absolute;
        width: var(--percent100);
        height: auto;
        top: auto;
        left: 0;
        right: 0;
        padding: 2.5em;
        line-height: 2em;
        background-color: var(--light-bg-color);
        box-shadow: rgb(0 0 0 /20%) 0.30px 20px -30px;
        z-index: 100;
        display: none;
    }
    nav li.has-child:hover .mega{
        display: block;
    }
    nav .mega .wrapper{
        display:flex;

    }
    nav .mega h4{
        font-size: 0.8em;
        text-transform: uppercase;
    }
    nav .mega ul{
        font-size: var(--font-small);
    }
    nav .mega .women-brands{
        display: flex;
        flex-wrap: wrap;
        max-width: 180px;
    }
    nav .mega .women-brands li{
        min-width:80px;
    }
    nav .mega .view-all{
        margin-top: 1em;
    }
    nav .mega .products{
        flex :2;
        padding: 0;
        position: relative;

    }
    nav .mega .products .row{
        width: var(--percent100);

    }nav .mega .products .media{
       
        height: 400px;
    }
    nav .mega .products .text-content{
    
        line-height: initial;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5em;
        position: absolute;
        bottom:4em ;
        width: var(--percent100);
    }
    nav .mega .products .text-content h4{
        font-size: 2em;
        font-weight: var(--fw8);
        color: var(--secondary-dark-color);
    }
    .header-main .right{
        max-width: 600px;
        margin-left: auto;
    }
    /* Departments menu */
    .dpt-menu{
        position: absolute;
       top: var(--percent100);
       width: 300px;
       left: 0;
       background-color: var(--white-color);
       border: 1px solid var(--border-color);
       border-top: 0;
       border-bottom: 0;
       z-index: 10;
    }
    .dpt-menu>ul>li>a{
        font-weight: var(--fw5);
        padding: 0 1.5em;
        border-bottom: 1px solid var(--border-color);
    }
    .dpt-menu .has-child>ul,.dpt-menu .mega{
        position: absolute;
        top: 0;
        left: var(--percent100);
        width: var(--percent100);
        height: auto;
        min-height: var(--percent100);
        padding: 1.5em;
        font-size: var(--font-small);
        line-height: 2.5em;
        border: 1px solid var(--border-color);
        border-top: 0;
        display: none;
    }
    /* showing the firs nav */
    /* .dpt-menu .mega{
        display: block;
    } */
    .dpt-menu .beauty ul{
        background-image: url(assets/menu/menu_bg1.jpg);
    }
    .dpt-menu .electric ul{
        background-image: url(assets/menu/menu_bg2.jpg);
    }
    .dpt-menu .fashion ul{
        background-image: url(assets/menu/menu_bg3.jpg);
    }
    .dpt-menu .homekit .mega{
        background-image: url(assets/menu/menu_bg4.jpg);
    }
    .dpt-menu .has-child>:where(ul,.mega)::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg,rgba(225,225,225,1) 0%,rgba(225,225,225,0) 10%);
    }
    .dpt-menu .mega{
        width: auto;
        min-width: var(--percent100);
    
    }
    .dpt-menu .has-child:hover .mega{
     display: flex;

    }
    .slider> div> .wrapper{
        width: calc(100%-(300px+2em));
        width: clamp(40vw,630px,90vw);
        margin-left: auto;
    
    }
    /* products */
    .trending .products,
    .product-categories .row{
        
        flex: 0 0 33.33%;
    }
    .products.big .media{
        max-height: 373px;
    }
    .products.main .item,
    .widgets .row{
        flex: 0 0 25%;
    }
    .newsletter .box{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.trending .flexcenter li{
    background-color: red;
    animation: draw .5s   1 ;
}
@keyframes draw {
    from{
        background: red;
    }
}
