.cart-sidebar {
  position: fixed;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 4;
}
.cart-backdrop {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.qty-cart-item{
  border:2px solid var(--black-color);
  height: 66px;
  width: 138px;
  border-radius: 7px;
  font-size: 20px;
  line-height: 29px;
}

.cart-items .product-title{
  color: var(--black-color);
  font-weight: 700;
  font-size: 25px;
  line-height: 35px;
}
.cart-items .product-price{
  font-size: 25px;
  line-height: 35px;
}
@media screen and (max-width: 768px) {
  .cart-items{
    height: 350px;
    overflow-y: auto;
  }
  .cart-items .product-price{
    font-size: 14px;
    line-height: 20px;
  }
  .cart-items .product-title{
    color: var(--black-color);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
  }
  .cart-sidebar {
    top: 50px;
    right: -300px;
    width: 300px;
  }
  .cart-sidebar.open {
    right: 0;
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  .cart-items{
    height: 400px;
    overflow-y: auto;
  }
  .cart-items .product-price{
    font-size: 25px;
    line-height: 35px;
  }
  .cart-items .product-title{
    color: var(--black-color);
    font-weight: 700;
    font-size: 25px;
    line-height: 35px;
  }
  .cart-sidebar {
    top: 100px;
    right: -320px;
    width: 300px;
  }
  .cart-sidebar.open {
    right: 0;
    width: 826px;
  }
  
  .cart-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }
  
  .cart-item {
    padding: 10px 0;
  }
  
  .cart-footer {
    text-align: center;
  }
}