header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.icon-link {
    color: #333;
    font-size: 34px;
    text-decoration: none;
    
}


.icon-link2 {
    color: #333;
    font-size: 34px;
    text-decoration: none;
    
}


.icon-link2 {
    margin-right: 1370px; /* No margin between icons */
}



.icon-link:hover {
    color: #000;
}

.checkoutLayout{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 20px;
}

.checkoutLayout .right{
    background-color: #5358B3;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

.checkoutLayout .right .form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-bottom: 1px solid #7a7fe2;
    padding-bottom: 20px;
}

.checkoutLayout .form h1,
.checkoutLayout .form .group:nth-child(-n+3){
    grid-column-start: 1;
    grid-column-end: 3;
}

.checkoutLayout .form input, 
.checkoutLayout .form select {
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 20px;
    margin-top: 10px;
    border: none;
    background-color: #6a6fc9;
    color: #fff;
}

.checkoutLayout .right .return .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.checkoutLayout .right .return .row div:nth-child(2){
    font-weight: bold;
    font-size: x-large;
}

.buttonCheckout{
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 20px;
    background-color: #49D8B9;
    margin-top: 20px;
    font-weight: bold;
    color: #fff;
}

.returnCart h1{
    border-top: 1px solid #eee;  
    padding: 20px 0;
}

.returnCart .list .item img{
    height: 80px;
}

.returnCart .list .item{
    display: grid;
    grid-template-columns: 80px 1fr 50px 80px;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 10px;
    box-shadow: 0 10px 20px #5555;
    border-radius: 20px;
}

.returnCart .list .item .name,
.returnCart .list .item .returnPrice{
    font-size: large;
    font-weight: bold;
}


.returnCart {
    margin-top: -25px; /* Adjust this value to move it upwards */
    padding: 0px; /* Optional: Adjust padding as needed */
}

.returnCart h1 {
    border-top: 1px solid #eee;  
    padding: 20px 0;
    margin-bottom: 20px; /* Add margin below the heading */
}


.icon-link, .icon-link2 {
    margin-right: 20px; /* Adjust spacing between icons as needed */
    font-size: 35px; /* Adjust icon size as needed */
    color: #333; /* Adjust icon color as needed */
    text-decoration: none; /* Remove underline from links */
}

.logo {
    display: flex;
    align-items: center;
    margin-left: auto; /* Pushes the logo to the rightmost side */
}

.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Adjust spacing between image and text as needed */
}

.logo span {
    font-size: 20px; /* Adjust text size as needed */
    color: #333; /* Adjust text color as needed */
}
