*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
}
body{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: black;
}

.navbar{
    margin-top: 100px;
}
header{
    width:100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:fixed;
    z-index: 99;
    box-shadow: 5px 5px 5px 5px #000;
    background: rgb(0, 0, 0);
    top: 0;
    left: 0;
}
#chk1{
    display: none;
}
i{
    color: #000000;
    cursor: pointer;
}
.logo{
    flex: 1;
    color:#fff;
    color: #ffffff;
    font: normal 30px 'Cookie', cursive;
    margin-left: 50px;
    margin-bottom: 5px;
}
header .logo h3 span {
    color: rgb(218, 35, 35);
    margin-bottom: 30px;
}

.search-box{
    flex: 1;
    position: relative;
    margin-bottom: 3px;
    margin-right: 250px;
}
.search-box input{
    width:100%;
    height: 40px;
    border: none;
    outline: none;
    background:#f2f2f2;
    border-radius: 30px;
    color:rgb(0, 0, 0);
    font-size: 16px;
    padding-left: 5px;
    padding-right: 40px;
    text-align: center;
}
 
.search-box button{
    cursor: pointer;
    width:40px;
    height: 40px;
    border-radius: 30px;
    border:none;
    position: absolute;
    top:0;
    right: 5px;
    transform: scale(0.9);
    background: rgb(218, 35, 35);
    color: #fff;
    
}
header ul {
    flex:2;
    display: flex;
    justify-content: space-evenly;
}
header ul li{
    list-style: none;
    margin-top: 50px;
}
header ul li a{
    text-decoration: none;
    color:#fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
}
.nav_items:hover{
    border-bottom: 2px solid rgb(218, 35, 35);
    border-top:  2px solid rgb(218, 35, 35);
}
@media(max-width:1000px){
    .search-box button{
        position: absolute;
    }
    header ul{
        position: fixed;
        top:100px;
        right: -100%;
        background: rgba(0,0,0,0.5);
        height: calc(100vh - 100px);
        width:50%;
        flex-direction: column;
        align-items: center;
        transition: right 0.5s linear;
    }
     
    header .menu{
        display: block;
        width:100px;
        text-align: right;
    }
    #search symbol:checked ~ ul{
        right: 0;
        
    }
  
}
.cart{
    position: relative;
    top:-17px; 
}
#cart_amount{
    padding-bottom: 10px;
}
::-webkit-scrollbar{
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track{
    box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb{
    background: rgb(218, 35, 35);
    border-radius: 10px;
}

/* shop style */

.shop{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.shop .shop_item{
    width: 20%;
    margin: 20px;
    padding: 10px;
}

.shop .shop_item img{
    width:100%;
    height: 256px;
    filter: grayscale(100%);
    border-radius: 20px;
}
.shop .shop_item img:hover{
    width:100%;
    height: 256px;
    filter: grayscale(0%);
    box-shadow: 0px 0px 20px  rgb(218, 35, 35);
    transform: scale(1.1);
    
}


.shop .product_info{
    padding: 5px;
    color: white;
}

.shop .product_info h5{
    font-size: 25px;
    padding: 5px;
}

.shop .product_info .price{
     font-size: 18px;
     padding: 3px;
     color: white;
}
.shop .product_info .price span{
     color:  white;
}

.shop .product_info button{
      width: 100%;
      padding: 10px;
      font-size: 18px;
      background:rgb(218, 35, 35);
      color: black;
      border-radius: 50px;
      margin-top: 15px;
      cursor: pointer;
      transition: .5s ease-in-out;
}
.shop .product_info button:hover{
    border: 1px solid;
    background: transparent;
    color: rgb(218, 35, 35);
}



/* cart page  */

.cart_page{
    padding: 20px 50px;
    color: #fff;

}
.cart_item{
     display: flex;
     justify-content: space-around;
     margin: 20px 0;
     box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
     align-items: center;
     padding: 20px;
}

.cart_item .buttons{
    display: flex;
}

.cart_item .buttons .quantity{
    padding: 0 20px;
    border: 1px solid #111;
    height: 50px;
    margin-top: 15px;
    line-height: 50px;
    font-size: 32px;
}

.cart_item .buttons button{
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    background: #111;
    font-size: 30px;
    color: rgba(255, 0, 0, 0.794);
    margin: 10px;
    transition: .4s ease-in;
    cursor: pointer;
}

.cart_item .buttons button:hover{
    background: transparent;
    border: 1px solid;
    color: white;
}

.cart_item .rmv_btn{
    padding: 15px 20px;
    font-size: 20px;
    background-color:rgb(218, 35, 35);
    color: black;
    cursor: pointer;
    border-radius: 30px;
    transition: .5s ease-in;
}

.cart_item .rmv_btn:hover{
    border: 1px solid #111;
    color: rgb(218, 35, 35);
    background: transparent;
}



/* checkout_area */

.checkout_area {
    text-align: center;
    color: #fff;
}

.checkout_area button{
    padding: 15px 20px;
    cursor: pointer;
    width: 50%;
    margin: 20px auto;
    font-size: 18px;
    background-color: rgb(218, 35, 35);
    color: black;
    border-radius: 30px;
    transition: .5s ease-in;
}

.checkout_area button:hover{
    border: 1px solid #111;
    color: rgb(218, 35, 35);
    background: transparent;
}
.checkout_area{
    text-decoration: none;
}
/*==footer==*/
footer {
    position: fixed;
    bottom: 0;
   
}

@media (max-height:800px) {
    footer {
        position: static;
    }
    header {
        padding-top: 40px;
    }
}

.footer-distributed {
    background-color: #000000;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 30%;
}

.footer-distributed h3 {
    color: rgba(255, 255, 255, 0.673);
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}


.footer-distributed h3 span {
    color:rgb(218, 35, 35);
}

/* Footer links */

.footer-distributed .footer-links {
    color: rgba(255, 255, 255, 0.673);
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #8f9296;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    background-color: #33383b;
    color: rgba(255, 255, 255, 0.673);
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: rgba(255, 255, 255, 0.673);
    vertical-align: middle;
    margin: 0;
}
.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}
.footer-distributed .footer-center p a {
    color:rgb(218, 35, 35);
    text-decoration: none;
    ;
}
/* Footer Right */
.footer-distributed .footer-right {
    width: 30%;
}
.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}
.footer-distributed .footer-company-about span {
    display: block;
    color: rgba(255, 255, 255, 0.673);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-distributed .footer-icons {
    margin-top: 25px;
}
.footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #646769;
    border-radius: 2px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
}
.footer-distributed .footer-icons a:hover {
    background-color: rgb(218, 35, 35);
}
.footer-links a:hover {
    color: rgb(218, 35, 35);
}
@media (max-width: 1000px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
}
