.sidebar-cart {
  background: var(--body-background);
  position: fixed;
  display: block;
  max-width: 400px;
  height: -webkit-fill-available;
  z-index: 100;
  top: 96px;
  right: -100%;
  box-shadow: -6px 0px 10px 5px rgb(0 0 0 / 35%);
  transition: right 0.5s ease-in-out;
  overflow-y: auto;
}

.show-sidebar-cart {
  right: 0;
  visibility: visible;
}

.sidebar-cart-heading {
  background-color: var(--primary-color);
  padding: 1px 20px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.cart-product-quantity {
  width: 90px;
  border: #ccc 1px solid;
  display: flex;
  max-height: 40px;
}

.cart-increment-decrement {
  padding: 5px 0px;
  background: #e2e2e2;
  width: 30px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-input-quantity {
  border: none;
  width: 30px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .sidebar-cart {
    display: none;
  }
}
