/*
 * Header mini cart layout fix
 * - Keeps total/actions at the bottom of the panel.
 * - Makes only the product list scrollable.
 * - Scoped to storecart theme mini-cart dropdown.
 */

.storecart-theme .cart-menu-one {
  height: calc(100vh - 44px);
  max-height: calc(100vh - 44px);
}

.storecart-theme .cart-menu-one.cart-visible {
  position: fixed;
  right: 0;
  bottom: 0;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  z-index: 10000;
}

.storecart-theme .cart-menu-one .cart-products {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  margin-bottom: 0;
}

.storecart-theme .cart-menu-one .cart-total,
.storecart-theme .cart-menu-one .cart-action {
  flex-shrink: 0;
}

.storecart-theme .cart-menu-one .cart-total {
  margin-bottom: 0;
}

.storecart-theme .cart-menu-one .cart-action {
  margin-top: auto;
}

@media (max-width: 767px) {
  .storecart-theme .cart-menu-one {
    width: 100vw;
    max-width: 100vw;
    height: calc(100vh - 44px);
    max-height: calc(100vh - 44px);
    left: 0;
    right: 0;
  }

  .storecart-theme .cart-menu-one.cart-visible {
    left: 0;
    right: 0;
    bottom: 0;
  }
}
