/* Mini Cart Slider */
.mini-cart-slider {
  position: fixed;
  top: 0;
  right: -400px;
  max-width: 400px;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
}

.mini-cart-slider.open {
  right: 0;
}

.mini-cart-content {
  padding: 20px;
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close-mini-cart {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 35px;
  color: red;
  cursor: pointer;
}

.mini-cart-body {
  max-height: 80vh;
  /* overflow-y: auto; */
}

/* Mini Cart Trigger Button */
.mini-cart-trigger {
  position: relative;
  padding: 5px;
  border: none;
  cursor: pointer;
}
.mini-cart-trigger::before {
  content: "";
  width: 28px;
  height: 23px;
  display: inline-block;
  background: url(../../../../woocommerce/assets/img/icon-cart.svg);
  background-repeat: no-repeat;
  margin-top: 8px;
}
