
/**
* ! changing default styles of the browser
**/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    font-family: sans-serif;

}

i
{
    cursor: pointer;
}

/**
* ! navbar starts here
**/

a{
    text-decoration: none;
    color: #fff;
}

.navbar
{
    background-color:#212529;
    color: #fff;
    padding: 25px 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;

}

.cart
{
    background-color:#fff;
    padding: 5px;
    font-size: 30px;
    border-radius: 4px;
    color: #212529;
    position: relative;
}

.cartAmount
{
    background-color:red;
    color: #fff;
    font-size: 16px;
    border-radius: 3px;
    position: absolute;
    top: -15px;
    right:-10px;
    padding: 3px;
}


/**
* ! navbar ends here
**/


/**
* ! shop starts here
**/

.shop
{
    display: grid;
    grid-template-columns:repeat(4,223px);
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;


}

.item
{
    border: 3px solid #212529;
    border-radius: 4px;
}

.item img
{
    width:100%;
    border-radius: 2px 2px 0 0;
}
.details
{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-quantity
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-between;
}

.buttons
{
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-size: 16px;
}
.bi-dash-lg
{
    color: red;
}

.bi-plus-lg
{
    color: green;
}



/**
* ! media starts here
**/

@media (max-width:1000px)
{

    .shop
    {
        grid-template-columns: repeat(2,223px);

    }


}


@media (max-width:500px)
{

    .shop
    {
        grid-template-columns: repeat(1,223px);

    }


}


/**
* ! cart starts here
**/


.text-center
{
    text-align: center;
    margin-bottom: 20px;
}



.HomeBtn,.removeAll,.checkout
{
    background-color: #212529;
    color: #fff;
    border: none;
    padding:6px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}

.removeAll
{
    background-color: red;
}
.checkout
{
    background-color: green;
}

.bi-x-lg
{
    color: red;
    font-weight: bold;
}

.shopping-cart
{
    display: grid;
    grid-template-columns:repeat(1,320px);
    justify-content: center;
    gap: 15px;

}



/**
* ! cart items  starts here
**/

.cart-item
{
    border: 2px solid #212529;
    border-radius: 5px;
    display: flex;
}


.title-price-x
{
    display: flex;
    width: 195px;
    /* border: 2px solid red; */
    align-items: center;
    justify-content: space-between;
}

.title-price
{
    display: flex;
    align-items: center;
    gap: 10px;

}
.cart-item-price
{
    background-color: #212529;
    color: white;
    border-radius: 4px;
    padding: 3px 6px;
}



















