/* Simple styles for mini-cart */
.mini-cart {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 350px;
  max-height: 70vh;
  overflow-y: auto;
  display: none;
  border-radius: 8px;
  z-index: 2;
}
.mini-cart.open { display: block; }
.mini-cart h5{margin-bottom:10px;}
.mini-cart .text-end{font-weight: 800;}