body {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    user-select: none;
}

.page {
    display: flex;
    justify-content: center;
    align-self: center;
}

.frontpage {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    height: fit-content;
    width: fit-content;
}

.favourite-product-list {
    display: flex;
    flex-direction: column;
    row-gap: 2vh;
}

.favourite-product-box {
    display: flex;
    flex-direction: row;
    background-color: #f1f1f1;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 25px 5px 25px 25px;
    height: 15vh;
}

.favourite-product-box-middle {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 65%;
    margin: 0 1vw 0 1vw;
}

.top-box {
    height: 30%;
    text-align: left;
}

.middle-box {
    display: flex;
    flex-direction: row;
    column-gap: 1vw;
    height: 40%;
}

.bottom-box {
    display: flex;
    flex-direction: row;
    height: 30%;
    justify-content: center;
    align-items: center;
    
}

.product-card-image {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    height: 70%;
    width: 10vw;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card-size {
    display: flex;
    width: 70%;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
}

.product-card-price {
    display: flex;
    width: 30%;
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
}

.product-card-color {
    display: flex;
    width: 33%;
    justify-content: center;
}

.product-card-description {
    display: flex;
    font-size: 16px;
}

.shopping-bag-image {
    object-fit: scale-down;
    height: 20;
    width: 4.5vh;
}

.bin-image {
    object-fit: scale-down;
    height: 20;
    width: 6.5vh;
    margin-top: 0.8vh;
}

.favourites-shopping-bag {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 3vw;
    border: none;
    border-radius: 0 20px 20px 0;
    margin: 0 0.5vw 0 0;
    &:hover {
       background-color: #bbbbbb; 
    }
}

.favourites-bin {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 3vw;
    border: none;
    border-radius: 0 20px 20px 0;
    margin: 0 0.5vw 0 0;
    &:hover {
       background-color: #bbbbbb; 
    }
}

.product-card-title {
    font-size: 20px;
    font-weight: 500;
}

.favourite-product-box-right {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #bbbbbb;
    height: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 2vh;
}