.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: white;
    border-left: 1px solid #ddd;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s;
}
.cart-drawer.open {
    right: 0;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.cart-item img {
    width: 50px;
    height: 50px;
}
.cart-footer {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
.close-btn {
    cursor: pointer;
    color: red;
    font-weight: bold;
    height: 30px;
    width: 30px;
}