@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}
.mt-5{
    margin-top: 30px;
}
.top-bar{
    background: #000;
    padding: 7px 0;
}
.top-bar .left-side{
    width: 50%;
}
.top-bar .left-side svg{
    color: #ffffff;
}
.top-bar .left-side p{
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
}
.top-bar .right-side{
    width: 50%;
    text-align: right;
}
.top-bar .right-side select{
    border: none;
    outline: none;
    background: #fff;
}
.navigation{
    width: 100%;
    padding: 10px 0;
}
.nav-border{
    border-bottom: 1px solid #ddd;
}
.navigation .logo{
    width: 20%;
    padding: 8px 0;
}
.navigation .logo img{
    width: 150px;
}
.navigation .menu{
    width: 60%;
}
.navigation .menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    text-align: center;
}
.navigation .menu ul li{
    display: inline-block;
}

.navigation .menu ul li a{
    display: inline-block;
    font-size: 16px;
    padding: 20px 15px;
    color: #303030;
    transition: .3s;
}
.navigation .menu ul li a:hover{
    color: #FF0049;
}
.navigation .icon-bar{
    width: 20%;
    display: flex;
    justify-content: end;
}
.navigation .icon-bar .item{
    margin: 6px 10px;
}
.navigation .icon-bar .item a{
    display: inline-block;
    padding: 10px;
}
.navigation .icon-bar .item svg{
    font-size: 25px;
    color: #383838;
}

.slider .slide {
    height: 80vh;
}

.slide {
    position: relative;
}
.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}
@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
   }
}
.slide .slide__img img {
    width: 100%;
    max-width: 100%;
    height: 80vh;
    opacity: 1 !important;
    object-fit: cover;
    animation-duration: 3s;
    transition: all 1s ease;
    
}
.slide .slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0);
}
.slide .slide__content--headings {
    text-align: left;
    margin-left: 120px;
    margin-top: 25vh;
}
.slide .slide__content--headings h2 {
    color:  #303030 !important;
    font-weight: 600;
    font-size: 35px !important;
    margin: 12px 0;
    text-transform: uppercase;
}
.slide .slide__content--headings .animated {
    transition: all .5s ease;
    
}
.slide .slide__content--headings p{
    font-size: 20px !important;
    color: #303030 !important;
}
.slide .slide__content--headings a{
    display: inline-block;
    font-size: 20px;
    text-align: center;
    padding: 20px 40px;
    background: #FF0049;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    margin-top: 30px;
}
.slide .slide__content--headings a:hover{
    text-decoration: none;
    background: #000;
}
.slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}
.slick-dotted .slick-slider {
    margin-bottom: 30px;
}
.slick-dots {
    position: absolute;
    bottom: 25px !important;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all .3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:before{
    display: none;
}

.heading{
    text-align: center;
    margin-top: 50px;
}
.heading span{
    font-size: 18px;
}
.heading h2{
    font-size: 35px;
    margin-bottom: 30px;
}
.product-section{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}
.product-section .content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;

}
.product-section .card{
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}
.product-section .card .card-body{
    text-align: center;
    padding: 15px;
}
.product-section .card .card-image{
    height: 300px;
}
.product-section .card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-section .card h2{
    font-size: 18px;
    margin-bottom: 10px;
}
.product-section .card h2 a:hover{
    color: #FF0049;
}
.product-section .card svg{
    color: #FFC617;
}
.product-section .card p{
    color: #FF0049;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.product-section .card .cart-btn svg{
    color: #fff;
}
.product-section .card .cart-btn{
    display: inline-block;
    background: #FF0049;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
    transition: .3s;
}
.product-section .card .cart-btn:hover{
    background: #000;
}

.ads-section{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}
.ads-section .image img{
    height: auto;
    width: 100%;
}
.featured-section{
    width: 100%;
    margin-top: 70px;
    margin-bottom: 20px;
}
.content{
    position: relative;
}
.featured-section .col-lg-4{
    margin-right: 20px;
}
.featured-section .col-lg-4:last-child{
    margin-right: 0;
}
.featured-section .image{
    height: 250px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
}
.featured-section .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.featured-section .content:hover img{
    transform: scale(1.5);
}
.featured-section .caption{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    
}
.featured-section .caption h3{
    padding: 10px 30px;
    color: #fff;
    text-align: center;
}

/* Footer all css */
footer{
    margin-top: 60px;
}
footer .content{
    padding-right: 35px;
}
footer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
footer ul li a{
    color: #b8b8b8;
    display: block;
    font-size: 14px;
    margin-top: 12px;
    display: block;
}
footer p{
    color: #b8b8b8;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
}
.bg-footer {
    background-color: #000000;
    padding: 50px 0 0;
}
footer h6 {
    position: relative;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

footer h6:after {
    content: '';
    width: 25px;
    border-bottom: 1px solid #FFF;
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    border-bottom: 1px solid #FF0049;
}

footer  a:hover {
    color: #FF0049;
}

.contact-info {
    color: #acacac;
    font-size: 14px;
}
footer .social-list li{
    display: inline-block;
    margin-right: 10px;
}
footer .social-list a {
    font-size: 15px;
    height: 40px;
    width: 40px;
    line-height: 34px;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    background: #FF0049;
    transition: all .3s;
}
footer .social-list a:hover{
    color: #000;
}
footer .social-list svg{
    font-size: 20px;
    padding: 10px;
}

footer .copyright-text{
    border-top: 1px solid #1f1f1f;
    margin-top: 30px;
}

footer .copyright-text p{
    text-align: center;
    padding: 20px;
}



/* Product View page all css */
.product-view {
    width: 100%;
    margin-top: 80px;
}
.product-view img{
    width: 100%;
    display: block;
}
.product-view .img-display{
    overflow: hidden;
}
.product-view .img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.img-showcase img{
    min-width: 100%;
}
.product-view .img-select{
    display: flex;
}
.product-view .img-item{
    margin: 0.3rem;
}
.product-view .img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.product-view .img-item:hover{
    opacity: 0.8;
}
.product-view .product-content{
    padding: 2rem 1rem;
}
.product-view .product-title{
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #12263a;
    margin: 1rem 0;
}
.product-view .product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #12263a;
}
.product-view .product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #256eff;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}
.product-view .product-link:hover{
    opacity: 0.9;
}
.product-view .product-rating{
    color: #ffc107;
}
.product-view .product-rating span{
    font-weight: 600;
    color: #252525;
}
.product-view .product-price{
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}
.product-view .product-price span{
    font-weight: 400;
    
}
.product-view .last-price span{
    color: #FF0049;
    text-decoration: line-through;
}
.product-view .new-price span{
    color: #FF0049;
}
.product-view .product-detail h2{
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
}
.product-view .product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8;
}
.product-view .product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}
.product-view .product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(https://fadzrinmadu.github.io/hosted-assets/product-detail-page-design-with-image-slider-html-css-and-javascript/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}
.product-view .product-detail ul li span{
    font-weight: 400;
}
.product-view .purchase-info{
    margin: 1.5rem 0;
}
.product-view .purchase-info input,
.purchase-info .btn{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 1rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}
.product-view .purchase-info input{
    width: 60px;
}
.product-view .purchase-info .btn{
    cursor: pointer;
    color: #fff;
}
.product-view .purchase-info .btn:first-of-type{
    background: #000;
}
.product-view .purchase-info .btn:last-of-type{
    background: #FF0049;
}
.product-view .purchase-info .btn:hover{
    opacity: 0.9;
}
.product-view .social-links{
    display: flex;
    align-items: center;
}
.product-view .social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}
.product-view .social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}

/* Login page all the css */
.login-section{
    margin-bottom: -60px;
}
.login-form .login-bg{
    background: #f8f8f8;
    padding-top: 70px;
    padding-bottom: 80px;
}
.login-form .content{
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #dddddd;
}
.login-form .field{
    position: relative;
    height: 45px;
    width: 100%;
    display: flex;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-top: 15px;
}
.login-form .field svg{
    color: #222;
    width: 30px;
    line-height: 45px;
    padding: 10px;
}
.login-form .field input{
    height: 100%;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #222;
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
}

.login-form .show{
    position: absolute;
    right: 13px;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    display: none;
    cursor: pointer;
    font-family: 'Montserrat',sans-serif;
}
.login-form .pass-key:valid ~ .show{
    display: block;
}
.login-form .pass{
    text-align: left;
    margin: 10px 0;
}
.login-form .pass a{
    color: #222;
    text-decoration: none;
    font-family: 'Poppins',sans-serif;
}
.login-form .pass:hover a{
    text-decoration: underline;
}
.login-form .field input[type="submit"]{
    background: #009500;
    border: 1px solid #009500;
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat',sans-serif;
    border-radius: 5px;
}
.login-form .field input[type="submit"]:hover{
    background: #018001;
}
.login-form .login{
    color: #222;
    margin: 20px 0;
    font-family: 'Poppins',sans-serif;
}
.login-form .links{
    display: flex;
    cursor: pointer;
    color: #fff;
    margin: 0 0 20px 0;
}
.login-form .facebook,.email{
    width: 100%;
    height: 45px;
    line-height: 45px;
    margin-left: 10px;
}
.login-form .facebook{
    margin-left: 0;
    background: #4267B2;
    border: 1px solid #3e61a8;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 30px;
}
.login-form .email{
    padding: 0 20px;
    background: #E34133;
    border: 1px solid #E34133;
    text-align: center;
    border-radius: 30px;
}
.login-form .facebook:hover{
    background: #3e61a8;
}
.login-form .email:hover{
    background: #d13c2e;
}
.login-form .links svg{
    font-size: 17px;
}
.login-form svg svg{
    margin-left: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
}
.login-form .signup{
    font-size: 15px;
    color: #222;
    font-family: 'Poppins',sans-serif;
}
.login-form .signup a{
    color: #3498db;
    text-decoration: none;
}
.login-form .signup a:hover{
    text-decoration: underline;
}
.category-section .featured-section .content{
    margin-top: 30px;
}





@media screen and (min-width: 992px){
    .product-view .card{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
    }
    .product-view .card-wrapper{
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .product-view .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-view .product-content{
        padding-top: 0;
    }
}


.toggle-bar{
    display: none;
}

@media screen and (max-width: 767px) {
    .toggle-bar{
        display: block;
    }
    .top-bar{
        display: none;
    }
    .navigation{
        padding: 0 10px;
        box-sizing: border-box;
        border-bottom: ;
    }
    .navigation .row{
        padding: 0;
        box-sizing: border-box;
    }
    .navigation .logo img{
        width: 120px;
    }
    .navigation .menu{
        position: absolute;
        width: 100%;
        background: #fff;
        z-index: 100;
        margin-top: 60px;
        border-top: 1px solid #eee;
        left: 0;
        display: none;
    }
    .navigation-bar-show{
        display: block;
    }
    .navigation .menu ul li{
        display: block;
    }
    .navigation .menu ul li a{
        display: block;
    }
    .navigation .icon-bar{
        display: none;
    }
    .navigation .row{
        display: flex;
    }
    .navigation .logo{
        width: 50%;
        padding: 12px 0;
    }
    .navigation .toggle-bar{
        width: 50%;
        text-align: right;
    }
    .navigation .toggle-bar svg{
        font-size: 25px;
        padding: 17px;
    }
    .slider .slide {
        height: 60vh;
    }
    .slide .slide__content--headings{
        margin-left: 15px;
        margin-top: 9vh;
    }
    .slide .slide__content--headings h2{
        font-size: 25px !important;
    }
    .slide .slide__content--headings p{
        font-size: 16px !important;
    }
    .slide .slide__content--headings a{
        padding: 15px 30px !important;
        font-size: 18px !important;
    }
    .heading h2{
        font-size: 30px;
    }
    .product-section{
        padding: 0 15px;
        box-sizing: border-box;
    }
    .product-section .content{
        display: block;
    }
    .product-section .content .card{
        margin-bottom: 20px;
    }
    .ads-section{
        padding: 0 15px;
        box-sizing: border-box;
    }
    .ads-section img{
        height: auto;
    }
    .featured-section{
        margin-top: 50px;
        padding: 15px;
        box-sizing: border-box;
    }
    .featured-section .row{
        display: block;
    }
    .col-lg-4{
        width: 100%;
    }
    .col-lg-3{
        width: 100%;
    }
    .featured-section .content{
        margin-bottom: 20px;
    }
    footer .row{
        display: block;
    }
    footer .content{
        padding: 15px;
    }

    /* Product view page responsive css */
    .img-showcase img{
        width: 100%;
    }
    .product-view .product-title{
        font-size: 25px;
    }
    .product-view .product-title::after{
        display: none;
    }
    .product-view .product-detail h2{
        font-size: 20px;
        margin-top: 30px;
    }
    .category-section .featured-section{
        margin-top: 0;
    }
    


}

