*, html{margin: 0; padding: 0; box-sizing: border-box; border: none; outline: none;}
a{text-decoration: none; text-transform: uppercase;}
ul, ol{list-style: none;}
/* ******************************************* */
.container{
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    padding: 10px 100px;
    z-index: 100;
    background: transparent;
    display: flex;
}

.navbar a{
    float: left;
    font-size: 14px;
    font-weight: 900;
    padding: 12px;
    color: #fff;
}

.navbar .logo{flex: 1;}
.navbar-right a{transition: 0.5s;}
.navbar-right a.active{color: #a6ff00;}
.navbar-right a:hover{color: #ffb300; border-bottom: 1px solid #ffb300;}

.cart{position: relative;}
.cart i{font-size: 24px;}

.badge{
    position: absolute;
    top: 8px;
    right: 4px;
    font-size: 10px;

    width: 16px;
    height: 16px;
    background: #ff2222;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}
/* ******************************************* */
.slider{
    height: 400%;
    overflow: hidden;
    background: #efefef;
}

.row{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.fullheight{height: 100vh;}

.col-6{
    width: 50%;
    position: relative;
}

.product-info{
    width: 100%;
    padding: 0 10%;

    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #c0c0c0;
}

.info-wrapper{
    position: relative;
    margin: auto;
    text-align: right;
}

.product-name h2{font-weight: 900; font-size: xxx-large; color: #000;}
.product-price{font-weight: 900; font-size: xx-large; color: #666;}
.product-price span{font-size: large; color: #888;}
.product-size{margin: 20px 0;}

.size-wrapper{
    display: flex;
    flex-flow: row-reverse;
    padding: 5px;
}
.size-wrapper div{
    width: 50px;
    height: 50px;
    padding: 10px 0;
    margin: 5px;
    border-radius: 50%;
    border: 2px solid #ccc;
    font-weight: 800;
    color: #666;
    text-align: center;
}
.size-wrapper div.active{
    color: #ff8400;
    border: 2px solid #ff8400;
}
.size-wrapper div:hover{
    border: 2px double #000;
    color: #000;
    transition: 0.5s;
    cursor: pointer;
}

.color-wrapper{
    display: flex;
    flex-flow: row-reverse;
    padding: 5px;
}
.color-wrapper > div{
    width: 50px;
    height: 50px;
    padding: 1px;
    margin: 5px;
    border-radius: 50%;
    border: 4px solid #ccc;
    /* background: #000; */
}
.color-wrapper > div.active{
    border: 4px solid #ff8400;
}
.color-wrapper > div:hover{
    border: 4px solid #000;
    cursor: pointer;
}
.color-wrapper > div > div{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.color-wrapper.num1 > div:first-child{background: #f064a1;}
.color-wrapper.num1 > div:nth-child(2){background: #94eb6b;}
.color-wrapper.num1 > div:last-child{background: #000000;}


.color-wrapper.num2 > div:first-child{background: #b8d94b;}
.color-wrapper.num2 > div:nth-child(2){background: #56a5c9;}
.color-wrapper.num2 > div:last-child{background: #000000;}

.color-wrapper.num3 > div:first-child{background: #000000;}
.color-wrapper.num3 > div:nth-child(2){background: #9c6635;}
.color-wrapper.num3 > div:last-child{background: #fff;}

.color-wrapper.num4 > div:first-child{background: #acc6d8;}
.color-wrapper.num4 > div:nth-child(2){background: #000;}
.color-wrapper.num4 > div:last-child{background: #fff;}

.product-description{
    margin: 60px 0;
    text-align: right;
    font-weight: 600;
}

.button > button{
    padding: 14px 50px;
    border-radius: 30px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: x-large;
    transition: 0.5s;
}

.button > button:hover{
    cursor: pointer;
    background: #000;
    color: #fff;
}

.product-img{
    width: 100%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.img-wrapper img{
    width: 80%;
    height: auto;
    transform: rotate(-35deg);
}

.img-col{border-bottom-left-radius: 100%;}

.more-images{
    position: absolute;
    top: 50%; right: 80px;
}

.product-img{
    height: fit-content;
    border-radius: 15px;
    margin: 5px 0;
}

.more-images-item img{
    width: 80px;
    height: auto;
    border-radius: 15px;
    transition: 1s;
    margin-bottom: 8px;
}

.more-images-item:hover img{transform: scale(1.2);}
.more-images-item:hover{cursor: pointer;}

.slide-control{
    display: flex;
    padding: 15px;
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
}

.slide-control div{
    width: 50px;
    height: 50px;
    margin: 10px;
    transition: 0.5s;
}

.slide-control div:hover{
    cursor: pointer;
    transform: translateY(-20px);
    border-bottom: 2px solid #000;
}

.slide-control div img{
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transform: rotate(-45deg);
}

.slide-control div:hover img{filter: unset;}
.slide-control div.active img{filter: unset;}
.slide-control div.active{border-bottom: 2px solid #000;}

.modal{
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;

    overflow: auto;
    background: #000;
    z-index: 100;
}

.modal-img{
    /* border: 1px solid red; */
    display: block;
    width: 80%; height: 822px;
    max-width: 660px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.modal-content{
    width: 100%;
    animation: zoom 0.6s;
}

@keyframes zoom{
    from{transform: scale(0);}
    to{transform: scale(1);}
}

.close{
    position: absolute;
    top: 15px; right: 35px;
    color: #fff;
    font-size: 40px;
    transition: 0.3s;
}

.close:hover, .close:focus{
    color: #c0c0c0;
    text-decoration: none;
    cursor: pointer;
}

.bounce{
    animation-name: bounce;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}

@keyframes bounce{
    0%{transform: translateY(0);}
    50%{transform: translateY(-50px);}
    100%{transform: translateY(0);}
}