main {
    height: 100vh;
    position: relative;
    width: 100%;
}


.cart {
    height: 100%;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}

.cart .row {
    display: flex;
    justify-content: space-around;
}

.cart .row .flex-col:nth-of-type(1) {
width: 50%;
}

.cart .row .thumbnail {
position: relative;
    width: 100%; /* Adjust to your desired width */
    height: 100%; /* Set the height to 100% to match the left side container */
    overflow: hidden;
border-top-left-radius: var(--border-radius);
border-bottom-left-radius: var(--border-radius);
}




.cart .row .flex-col:nth-of-type(2) {
    padding: 30px;
width: 50%;
background-color: var(--color-light);
border-top-right-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 1.7rem;

}

.cart .price {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart .price h2 {
color: var(--Dark-cyan);
}

.cart .price span {
    font-family: "Monst", serif;
opacity: .55;
text-decoration: line-through;
font-size: 1rem;
}





@media screen and (max-width: 720px){
    main {
    height: 100%;
    position: relative;
    width: 100%;
}
    .cart .row .flex-col:nth-of-type(1) {
width: 100%;
}
 .cart .row .flex-col:nth-of-type(2) {
width: 100%;
border-radius: 0;
border-bottom-left-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
gap: 0.9rem;
}

.cart .row .thumbnail {
position: relative;
    width: 100%; /* Adjust to your desired width */
    overflow: hidden;
border-top-left-radius: var(--border-radius);
border-top-right-radius: var(--border-radius);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}

.cart .row .thumbnail::before {
content: "";
display: block;
padding-top: 70%;
}
}