body {
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    /* background-color: black; */
    color: black;
}



/* Navbar start */
nav {
    height: 75px;
    width: 100%;
    background-color: black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.logo img {
    width: 100px;
    padding-top: 10px;
}

.navbar_categories {
    display: flex;
    color: white;
    font-weight: bold;
    padding-top: 25px;
}

.navbar_categories * {
    margin-right: 8px;
    color: #F5F5F5;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
}

.navbar_categories span {
    color: white;
    font-weight: bold;
}

.line {
    height: 25px;
    width: 2px;
    background-color: #EA2127;
    margin-top: -2px;
}

.navbar_categories i {
    font-size: 12px;
}

.navbar_search {
    margin-top: 15px;
}

.navbar_search input {
    width: 250px;
    padding: 7px;
    border-radius: 20px;
    border: 1px solid white;
    background-color: black;
    color: white;
    outline: none;
    font-size: 15px;
    padding-left: 10px;
}

.navbar_search_btn {
    position: absolute;
    top: 10;
    background: transparent;
    color: #666;
    height: 25px;
    line-height: 2;
    right: 8%;
    font-size: 15px;
    border: none;
    outline: none;
    cursor: pointer;
}

.navbar_options {
    color: black;
}

.navbar_options {
    margin-left: 160px;
    margin-top: 5px;
}

.navbar_options img{
    height: 20px;
    margin-right: 10px;
}

.display_shop_categories {
    display: none;
    margin-top: 50px;
    margin-left: -31.2%;
    position: absolute;
    background-color: #1E1E1E;
    transition: 0.5s;
    width: 100%;
    z-index: 99999;
}

.display_shop_categories img {
    width: 295px;
    margin-top: 20px;
    margin-left: 50px;
    transition: 0.5s;
}

.shop {
    cursor: pointer;
    transition: 0.5s;
}

.shop:hover + .display_shop_categories {
    display: block;
    width: 100%;
    background-color: #1E1E1E;
    transition: 0.5s;
}

.display_shop_categories:hover {
    display: block;
    cursor: pointer;
    width: 100%;
    transition: 0.5s;
}

.more_options {
    margin-top: 50px;
    flex-direction: column;
    position: absolute;
    display: none;
    line-height: 35px;
    background: #1E1E1E;
    padding: 10px 15px;
    margin-left: 300px;
}

.more_options a:hover {
    color: red;
}

.more:hover + .more_options{
    display: flex;
    flex-direction: column;
}

.more_options:hover {
    display: flex;
}
/* ------- Navbar end -------- */
/* ------- Navbar end -------- */
.body {
    background-color: white;
}

.body h1{
    text-align: center;
    margin-top: 40px;
}

.body_content {
    padding-left: 70px;
}

.display {
    margin-top: 40px;
    /* display: flex; */
    margin-bottom: 200px;
}

.coupon_text {
    font-weight: bold;
    color: green;
}

.cart_heading {
    display: flex;
    font-size: 16px;
    font-weight: bold;
    margin-top: 40px;
}

.product_heading {
    margin-right: 800px;
}

.price_heading {
    margin-right: 30px;
}

.quantity_heading {
    margin-right: 120px;
}

.prod_line {
    width: 92%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}



.cart_product_display {
    display: flex;
    margin-top: 50px;
    margin-bottom: 80px;
}

.display img {
    height: 100px;
    object-fit: cover;
}

.cart_product_display .remove_item {
    padding-top: 30px;
    margin-right: 40px;
    cursor: pointer;
    height: fit-content;
}

.name_color {
    display: flex;
    flex-direction: column;
    margin-left: 40px;
}

.prod_color {
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.prod_price {
    margin-left: 500px;
}

.change_quantity {
    display: flex;
    margin-left: 30px;
}

.decrease, .number, .increase {
    height: 38px;
    width: 38px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 16px;
    margin-right: 2px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decrease, .increase {
    font-size: 22px;
}

.decrease:hover, .increase:hover {
    border: 1px solid black;
    
}

.number {
    height: 36px;
    width: 36px;
}

.total_cost {
    margin-top: 15px;
    margin-left: 50px;
}

.total_bill {
    position: absolute;
    right: 0;
    margin-right: 110px;
    margin-top: 30px;
    font-size: 30px;
    font-weight: bold;
}

.checkout {
    position: absolute;
    right: 0;
    margin-top: 80px;
    margin-right: 110px;
    padding: 15px;
    background-color: #FF1400;
    color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}