@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap');

.main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 760px;
    margin: 0 auto;
}

.main::before {
    content: "";
    display: block;
    position: fixed;
    width: 300%;
    height: 100%;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    transform: translateX(-50%) skewY(-8deg);
    background-color: #F6C90E;
    z-index: -1;
}

.our-product {
    background-color: #fff;
    box-sizing: border-box;
    width: 360px;
    height: 600px;
    border-radius: 30px;
    overflow: auto;
    padding: 0 28px;
    position: relative;
    margin-bottom: 20px;
    list-style: none;
}

.our-product::-webkit-scrollbar {
    width: 0 !important;
    display: none;
}

.our-product::before {
    content: "";
    display: block;
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: #F6C90E;
    top: -20%;
    left: -50%;
    z-index: 0;
}

.our-product span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.our-product img {
    width: 50px;
    position: relative;
    margin-top: 20px;
}

.our-product h2 {
    color: #303841;
    font-family: 'Rubik', sans-serif;
    position: relative;
}

#item img {
    background-color: grey;
    width: 300px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#item h2 {
    color: #303841;
    font-family: 'Rubik', sans-serif;
}

#item h3 {
    display: block;
    color: #303841;
    font-family: 'Rubik', sans-serif;
}

#item button {
    border: none;
    cursor: pointer;
    background-color: #F6C90E;
    font-weight: 700;
    font-size: 14px;
    width: auto;
    height: 46px;
    min-width: 46px;
    border-radius: 100px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Rubik', sans-serif;
}

#item p {
    font-family: 'Rubik', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cart {
    background-color: #fff;
    box-sizing: border-box;
    width: 360px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    padding: 0 28px;
    position: relative;
    margin-bottom: 20px;
}
.cart::-webkit-scrollbar {
    width: 0 !important;
    display: none;
}

/* Cart */
.cart {
    font-family: 'Rubik', sans-serif;
    background-color: #fff;
    box-sizing: border-box;
    width: 360px;
    height: 600px;
    border-radius: 30px;
    overflow: scroll;
    padding: 0 28px;
    position: relative;
    margin-bottom: 20px;
    list-style: none;
}

.cart::before {
    content: "";
    display: block;
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: #F6C90E;
    top: -20%;
    left: -50%;
    z-index: 0;
}

.cart img {
    width: 50px;
    position: relative;
    margin-top: 20px;
}

.cart-item img {
    width: 120px;
}

.cart h2 {
    color: #303841;
    font-family: 'Rubik', sans-serif;
    position: relative;
}

.cart-item {
    display: flex;
    padding: 10px 0;
    width: 100%;
}

#minus {
    border: none;
    width: 28px;
    height: 28px;
    background-image: url(/app/assets/minus.png);
    background-color:#FFFFFF ;
    background-size: 16px;
    background-repeat: no-repeat;
}

.remove {
    border: none;
    width: 28px;
    height: 28px;
    background-image: url(/app/assets/trash.png);
    background-color:#FFFFFF ;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-right: 10px;
    margin-left: 40px;
}

#plus {
    border: none;
    width: 28px;
    height: 28px;
    background-image: url(/app/assets/plus.png);
    background-color:#FFFFFF ;
    background-size: 16px;
    background-repeat: no-repeat;
    margin-left: 10px;
}

.cart-item-info {
    font-family: 'Rubik', sans-serif;
}

.cart-item-info div {
    display: flex;
    margin-top: 6px;
}
.cart-item-info h3{
    font-family: 'Rubik', sans-serif;
    color: #777777;
    font-size: 14px;
    margin-top: 20px;
}
.cart-item-image img {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    background-color: #eee;
    margin-right: 34px;
}

.cart-container {
    display: flex;
    justify-content: space-between;
}