/* Hide product categories and actions ONLY inside the store area on mobile */
@media (max-width: 768px) {
  #order-standard_cart .categories-collapsed,
  #order-standard_cart .categories,
  #order-standard_cart .categories-container,
  #order-standard_cart .product-category-list {
    display: none !important;
  }

  /* Hide store-specific action buttons only */
  #order-standard_cart .actions {
    display: none !important;
  }

  /* Optional: clean up spacing */
  #order-standard_cart .product-list {
    margin-top: 10px !important;
  }
}

/* Hide product details panel */
.panel.card.panel-default {
  display: none !important;
}

