@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

li{
    list-style: none;
}

#main{
    position: relative;
}

/* header starts */

header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: #fff;
}

header .burger{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;

    position: absolute;
    top: 0;
    left: 0;
}

header .burger .inside{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header .burger .inside li{
    margin-top: 30px;
}

/* header ends */

/* main starts */
.rotate180{
    transform: rotate(270deg);
}

.button{
    padding: 10px 25px;
}

.black-btn{
    display: inline-block;
    transform: translateX(-10px);
}

/* Featured starts */
#featured .featured-box{
    position: relative;
    
}

#featured .featured-box .sale-btn{
    transform: rotate(270deg);
    position: absolute;
    top: 56px;
    left: -8px;
    z-index: 2;
}

.story .img-div{
    position: relative;
}

.story .img-div img{
    transform: translate(60px,-60px);
}

.story .img-div::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: orange;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/* Featured ends */

/* Product starts */
#products .product-box{
    position: relative;
}

#products .product-box .sale-btn{
    position: absolute;
    bottom: 4px;
    right: 11px;
}
/* Product ends */