*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

header .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #646D68;
    color: white;
}
.top .en{
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight {
    border: 2px dashed green !important;
}

header .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    padding: 20px 15px;
    position: sticky;
    top: 20px;
    z-index: 88;
}
.nav .menu{
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 20px;
    font-size: 13px;
    flex: 1;
}
.logo{
    text-align: center;
}
.nav .menu-right{
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    font-weight: 400;
    font-size: 13px;
    justify-content: end;
}

/* hero Styles */
.hero{
    height: 100vh;
    position: relative;
}

#hero-bg {
    background: lightgray;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .side-box{
    position: absolute;
    width: 600px;
    height: 250px;
    background: white;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
}
.side-box .side-box-small{
    font-weight: bold;
    color: gray;
    font-size: 16px;
}
.side-box .side-box-big{
    font-weight: 400;
    color: #363636;
    font-size: 42px;
}
.side-box button{
    background: #646D68;
    color: #fff;
    padding: 20px;
    width: calc(100% - 300px);
    border: none;
}

.slide-content{
    overflow: hidden;
}
.categories{
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
    width: fit-content;
    animation: loop 15s linear infinite;
}
@keyframes loop {
    0%{
      transform: translateX(0);
    }
    100%{
      transform: translateX(-50%);
    }
}
.categories .category{
    position: relative;
    width: 300px;
    height: 300px;
    background: lightgray;
    transition: .3s ease-in-out;
}
.category .cat-sub{
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s ease-in-out;
}
.category:hover .cat-sub{
    background: #646D68;
    color: white;
}
.category:hover .cat-sub div:nth-child(2){
    background: #fff;
    color: #646D68;
}
.cat-sub div:nth-child(2){
    background: #646D68;
    padding: 2px 6px;
    color: white;
}

.label-wrapper{
    background: #E6D8CF;
    margin-top: 20px;
    overflow-x: hidden;
    padding: 18px;
    width: 100%;
}
.label-slide{
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    gap: 30px;
    width: fit-content;
    animation: loop1 15s linear infinite;
    font-size: 16px;
    text-wrap: none;
}
.label-slide div{
    font-weight: normal;
    word-wrap: none;
}
@keyframes loop1 {
    0%{
      transform: translateX(-50%);
    }
    100%{
      transform: translateX(0%);
    }
}


.look-book{
    margin-top: 80px;
    padding: 20px;
}
.look-header{
    text-align: center;
    width: 100%;
}
.look-sub{
    font-weight: bold;
    color: gray;
}
.look-title{
    font-weight: 400;
    font-size: 31px;
    width: 700px;
    margin: auto;
    margin-top: 12px;
}
.look-products{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.look-product{
    flex: 1;
    overflow-x: hidden;
    position: relative;
}
.prod-1{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    position: absolute;
    top: 300px;
    right: 100px;
    background: #fff;
    cursor: pointer;
}
.prod-2{
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    position: absolute;
    bottom: 300px;
    left: 100px;
    background: #fff;
    cursor: pointer;
}

.collection{
    margin-top: 80px;
    padding: 20px;
}
.collection-header{
    text-align: center;
}
.collection-sub{
    font-weight: bold;
    color: gray;
}
.collection-title{
    font-weight: 400;
    font-size: 31px;
    width: 700px;
    margin: auto;
    margin-top: 12px;
}

.collection-item-list{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.collection-list button{
    padding: 12px;
    width: 120px;
    background: gray;
    color: white;
    font-weight: 500;
    border: none;
    font-size: 18px;
}
.collection-item-list .collection-item{
    width: 300px;
    background: whitesmoke;
}
.collection-item .collection-img{
    width: 100%;
    background: lightgray;
    height: 300px;
}
.collection-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.collection-item .content-1{
    font-size: 18px;
    font-weight: normal;
}
.collection-item .content-2{
    display: flex;
    align-items: center;
    gap: 20px;
}
.collection-item button{
    width: 100%;
    padding: 20px;
    color: white;
    background: gray;
    border: none;
}

@media screen and (min-width: 200px) and (max-width: 700px) {
    header .top{
        font-size: 12px;
    }
    header .nav{
        
    }
    .nav .menu{
        display: none;
    }
    .logo{
        font-size: 32px;
        font-weight: bold;
    }
    .nav .menu-right .search{
        display: hidden;
    }

    .hero{
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }
    .hero .side-box{
        width: 100%;
        position: unset;
        height: auto;
    }
    .side-box .side-box-small{
        font-size: 14px;
    }
    .side-box .side-box-big{
        font-size: 30px;
    }
    .side-box button{
        width: 100%;
    }

    .label-wrapper{
        display: none;
    }
    .label-slide{
        font-size: 12px;
    }

    .look-title{
        font-size: 24px;
        line-height: 30px;
        width: 100%;
    }

    .collection-title{
        width: 100%;
        font-size: 24px;
    }
}