
/* base style */
body, html {
    height: calc(100% - 2em);
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    Height: 100%;
    background: #ECEBF5;
    font-family: helvetica;
}
a {
    text-decoration: none;
}





/* aside */
aside {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    overflow-Y: hidden;
    bottom: 0;
    padding: 1em 0;
    position: fixed;
    background: #4B477E;
    justify-content: space-around;
    align-items: center;
    width: 100% !important;
    height: 25px;
    border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    z-index: 100000;
        
}
aside img {
    cursor: pointer;
} 
aside embed {
    cursor: pointer;
}

.aside-icon {
    color: #ECEBF5;
    font-size: 1.5em;
}

nav {
    background: none;
    width: 0;
    flex-shrink: 1px;
    padding: 0;
    margin-right: 0;
    top: 0;

}
.navBar {
    margin-left: auto;
    display: flex;
    padding-left: 0;
    justify-content: right;
}
.cart-hide {
    display: none;
}
.active {
    position: absolute;
    display: block;
    background: transparent;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    margin-top: 4.5em;
    transition: opacity 5s ease-in;

}

.menu-box {
    height: 100vh;
    margin-top: -6em;
    transition: opacity .25s ease-in;
}

.menu-link {
    z-index: 10002;
}

ul {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 1.5em;
    z-index: 1000;
    transition: opacity 5s ease-in;
}

ul li {
    display: flex;
    margin-top: -1em;
    height: 15.5vh;
}
ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: .8em;
    display: block;
    padding: 3em 0 1em 1em;
    background: #3F4040;
    color: #F7F7F8;
    width: 100%;
    Text-align: left;
}
ul .signup li a {
    color: white;
    text-transform: none;
}
.nav-menu {
    display: flex;
}

/* Favourites */

.fav-box {
    position: absolute;
    background-color: #F7F7F8;
    width: 80vw;
    height: 100vh;
    right: 0;
    z-index: 1000000;
    opacity: 0;
    transform: scale(0);
    overflow-y: scroll;
    overflow-x: hidden;
}

.fav-box.activated {
    opacity: 1;
    transform: scale(1);
}

.fav-click {
    background-color: #3F4040;
    width: 100%;
    border: none;
    text-align: left;
    padding-left: 1em;
    text-transform: uppercase;
    font-size: .8em;
    color: #fff;
}

.fav-click-lg {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1em;
}

.fav-header {
    margin-top: 1em;
    padding-left: 1em;
    color: #4B477E;
}

.close-fav-icon {
    border: none;
    background-color: transparent;
}

.exit-fav {
    font-size: 2em;
}

.fav-note {
    text-align: center;
}

.fav-content {
    display: flex;
    flex-direction: column;
}

.empty-fav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30vh;
    color: #4B477E;
    opacity: 0.6;
}

.fav-content-box {
    position: absolute;
    margin-left: 1em;
    margin-bottom: 1em;
}

.fav-content-details {
    margin-left: 1em;
    margin-top: 7vh;
    color: rgb(221, 109, 109);
}

.fav-content-name {
    font-weight: bold;
    color: #4B477E;
}

/* cart */
.cart-box {
    position: absolute;
    background-color: #3F4040;
    width: 90vw;
    height: 50vh;
    bottom: 55px;
    z-index: 10000;
    right: 1vw;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    overflow-y: hidden;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity .25s ease-out;
}
.cart-box.activated {
    opacity: 1;
    transform: scale(1);
}
.cart-header {
    display: block;
    background-color: grey;
    padding-block: .01rem;
    
}

.cart-content .empty {
    position: absolute;
    text-align: center;
    margin-block: 25%;
    margin-left: 20%;
    opacity: .7;
}

.cart-icon .items-length-btn {
    position: absolute;
    background-color: red;
    border: 1px solid red;
    border: none;
    border-radius: 50px;
    margin-top: -30px;
    margin-bottom: 30vh;
    margin-left: 3vw;
    display: block;
}

.cart-icon .items-length-btn .hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
}

.cart-note {
    text-align: center;
}
.close-cart-icon {
    display: flex;
    height: 20px;
    width: 30px;
    float: right;
    margin-top: -40px;
    margin-right: 10px;
    background-color: #4B477E;
    border: 2px solid #4B477E;
    cursor: pointer;
}
.close-cart-icon i {
    color: #fff;
}

.cart-content-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    margin-right: 2rem;
    border-bottom: 2px solid #4B477E;
    padding-top: 2em;
    padding-bottom: 2em;
}

.image-box .cart-image{
    width: 100px;
    height: 100px;
}

.cart-content {
     display: block;
     overflow-y: scroll;
}

.cart-content-details {
    display: flex;
    flex-direction: column;
    margin-left: 2rem;
    gap: 1rem;
}

.cart-incr-decr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    padding-bottom: 2rem;
}

.cart-incr {
    background-color: #4B477E;
    border: none;
    color: #fff;
    width: 20px;
    margin-left: 10px;
    cursor: pointer;
}

.cart-decr {
    background-color: #4B477E;
    border: none;
    color: #fff;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}


.checkout {
    display: flex;
    bottom: 0;
    margin-bottom: 1em;
    margin-left: 7.5em;
    justify-content: center;
    background-color: #4B477E;
    color: #fff;
    border: none;
    padding: 1em 2em;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
}

.checkout.hidden {
    opacity: 0;
    transform: scale(0);
    display: none;
    visibility: hidden;
}

.checkout-title {
    margin-right: .3rem;
}

/* header */

.screen-sm-hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
}

main header {
        display: none;
        position: inherit;
        width: 100%;
        background-image: url('219 factory.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        height: 80vh;
        margin-top: -7em;
}
main header .name {
    width: 100%;
    padding-top: 7em;
    color: #F7F7F8;
    padding-left: 2rem;
    padding-bottom: 6em;
}
main header .name .hub {
    width: fit-content;
    font-size: 3em;
    font-weight: bold;
    color: #F7F7F8;
    font-family: snap itc;
}

/* explore */
.explore {
    color: #F7F7F8;
    background: #4B477E;
    padding: 1em;
    margin-left: 10%;
    justify-content: center;
    border-radius: 15px;
    border: none;
}

/* search */
.bar {
    width: 90%;
    margin-left: 5%;
    background: #F7F7F8;
    color: #000;
    border: none;
    padding: 1em;
    margin-top: -5em;
    opacity: 0;
    transform: scale(0);
}
.input {
    width: 0;
    height: 0;
    margin-left: -2em;

}
.bar.activated {
    position: absolute;
    margin-top: 2em;
    opacity: 1;
    transform: scale(1);
    transition: opacity .25s ease-in;
    z-index: 100;
}

/* Goback */
.goBack {
    padding: 1em;
    border: none;
    background-color: transparent;
}

.ri-arrow-left-line {
    font-size: 2em;
    cursor: pointer;
}

/* Page-product-info */

.product-page-tag {
    position: relative;
    top: 0;
    margin-left: 50%;
    padding-bottom: 1em;
}

.product-page-image-contain {
    width: 100vw;
}

.product-page-image {
    height: fit-content;
    width: fit-content;
    border-bottom-left-radius: 50px;
}

.like-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ECEBF5;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    margin-top: -30px;
    right: 0;
    margin-right: 30px;
}

.ri-heart-2-fill {
    font-size: 2em;
    color: #fff;
}

.favAdd {
    position: absolute;
}

.faveRemove {
    position: absolute;
    color: rgb(221, 109, 109);
    display: none;
}

.product-page-info {
    margin-top: 2em;
    margin-left: 1em;
}

.product-price-page {
    font-size: 2em;
    font-weight: bolder;
    color: rgb(221, 109, 109);
}

.product-name-star {
    margin-top: .5em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 1em;
}

.product-page-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #4B477E;
}

.product-page-star i{
    color: gold;
}

.product-page-color {
    margin-top: .5em;
}

.color-option {
    font-weight: bold;
}

.color-radio {
    margin-top: .5em;
}

.radio-color {
    height: 30px;
    width: 30px;
    border: 1px solid #ECEBF5;
}

#red-color {
    filter: hue-rotate(130deg);
}

#ash-color {
    filter: grayscale(1);
}

#navy-color {
    filter: grayscale(0) hue-rotate(45deg);
}

.product-page-descrip h4 {
    font-weight: bold;
    color: #4B477E;
}

/* .descrip-note {
    gap: ;
} */

.add-to-cart-prod {
    position: relative;
    padding: 1em;
    width: 50vw;
    background-color: #4B477E;
    color: #fff;
    font-size: 1.2em;
    margin-top: 1em;
    margin-left: 50vw;
    border: none;
    border-top-left-radius: 50px;
    cursor: pointer;
}




/* header */
header-2 {
    display: none;
}

header-2 .box {
    background: #000;
    color: #fff;
    padding: 1em;
    width: 40%;
    margin-top: -4em;
    margin-left: 45%;
    filter: opacity(0.7);
    box-shadow: 5px 5px 5px 5px #fff;
    border-radius: 5px;
}
header-2 .box h4 {
    filter: none;
}

/* featured */
.featured {
    display: none;
}

.featured h2 {
    text-align: center;
    color: #4B477E;
}
.featured h3 {
    margin-top: -0.3em;
}
    
.container {
    height: 380px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    background: gray;
    padding-top: 0.5em;
    border-radius: 5px;
}

.container a {
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    color: #fff;
}
.container h3 {
    color: #fff;
}
.container img {
    max-width: 100%;
    max-height: 512px;
    padding-top: 0.5em;
    padding-bottom: 0;
    padding: 1em;

}
.container img .casneak {
    padding-left: -1em;
}
.container a:hover {
    background: none;
    transform: translateY(-10px);
    background: #4B477E;
}

/* best buy */
.best-buy {
    display: none;
}

.best-buy h2 {
    text-align: center;
    color: #4B477E;
}
.container-2 {
    height: 410px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    background: none;
    padding-top: 0.5em;
    border-radius: 5px;
    margin-left: 2vw;
    margin-right: 2vw;
}
.container-2 .product {
    text-transform: uppercase;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    color: #4B477E;
    height: 250px;
    width: 250px;
}
.container-2 img {
    height: 100%;
    max-width: 100%;
    max-height: 512px;
    padding-top: 1em;
    padding-bottom: 0;
    padding: 1em;
    background: gray;
}
.container-2 .product:hover {
    background: none;
    transform: translateY(-10px);
    color: #fff;
    background: #4B477E;
    padding: 1em;
}
.product .on-hover {
    display: none;
    margin-top: -20em;
    z-index: 500;
}
.product .on-hover .add-to-cart {
    color: #4B477E;
    margin-bottom: 2em;
    padding: 1em;
    border: 5px solid gray;
    border-radius: 20px;
    background: none;
    cursor: pointer;
}
.product .on-hover .view {
    color: #fff;
    margin-bottom: 2em;
    padding: 1em;
    border: 5px solid #fff;
    border-radius: 20px;
    background: #4B477E;
    cursor: pointer;
}
.product:hover .on-hover {
    display: block;
}
.product:hover .on-hover .add-to-cart:hover {
    color: #4B477E;
    margin-bottom: 2em;
    padding: 1em;
    border: 5px solid gray;
    border-radius: 20px;
    background: #fff;
}
.product:hover .on-hover .view:hover {
    color: #fff;
    margin-bottom: 2em;
    padding: 1em;
    border: 5px solid #4B477E;
    border-radius: 20px;
    background: gray;
}



.container-3 {
    height: 410px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    background: none;
    padding-top: 0.5em;
    border-radius: 5px;
    margin-left: 2vw;
    margin-right: 2vw;
}
.container-3 .product {
    text-transform: uppercase;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    color: #4B477E;
    height: 250px;
    width: 250px;
}
.container-3 img {
    height: 100%;
    max-width: 100%;
    max-height: 512px;
    padding-top: 1em;
    padding-bottom: 0;
    padding: 1em;
    background: gray;
}
.container-3 .product:hover {
    background: none;
    transform: translateY(-10px);
    color: #fff;
    background: #4B477E;
    padding: 1em;
}


/* scroll bar styles */
::-webkit-scrollbar {
    width: .7rem
}

::-webkit-scrollbar-track {
    background-color: rgb(202, 202, 202);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(75, 71, 126, .7);
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(75, 71, 126);
}



/* footer */
.footer {
    background: gray;
    color: white;
    font-family: Helvetica;
    /* margin-top: ; */
    padding-top: 1.3em;
    text-align: left;
    width: 100%;
    margin-bottom: 40px;
}
.footer .app .logos {
    display: flex;
    flex-wrap: no-wrap;
    align-items: center;
    justify-content: space-around;
}

.footer-section {
    padding-left: 2rem;
    display: grid;
}

.footer .text-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: rgb(231, 231, 231);
}

.footer .text-list .text-links {
    width: 50rem;
}

.footer .text-list .text-links:hover {
    color: #fff;
    transform: rotateX(45deg);
}

.footer .logo {
    margin-block: 2rem;
    font-size: 3rem;
    font-family: snap itc;
}

.footer .logo .footwears {
    font-size: 1rem;
}


@media only screen and (min-width: 821px) {

    .fav-box {
        margin-top: -12vh;
    }



@media only screen and (min-width: 1024px) {

    

    /* aside {
        display:
    }

    .nav-menu {
        display: flex;
        color: #fff;
        z-index: 1000000;
    } */

    .screen-sm-hidden {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }

    a {
        color: #fff;
    }

    .menu-list {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        color: #4B477E;
        justify-content: center;
        align-items: center;
        margin-top: 2rem;
    }

    .menu-list a,
    .menu-list button {
        color: #4B477E;
    }

    .nav-2 {
        display: flex;
        flex-direction: row;
        align-content: center;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .screen-lg-hidden {
        display: none;
    }

    .cart-icon-2 {
        position: absolute;
        right: 0;
        margin-right: 2rem;
    }
    

    .ri-search-2-line {
        position: absolute;
        right: 0;
        margin-top: -1px;
        margin-right: 4rem;
        color: #4B477E;
        font-size: 1.5em;
        z-index: 10000;
    }

    .ri-account-pin-circle-line {
        position: absolute;
        right: 0;
        margin-top: -1px;
        margin-right: 6.5rem;
        color: #4B477E;
        font-size: 1.5em;
        z-index: 10001;
    }



    .cart-box {
        position: absolute;
        background-color: #3F4040;
        width: 25rem;
        top: 0;
        margin-top: 5.5em;
        height: 50vh;
        bottom: 55px;
        z-index: 10000;
        right: 1.5rem;
        color: #fff;
        opacity: 0;
        transform: scale(0);
        overflow-y: hidden;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
    }
    .cart-box.activated {
        opacity: 1;
        transform: scale(1);
    }

    .cart-icon-2 .items-length-btn {
        position: absolute;
        background-color: red;
        border: 1px solid red;
        border: none;
        border-radius: 50px;
        margin-top: -4vh;
        margin-bottom: 30vh;
        margin-left: 1vw;
        display: block;
    }

    .ri-shopping-cart-2-line {
        color: #4B477E;
    }
    
    .cart-icon-2 .items-length-btn .hidden {
        display: none;
        visibility: hidden;
        opacity: 0;
        transform: scale(0);
    }

    .bar.activated {
        position: absolute;
        top: 0;
        margin-top: 7em;
        opacity: 1;
        transform: scale(1);
    }

    .search-contain:before {
        content: "";
        border-radius: 50%;
        width: 14px;
        height: 15px;
        right: 0;
        margin-top: -.2px;
        margin-right: 4.25rem;
        border: 2px solid rgba(75, 71, 126, .7);
        position: absolute;
        animation: grow 1s 3;
    }

    @keyframes grow {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.5);
        }
    }
}

    .product-page-image-box {
        margin-left: 20vw;
    }

    .footer {
        margin-top: .02em;
    }
}