* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial;
}

.title {
    justify-self: center;
}

.totalPrice{
    justify-self: end;
}


.cart-item {
    width: 75%;
    display: grid;
    grid-template-columns: 60px 80px 1fr 100px 125px 55px;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 3px solid #d0d0d0;
    justify-self: center;
}

.cart-item img {
    width: 80px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid grey;
    padding: 5px 10px;
    border-radius: 6px;
    width: 75px;
    margin-left: -60px;
}

.qty-controls button {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    
}

.remove-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.total {
    font-weight: bold;
    font-size: 22px;
    margin-top: 20px;
}

.invoice-header {
    display: grid;
    grid-template-columns: 1fr 120px 140px 140px;
    padding: 16px 20px;
    background: #f3f3f3;
    border-bottom: 3px solid #d0d0d0;
    width: 75%;
    justify-self: center;
}

.invoice-header .col {
    display: flex;   
    align-items: center;
    height: 100%;
    font-size: 15px;
    font-weight: 600;
    line-height: 1; 
    margin: 0;             
}

.invoice-header .qty,
.invoice-header .price,
.invoice-header .total {
    justify-content: flex-end;
}

.cart-item .itmname {
    align-self: flex-start;
    font-weight: 600;
}

#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 999;
    transition: 1s ease;
}

#mainHeader.scrolled {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 2px solid red;
    height: 70px;
    transition: 1s;
}

.maindiv1 {
    width: 50%;
    display: flex;
    justify-content: center;
}

.maindiv2 {
    width: 50%;
    display: flex;
    justify-content: center;
    gap: 75px;
    color: white;
}

.tomatoimg {
    width: 100%;
    height: 300px;
    background: url(https://restaurant.stepprojects.ge/images/inner_banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: inherit;  
}

.redline {
    background-color: red;
    width: 100%;
    height: 50px;
}

