@override Future<int> readCartCount() async { final prefs = await Hive.openBox<int>(SuperKeys.cartBox); return prefs.get(SuperKeys.cartCount) ?? 0; }